|
diff --git a/i3config b/i3config
|
| ... |
| 181 |
bindsym $mod+r mode "resize" |
181 |
bindsym $mod+r mode "resize" |
| 182 |
|
182 |
|
| 183 |
# class border bground text indicator child_border |
183 |
# class border bground text indicator child_border |
| 184 |
client.focused #222222 #222222 #FFFFFF #222222 #222222 |
184 |
client.focused #333333 #333333 #FFFFFF #333333 #333333 |
| 185 |
client.focused_inactive #111111 #111111 #FFFFFF #111111 #111111 |
185 |
client.focused_inactive #111111 #111111 #FFFFFF #111111 #111111 |
| 186 |
client.unfocused #111111 #111111 #FFFFFF #111111 #111111 |
186 |
client.unfocused #111111 #111111 #FFFFFF #111111 #111111 |
| 187 |
client.urgent #900000 #900000 #FFFFFF #900000 #900000 |
187 |
client.urgent #900000 #900000 #FFFFFF #900000 #900000 |
| ... |
| 204 |
urgent_workspace #900000 #900000 #FFFFFF |
204 |
urgent_workspace #900000 #900000 #FFFFFF |
| 205 |
binding_mode #900000 #900000 #FFFFFF |
205 |
binding_mode #900000 #900000 #FFFFFF |
| 206 |
} |
206 |
} |
| 207 |
# status_command i3status |
207 |
status_command i3status |
| 208 |
status_command i3blocks |
|
|
| 209 |
} |
208 |
} |
| 210 |
|
209 |
|
| 211 |
font pango:BerkeleyMono Bold 9 |
210 |
font pango:BerkeleyMono Bold 9 |
| ... |
| 214 |
exec --no-startup-id feh --bg-fill black ~/.black.png |
213 |
exec --no-startup-id feh --bg-fill black ~/.black.png |
| 215 |
exec --no-startup-id picom --backend glx --vsync -b |
214 |
exec --no-startup-id picom --backend glx --vsync -b |
| 216 |
bindsym --release $mod+z exec scrot -s - | xclip -selection clipboard -target image/png |
215 |
bindsym --release $mod+z exec scrot -s - | xclip -selection clipboard -target image/png |
| 217 |
bindsym --release $mod+p exec --no-startup-id bash -c 'source ~/.bashrc && togglesink' |
216 |
bindsym --release $mod+p exec --no-startup-id bash -c 'source ~/.shenanigans.sh && togglesink' |
| 218 |
|
217 |
|
|
diff --git a/shenanigans.sh b/shenanigans.sh
|
| ... |
| 32 |
alias less='less -R' |
32 |
alias less='less -R' |
| 33 |
alias tmux='tmux -u' |
33 |
alias tmux='tmux -u' |
| 34 |
alias vi='vim' |
34 |
alias vi='vim' |
| 35 |
alias newsraft='newsraft -f ~/.dotfiles/rssfeeds' |
|
|
| 36 |
alias server='python3 -m http.server 6969' |
35 |
alias server='python3 -m http.server 6969' |
| 37 |
|
36 |
|
| 38 |
# Custom folder jump commands. |
37 |
# Custom folder jump commands. |
| ... |
| 194 |
fi |
193 |
fi |
| 195 |
|
194 |
|
| 196 |
pactl set-default-sink "${sinks[$next_index]}" |
195 |
pactl set-default-sink "${sinks[$next_index]}" |
| 197 |
notify-send "Switched to sink: ${sinks[$next_index]}" |
|
|
| 198 |
} |
196 |
} |
| 199 |
|
197 |
|