No transparent terminal anymore, added functions to xf86Audioplay/-stop and added some ledger reports for myself

clean_emacs
Tuan-Dat Tran 2018-05-04 23:36:09 +02:00
parent d37e63a135
commit dfea422cfc
No known key found for this signature in database
GPG Key ID: 0DA1B0B23302CA72
3 changed files with 7 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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