diff options
Diffstat (limited to '.i3/config')
-rw-r--r-- | .i3/config | 32 |
1 files changed, 27 insertions, 5 deletions
@@ -35,6 +35,9 @@ bindsym $mod+Return exec "xterm" #start ranger bindsym $mod+o exec "xterm -e ranger" +#start browser +bindsym $mod+b exec "brave" + # kill focused window bindsym $mod+Shift+q kill @@ -301,6 +304,7 @@ set $yw #f1fa7c set $gn #50fa7b set $rd #ff5555 set $id #ff79c6 +set $opaque #000000ff set $black #000000 set $grey #151515 @@ -319,20 +323,38 @@ gaps inner 15 exec --no-startup-id nm-applet - # Start i3bar to display a workspace bar (plus the system information i3status # finds out, if available) -#bar { - # status_command i3status -#} +bar { + i3bar_command i3bar -t + status_command python /usr/share/powerline/bindings/i3/powerline-i3.py + font pango:DejaVu Sans Mono for Powerline 12 + + colors { + background #000000AA + } +} -exec_always --no-startup-id ~/.i3/start_polybar.sh jonny +#exec_always --no-startup-id ~/.i3/start_polybar.sh jonny # Pulse Audio controls bindsym XF86AudioRaiseVolume exec --no-startup-id pactl -- set-sink-volume 0 +5% #increase sound volume bindsym XF86AudioLowerVolume exec --no-startup-id pactl -- set-sink-volume 0 -5% #decrease sound volume bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound +# play-pause +bindsym XF86AudioPlay exec --no-startup-id playerctl play-pause + +# stop +bindsym XF86AudioStop exec --no-startup-id playerctl stop + +# prev +bindsym XF86AudioPrev exec --no-startup-id playerctl previous + +# next +bindsym XF86AudioNext exec --no-startup-id playerctl next +# + # Sreen brightness controls # Use acpilight with arch!! # https://gitlab.com/wavexx/acpilight |