diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2021-08-06 13:25:57 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2021-08-06 13:25:57 +0200 |
commit | 3208038a9b1786d35c4101ec641bfebcb99a77e4 (patch) | |
tree | eb6dc1ad9c37eef7dfc3f8dc3987fc8b8793e6d0 /.config/i3/config | |
parent | c1b97d0da3fc928698a7bd2d2770a1875b23fa25 (diff) | |
parent | 39be75d92fa7f31b8697ecba1f8711f4fcb59cfc (diff) |
Media keys work, changed i3 border thickness, polybar works, corrected i3 resize keybinds
Diffstat (limited to '.config/i3/config')
-rw-r--r-- | .config/i3/config | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/.config/i3/config b/.config/i3/config index d76fcdf..260fc91 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -18,14 +18,16 @@ bindsym $mod+f fullscreen toggle # Rofi bindsym $mod+d exec rofi -show drun -show-icons -theme rofi -bindsym $mod+Shift+space exec rofi -show run -show-icons -theme rofi -bindsym $mod+Ctrl+space exec rofi -show window -show-icons -theme rofi +bindsym $mod+Tab exec rofi -show window -show-icons -theme rofi bindsym Mod1+b exec rofi -modi "clipboard:greenclip print" -show clipboard -run-command '{cmd}' -show-icons -theme rofi -# PulseAudio -bindsym XF86AudioRaiseVolume pactl set-sink-volume @DEFAULT_SINK@ +10% -bindsym XF86AudioLowerVolume pactl set-sink-volume @DEFAULT_SINK@ -10% -bindsym XF86AudioMute pactl set-sink-mute @DEFAULT_SINK@ toggle +# Media keys +bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% +bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% +bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle +bindsym XF86AudioPlay exec playerctl play-pause +bindsym XF86AudioNext exec playerctl next +bindsym XF86AudioPrev exec playerctl previous # Change focus bindsym $mod+h focus left @@ -87,13 +89,13 @@ bindsym $mod+Shift+0 move container to workspace number $ws10 mode "Resize Mode" { bindsym h resize shrink width 6 px or 6 ppt - bindsym j resize grow height 6 px or 6 ppt - bindsym k resize shrink height 6 px or 6 ppt + bindsym j resize shrink height 6 px or 6 ppt + bindsym k resize grow height 6 px or 6 ppt bindsym l resize grow width 6 px or 6 ppt bindsym Shift+h resize shrink width 12 px or 12 ppt - bindsym Shift+j resize grow height 12 px or 12 ppt - bindsym Shift+k resize shrink height 12 px or 12 ppt + bindsym Shift+j resize shrink height 12 px or 12 ppt + bindsym Shift+k resize grow height 12 px or 12 ppt bindsym Shift+l resize grow width 12 px or 12 ppt bindsym minus gaps inner current minus 6 @@ -110,12 +112,12 @@ bindsym $mod+r mode "Resize Mode" ##### Appearance -font pango:monospace 6 +font pango:Source Code Pro Medium 11 gaps inner 5 gaps outer 0 -default_border pixel 1 -default_floating_border pixel 1 +default_border pixel 2 +default_floating_border pixel 2 smart_gaps on hide_edge_borders smart |