diff --git a/config/.config/i3/config b/config/.config/i3/config index a75e2db..a200ee6 100644 --- a/config/.config/i3/config +++ b/config/.config/i3/config @@ -149,6 +149,8 @@ bindsym XF86MonBrightnessDown exec "xbacklight -dec 10; notify-send 'brightness bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle +bindsym XF86AudioPlay exec "if [ `cat /home/$USER/.scripts/playstate` = 0 ]; then echo '1'>/home/$USER/.scripts/playstate;else echo '0'>/home/$USER/.scripts/playstate;fi" +bindsym XF86AudioStop exec "playerctl stop && echo '0'>/home/$USER/.scripts/playstate" # Application Shortcuts bindsym $mod+b exec env GTK_THEME=Materia:light waterfox diff --git a/config/.config/termite/config b/config/.config/termite/config index 95552c2..23a8db1 100644 --- a/config/.config/termite/config +++ b/config/.config/termite/config @@ -45,7 +45,7 @@ scrollbar = off foreground = #eceff1 foreground_bold = #eceff1 cursor = #eceff1 -background = rgba(38, 50, 56, 0.7) +background = rgba(38, 50, 56, 1.0) # black color0 = #263238 diff --git a/emacs/.emacs.d/ledger.org b/emacs/.emacs.d/ledger.org index 5c5d7e6..bc80c29 100644 --- a/emacs/.emacs.d/ledger.org +++ b/emacs/.emacs.d/ledger.org @@ -2,12 +2,13 @@ (custom-set-variables '(ledger-reports (quote - (("schulden" "ledger -f /home/tuan/Nextcloud/orgs/Budget/MyBudget.ledger bal ^Schulden") - ("acclist" "ledger -f /home/tuan/Nextcloud/orgs/Budget/MyBudget.ledger accounts") + (("schulden" "%(binary) -f %(ledger-file) bal ^Schulden") + ("acclist" "%(binary) -f %(ledger-file) accounts") ("spendable" "%(binary) -f %(ledger-file) reg Girokonto$ Brieftasche$") ("monthly" "%(binary) -f %(ledger-file) -M --period-sort \"amount\" reg ^Ausgaben") ("bal" "%(binary) -f %(ledger-file) bal") ("reg" "%(binary) -f %(ledger-file) reg") ("payee" "%(binary) -f %(ledger-file) reg @%(payee)") - ("account" "%(binary) -f %(ledger-file) reg %(account)"))))) + ("acc" "%(binary) -f %(ledger-file) reg %(account)")))) +) #+END_SRC