diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-05-02 22:24:04 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-05-02 22:24:04 +0200 |
commit | 78630b765f8067fcdc25ac09640c8f919730e4b6 (patch) | |
tree | 0a1d3cc4a077d5d7998b2db8d939eaacc96ecd1a /.i3 | |
parent | 91091da85562be6fe7d0e973fcd23fb69accea3c (diff) | |
download | dotfiles-78630b765f8067fcdc25ac09640c8f919730e4b6.tar.gz |
Fixed brightness controls
Diffstat (limited to '.i3')
-rw-r--r-- | .i3/config | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -30,7 +30,7 @@ font pango:monospace 9 floating_modifier $mod # start a terminal -bindsym $mod+Return exec konsole #"xterm -fa 'Monospace' -fs 12 -bg black -fg white" +bindsym $mod+Return exec "xterm -fa 'Monospace' -fs 12 -bg black -fg white" #start ranger bindsym $mod+o exec "xterm -fa 'Monospace' -fs 11 -bg black -fg white ranger" @@ -205,8 +205,12 @@ bindsym XF86AudioLowerVolume exec --no-startup-id pactl -- set-sink-volume 0 -5% bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound # Sreen brightness controls -bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 # increase screen brightness -bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 # decrease screen brightness +# Use acpilight with arch!! +# https://gitlab.com/wavexx/acpilight +bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 -fps 30 # increase screen brightness +bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 -fps 30 # decrease screen brightness + +exec "setxkbmap -layout de" #start autostart.sh exec --no-startup-id ~/autostart.sh |