diff --git a/i3/.config/i3/config b/i3/.config/i3/config index ecaacdd..b425aff 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -9,12 +9,10 @@ set $right l set $term alacritty # Window borders -new_window pixel 0 -gaps inner 10 -gaps outer 5 +new_window pixel exec --no-startup-id xset s off -dpms -exec --no-startup-id picom --config ~/.config/picom.conf +exec --no-startup-id picom --backend glx --vsync exec --no-startup-id nm-applet # Key bindings @@ -126,3 +124,8 @@ bindsym --release XF86MonBrightnessUp exec --no-startup-id brightnessctl set 5%+ # Screenshot (use scrot instead of grim) bindsym Print exec scrot ~/Pictures/screenshot-%Y-%m-%d-%H%M%S.png + +# Status bar (use i3bar + i3status) +bar { + status_command i3status +} diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf deleted file mode 100644 index ea98509..0000000 --- a/picom/.config/picom.conf +++ /dev/null @@ -1,11 +0,0 @@ -backend = "glx"; -vsync = true; - -corner-radius = 20.0; -rounded-corners-exclude = [ -]; - -inactive-opacity = 0.8; -opacity-rule = [ - "100:class_g = 'Rofi'", -];