Compare commits

...

8 commits

Author SHA1 Message Date
Ethan Lane e5f707f706 Configure nvidia 2024-08-17 20:57:14 +01:00
Ethan Lane 24f6d5969e Add autorandr 2024-08-17 18:05:06 +01:00
Ethan Lane 88849ef5ab Swap tray and date position 2024-08-17 18:03:18 +01:00
Ethan Lane 50b2226b74 Fix tray 2024-08-17 18:00:54 +01:00
Ethan Lane f61cbc6510 Reset gaps 2024-08-17 17:58:18 +01:00
Ethan Lane 8388842c09 Update gaps 2024-08-17 17:57:29 +01:00
Ethan Lane ebeb7b3698 Add system tray 2024-08-17 17:55:07 +01:00
Ethan Lane 905c905f1b Update gaps 2024-08-17 17:52:40 +01:00
3 changed files with 22 additions and 9 deletions

View file

@ -56,6 +56,7 @@ floating_modifier $mod
# Custom keybinds # Custom keybinds
bindsym $mod+s exec --no-startup-id flameshot gui -p ~/Pictures/captures --clipboard bindsym $mod+s exec --no-startup-id flameshot gui -p ~/Pictures/captures --clipboard
bindsym $mod+f exec --no-startup-id firefox 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+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 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) # finds out, if available)
# Gaps # Gaps
gaps inner 10 gaps inner 5
gaps outer 10 gaps outer -5
gaps horizontal 10 gaps horizontal 5
gaps vertical 10 gaps vertical 5
gaps top 10 gaps top 5
gaps right 10 gaps right 5
gaps bottom 10 gaps bottom 5
gaps left 10 gaps left 5
default_border pixel 1 default_border pixel 1
client.focused #555555 #555555 #ffffff #2e9ef4 #63C5DA client.focused #555555 #555555 #ffffff #2e9ef4 #63C5DA

View file

@ -38,6 +38,7 @@ foreground = ${colors.foreground}
line-size = 3pt line-size = 3pt
border-size = 4pt border-size = 4pt
border-bottom-size = 0pt
border-color = #00000000 border-color = #00000000
padding-left = 0 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 font-2 = Font Awesome 6 Free:style=Solid;2
modules-left = xworkspaces xwindow 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-click = pointer
cursor-scroll = ns-resize cursor-scroll = ns-resize
@ -193,6 +194,12 @@ date-alt = %Y-%m-%d %H:%M:%S
label = %date% label = %date%
label-foreground = ${colors.primary} label-foreground = ${colors.primary}
[module/tray]
type = internal/tray
format-margin = 8px
tray-spacing = 8px
[settings] [settings]
screenchange-reload = true screenchange-reload = true
pseudo-transparency = true pseudo-transparency = true

View file

@ -19,4 +19,9 @@
videoDrivers = [ "nvidia" ]; videoDrivers = [ "nvidia" ];
}; };
}; };
hardware.nvidia = {
modesetting.enable = true;
forceFullCompositionPipeline = true;
};
} }