diff --git a/config/packages/i3/config b/config/packages/i3/config index 3820ce4..248bf31 100644 --- a/config/packages/i3/config +++ b/config/packages/i3/config @@ -56,6 +56,7 @@ floating_modifier $mod # Custom keybinds bindsym $mod+s exec --no-startup-id flameshot gui -p ~/Pictures/captures --clipboard bindsym $mod+f exec --no-startup-id firefox +bindsym $mod+u exec --no-startup-id autorandr -c bindsym $mod+Shift+f exec --no-startup-id firefox --private-window bindsym $mod+Shift+z exec --no-startup-id i3lock-fancy -g -t "System Locked" -f Hack-Regular # ===== @@ -216,14 +217,14 @@ bindsym $mod+r mode "resize" # finds out, if available) # Gaps -gaps inner 10 -gaps outer 10 -gaps horizontal 10 -gaps vertical 10 -gaps top 10 -gaps right 10 -gaps bottom 10 -gaps left 10 +gaps inner 5 +gaps outer -5 +gaps horizontal 5 +gaps vertical 5 +gaps top 5 +gaps right 5 +gaps bottom 5 +gaps left 5 default_border pixel 1 client.focused #555555 #555555 #ffffff #2e9ef4 #63C5DA diff --git a/config/packages/polybar/config.ini b/config/packages/polybar/config.ini index eb6f4c5..a1e8c31 100644 --- a/config/packages/polybar/config.ini +++ b/config/packages/polybar/config.ini @@ -38,6 +38,7 @@ foreground = ${colors.foreground} line-size = 3pt border-size = 4pt +border-bottom-size = 0pt border-color = #00000000 padding-left = 0 @@ -53,7 +54,7 @@ font-1 = Font Awesome 6 Free:style=Regular;2 font-2 = Font Awesome 6 Free:style=Solid;2 modules-left = xworkspaces xwindow -modules-right = filesystem pulseaudio-control-output xkeyboard memory cpu battery date +modules-right = filesystem pulseaudio-control-output xkeyboard memory cpu battery tray date cursor-click = pointer cursor-scroll = ns-resize @@ -193,6 +194,12 @@ date-alt = %Y-%m-%d %H:%M:%S label = %date% label-foreground = ${colors.primary} +[module/tray] +type = internal/tray + +format-margin = 8px +tray-spacing = 8px + [settings] screenchange-reload = true pseudo-transparency = true diff --git a/system/vylpes-desktop/configuration.nix b/system/vylpes-desktop/configuration.nix index 07651c6..4b970b3 100644 --- a/system/vylpes-desktop/configuration.nix +++ b/system/vylpes-desktop/configuration.nix @@ -19,4 +19,9 @@ videoDrivers = [ "nvidia" ]; }; }; + + hardware.nvidia = { + modesetting.enable = true; + forceFullCompositionPipeline = true; + }; }