diff --git a/.gitignore b/.gitignore index c76f15e..93aa0b1 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,5 @@ user-dirs.dirs user-dirs.locale vlc/ xarchiver/ -xconf/ xfce4/ xm1/ diff --git a/herbstluftwm/autostart b/herbstluftwm/autostart index e053d2d..3ae6b6a 100755 --- a/herbstluftwm/autostart +++ b/herbstluftwm/autostart @@ -108,6 +108,14 @@ hc keybind $Mod-Shift-Tab cycle_all -1 hc keybind $Mod-c cycle #hc keybind $Mod-i jumpto urgent +#pulseaudio +hc keybind XF86AudioRaiseVolume spawn /bin/sh -c 'pactl set-sink-volume @DEFAULT_SINK@ +8%' #increase sound volume +hc keybind $Mod-u spawn /bin/sh -c 'pactl set-sink-volume @DEFAULT_SINK@ +8%' +hc keybind XF86AudioLowerVolume spawn /bin/sh -c 'pactl set-sink-volume @DEFAULT_SINK@ 70%' #decrease sound volume +hc keybind $Mod-Shift-u spawn /bin/sh -c 'pactl set-sink-volume @DEFAULT_SINK@ 70%' +hc keybind XF86AudioMute spawn /bin/sh -c 'pactl set-sink-mute @DEFAULT_SINK@ toggle' #toggle mute +hc keybind $Mod-m spawn /bin/sh -c 'pactl set-sink-mute @DEFAULT_SINK@ toggle' + # theme hc attr theme.tiling.reset 1 hc attr theme.floating.reset 1 diff --git a/vim/rc b/vim/rc index 5c198a3..8b593ad 100644 --- a/vim/rc +++ b/vim/rc @@ -39,7 +39,7 @@ nnoremap Ctrl-l :nohlsearch "movement "move by visual line -nnoremap w g:call HL_branch():@/ +nnoremap w g nnoremap s g nnoremap a nnoremap d @@ -127,6 +127,9 @@ endif inoremap :execute HL_branch() nnoremap :execute HL_branch() +nnoremap w g:execute HL_branch() +nnoremap s g:execute HL_branch() + function HL_branch() let line=getline('.') "backslash muss escaped werden um + zu escapen in func diff --git a/vim/syntax/.dia.vim.swp b/vim/syntax/.dia.vim.swp deleted file mode 100644 index e8042ab..0000000 Binary files a/vim/syntax/.dia.vim.swp and /dev/null differ diff --git a/xconf/Xresources b/xconf/Xresources new file mode 100755 index 0000000..f25695e --- /dev/null +++ b/xconf/Xresources @@ -0,0 +1,3 @@ +Rxvt.*.background: #000000 +Rxvt.*.foreground: #EEEEEE +Rxvt.*.scrollBar: off diff --git a/zshrc b/zshrc index d11af8d..99e48ff 100644 --- a/zshrc +++ b/zshrc @@ -9,6 +9,9 @@ LD_PRELOAD='/home/ik15ydit/.config/libcoloredstderr.so' COLORED_STDERR_FDS=2, export LD_PRELOAD COLORED_STDERR_FDS +#markingbird +export PYTHONPATH=/local/python3-typing + #seperation string between commands setopt promptsubst PS1=%F{green}$'${(r:$COLUMNS::\u2500:)}'%f$PS1