|
diff --git a/.config/i3/config b/.config/i3/config
|
| ... |
| 2 |
|
2 |
|
| 3 |
font pango:Berkeley Mono Bold 7 |
3 |
font pango:Berkeley Mono Bold 7 |
| 4 |
exec --no-startup-id dex --autostart --environment i3 |
4 |
exec --no-startup-id dex --autostart --environment i3 |
| 5 |
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork |
5 |
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork --color 000000 |
| 6 |
exec --no-startup-id nm-applet |
6 |
exec --no-startup-id nm-applet |
| 7 |
|
7 |
|
| 8 |
# Use pactl to adjust volume in PulseAudio. |
8 |
# Use pactl to adjust volume in PulseAudio. |
| ... |
| 15 |
# My keybinds |
15 |
# My keybinds |
| 16 |
bindsym $mod+bracketright exec --no-startup-id pats -t |
16 |
bindsym $mod+bracketright exec --no-startup-id pats -t |
| 17 |
bindsym $mod+m exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle |
17 |
bindsym $mod+m exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle |
| 18 |
bindsym $mod+l exec --no-startup-id i3lock |
18 |
bindsym $mod+l exec --no-startup-id i3lock --nofork --color 000000 |
| 19 |
bindsym $mod+z exec --no-startup-id xmagnify -s 1000 -z 3 |
19 |
bindsym $mod+z exec --no-startup-id xmagnify -s 1000 -z 3 |
| 20 |
bindsym $mod+p exec --no-startup-id "rofi -show drun -theme ~/.black.rasi" |
20 |
bindsym $mod+p exec --no-startup-id "rofi -show drun -theme ~/.black.rasi" |
| 21 |
bindsym $mod+Escape exec --no-startup-id "maim -s | xclip -selection clipboard -t image/png" |
21 |
bindsym $mod+Escape exec --no-startup-id "maim -s | xclip -selection clipboard -t image/png" |
| ... |
|
diff --git a/.shenanigans.sh b/.shenanigans.sh
|
| 1 |
# Software list: |
1 |
# Software list: |
| 2 |
# vim git tmux maim xclip xsel mc htop entr cifs-utils rsync jq rofi picom |
2 |
# xss-lock xkbset xclip xsel cifs-utils picom |
| 3 |
# st rsync curl hstr tree make gdb nvtop ctags stow newsboat mpv lazygit fd |
3 |
# vim git tmux maim mc htop entr rsync jq rofi stow newsboat |
|
|
4 |
# st rsync curl hstr tree make gdb nvtop ctags mpv lazygit fd |
| 4 |
|
5 |
|
| 5 |
# Only run if the script is being sourced (bashrc). |
6 |
# Only run if the script is being sourced (bashrc). |
| 6 |
if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
7 |
if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then |
| ... |