add

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-10-24 18:05:26 -0400
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-10-24 18:05:26 -0400
Commit e01dea3e01943aab2cf33109aaf6b29f53e601e6 (patch)
-rw-r--r-- i3config 7
-rwxr-xr-x shenanigans.sh 2
-rw-r--r-- symlink.sh 1
3 files changed, 4 insertions, 6 deletions
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
  
diff --git a/symlink.sh b/symlink.sh
...
2
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
2
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
3
ln -s ~/.dotfiles/vimrc ~/.vimrc
3
ln -s ~/.dotfiles/vimrc ~/.vimrc
4
ln -s ~/.dotfiles/i3config ~/.config/i3/config
4
ln -s ~/.dotfiles/i3config ~/.config/i3/config
  
5
ln -s ~/.dotfiles/rssfeeds  ~/.newsboat/urls
5
  
6