From df71902598b2ef1f9363fe428ea7ab6b819b3c07 Mon Sep 17 00:00:00 2001 From: Andrew Lorimer Date: Wed, 14 Jul 2021 23:20:20 +1000 Subject: [PATCH] start dunst & add audio hotkey --- i3/.i3/config | 4 +++- vim/.vimrc | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/i3/.i3/config b/i3/.i3/config index cbb40c8..c064019 100644 --- a/i3/.i3/config +++ b/i3/.i3/config @@ -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 diff --git a/vim/.vimrc b/vim/.vimrc index 5857f93..460bbb7 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -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 :TagbarToggle " markdown group for vim-pandoc-syntax: augroup pandoc_syntax -- 2.49.0