No transparent terminal anymore, added functions to xf86Audioplay/-stop and added some ledger reports for myself
parent
d37e63a135
commit
dfea422cfc
|
@ -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 XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5%
|
||||||
bindsym XF86AudioLowerVolume 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 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
|
# Application Shortcuts
|
||||||
bindsym $mod+b exec env GTK_THEME=Materia:light waterfox
|
bindsym $mod+b exec env GTK_THEME=Materia:light waterfox
|
||||||
|
|
|
@ -45,7 +45,7 @@ scrollbar = off
|
||||||
foreground = #eceff1
|
foreground = #eceff1
|
||||||
foreground_bold = #eceff1
|
foreground_bold = #eceff1
|
||||||
cursor = #eceff1
|
cursor = #eceff1
|
||||||
background = rgba(38, 50, 56, 0.7)
|
background = rgba(38, 50, 56, 1.0)
|
||||||
|
|
||||||
# black
|
# black
|
||||||
color0 = #263238
|
color0 = #263238
|
||||||
|
|
|
@ -2,12 +2,13 @@
|
||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
'(ledger-reports
|
'(ledger-reports
|
||||||
(quote
|
(quote
|
||||||
(("schulden" "ledger -f /home/tuan/Nextcloud/orgs/Budget/MyBudget.ledger bal ^Schulden")
|
(("schulden" "%(binary) -f %(ledger-file) bal ^Schulden")
|
||||||
("acclist" "ledger -f /home/tuan/Nextcloud/orgs/Budget/MyBudget.ledger accounts")
|
("acclist" "%(binary) -f %(ledger-file) accounts")
|
||||||
("spendable" "%(binary) -f %(ledger-file) reg Girokonto$ Brieftasche$")
|
("spendable" "%(binary) -f %(ledger-file) reg Girokonto$ Brieftasche$")
|
||||||
("monthly" "%(binary) -f %(ledger-file) -M --period-sort \"amount\" reg ^Ausgaben")
|
("monthly" "%(binary) -f %(ledger-file) -M --period-sort \"amount\" reg ^Ausgaben")
|
||||||
("bal" "%(binary) -f %(ledger-file) bal")
|
("bal" "%(binary) -f %(ledger-file) bal")
|
||||||
("reg" "%(binary) -f %(ledger-file) reg")
|
("reg" "%(binary) -f %(ledger-file) reg")
|
||||||
("payee" "%(binary) -f %(ledger-file) reg @%(payee)")
|
("payee" "%(binary) -f %(ledger-file) reg @%(payee)")
|
||||||
("account" "%(binary) -f %(ledger-file) reg %(account)")))))
|
("acc" "%(binary) -f %(ledger-file) reg %(account)"))))
|
||||||
|
)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
Loading…
Reference in New Issue