aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-10-24 18:05:26 -0400
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-10-24 18:05:26 -0400
commite01dea3e01943aab2cf33109aaf6b29f53e601e6 (patch)
treef980586ba70306d963ca7f249d1cfde902410be0
parentf250f4f368f87573d860cf8bec17976309dd08b1 (diff)
downloaddotfiles-e01dea3e01943aab2cf33109aaf6b29f53e601e6.tar.gz
add
-rw-r--r--i3config7
-rwxr-xr-xshenanigans.sh2
-rw-r--r--symlink.sh1
3 files changed, 4 insertions, 6 deletions
diff --git a/i3config b/i3config
index 66d2e11..0a96b1c 100644
--- a/i3config
+++ b/i3config
@@ -181,7 +181,7 @@ mode "resize" {
181bindsym $mod+r mode "resize" 181bindsym $mod+r mode "resize"
182 182
183# class border bground text indicator child_border 183# class border bground text indicator child_border
184client.focused #222222 #222222 #FFFFFF #222222 #222222 184client.focused #333333 #333333 #FFFFFF #333333 #333333
185client.focused_inactive #111111 #111111 #FFFFFF #111111 #111111 185client.focused_inactive #111111 #111111 #FFFFFF #111111 #111111
186client.unfocused #111111 #111111 #FFFFFF #111111 #111111 186client.unfocused #111111 #111111 #FFFFFF #111111 #111111
187client.urgent #900000 #900000 #FFFFFF #900000 #900000 187client.urgent #900000 #900000 #FFFFFF #900000 #900000
@@ -204,8 +204,7 @@ bar {
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
211font pango:BerkeleyMono Bold 9 210font pango:BerkeleyMono Bold 9
@@ -214,5 +213,5 @@ hide_edge_borders both
214exec --no-startup-id feh --bg-fill black ~/.black.png 213exec --no-startup-id feh --bg-fill black ~/.black.png
215exec --no-startup-id picom --backend glx --vsync -b 214exec --no-startup-id picom --backend glx --vsync -b
216bindsym --release $mod+z exec scrot -s - | xclip -selection clipboard -target image/png 215bindsym --release $mod+z exec scrot -s - | xclip -selection clipboard -target image/png
217bindsym --release $mod+p exec --no-startup-id bash -c 'source ~/.bashrc && togglesink' 216bindsym --release $mod+p exec --no-startup-id bash -c 'source ~/.shenanigans.sh && togglesink'
218 217
diff --git a/shenanigans.sh b/shenanigans.sh
index 3c1ea3c..c79ac71 100755
--- a/shenanigans.sh
+++ b/shenanigans.sh
@@ -32,7 +32,6 @@ alias grep='grep --color=always'
32alias less='less -R' 32alias less='less -R'
33alias tmux='tmux -u' 33alias tmux='tmux -u'
34alias vi='vim' 34alias vi='vim'
35alias newsraft='newsraft -f ~/.dotfiles/rssfeeds'
36alias server='python3 -m http.server 6969' 35alias server='python3 -m http.server 6969'
37 36
38# Custom folder jump commands. 37# Custom folder jump commands.
@@ -194,6 +193,5 @@ togglesink() {
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
diff --git a/symlink.sh b/symlink.sh
index 12d01fd..a026315 100644
--- a/symlink.sh
+++ b/symlink.sh
@@ -2,4 +2,5 @@ ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
2ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf 2ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
3ln -s ~/.dotfiles/vimrc ~/.vimrc 3ln -s ~/.dotfiles/vimrc ~/.vimrc
4ln -s ~/.dotfiles/i3config ~/.config/i3/config 4ln -s ~/.dotfiles/i3config ~/.config/i3/config
5ln -s ~/.dotfiles/rssfeeds ~/.newsboat/urls
5 6