start dunst & add audio hotkey
authorAndrew Lorimer <andrew@lorimer.id.au>
Wed, 14 Jul 2021 13:20:20 +0000 (23:20 +1000)
committerAndrew Lorimer <andrew@lorimer.id.au>
Wed, 14 Jul 2021 13:20:20 +0000 (23:20 +1000)
i3/.i3/config
vim/.vimrc
index cbb40c8967cc8bbc1ca77b02a2c8fba1e4979bcd..c064019f82dfa717105f3ff881fc45ab98838633 100644 (file)
@@ -1,5 +1,5 @@
 # colours
-set $bg-color             #268bd2
+set $bg-color             #269bd2
 set $inactive-bg-color    #2f343f
 #set $inactive-bg-color             #268bd2
 set $text-color           #2f343f
@@ -207,6 +207,7 @@ bindsym $mod+bracketleft exec playerctl previous
 bindsym $mod+bracketright exec playerctl next
 bindsym XF86AudioNext exec playerctl next
 bindsym XF86AudioPrev exec playerctl previous
+bindsym $mod+o  exec /home/andrew/scripts/pactl-switch.sh
 
 # float dialogs
 for_window [window_type=dialog] floating enable
@@ -245,6 +246,7 @@ gaps outer 0
 exec_always --no-startup-id xrdb /home/andrew/.Xdefaults
 #exec_always --no-startup-id xrandr --output DVI-D-0 --off --output HDMI-0 --mode 2560x1440 --pos 0x181 --rotate normal --output DP-0 --off --output DP-1 --off --output HDMI-1 --mode 1920x1080 --pos 2560x0 --rotate right
 #exec_always --no-startup-id xrandr --output DVI-D-1 --off --output HDMI-1 --primary --mode 2560x1440 --pos 0x240 --rotate normal --output DP-1 --off --output HDMI-2 --mode 1920x1080 --pos 2560x0 --rotate right
+exec_always --no-startup-id dunst
 
 exec_always --no-startup-id feh --bg-scale --no-xinerama /home/andrew/.wallpaper.jpg
 exec_always --no-startup-id picom -b --config /home/andrew/.picom.conf
index 5857f939c1905b2a038c82e7f38ca8d0d6c20856..460bbb7ec64acd0f9046a253864077d3c4f80c5d 100644 (file)
@@ -17,12 +17,14 @@ filetype off                  " required
 set rtp+=~/.vim/bundle/Vundle.vim
 call vundle#begin()
 
-Plugin 'VundleVim/Vundle.vim' " let Vundle manage Vundle, required
+" let Vundle manage Vundle, required
+Plugin 'VundleVim/Vundle.vim'
 
 "Plugin 'vim-pandoc/vim-pandoc-syntax'
 Plugin 'godlygeek/tabular'
 "Plugin 'SirVer/ultisnips'
 "Plugin 'honza/vim-snippets'
+Plugin 'preservim/tagbar'
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
@@ -40,6 +42,8 @@ set rtp^=$HOME/.vim
 set vi=
 filetype plugin on
 
+" Tagbar configuration
+nmap <F8> :TagbarToggle<CR>
 
 " markdown group for vim-pandoc-syntax:
 augroup pandoc_syntax