From db5ecb0f27299a69533529c330f7df3f36a12b31 Mon Sep 17 00:00:00 2001 From: nub31 Date: Sat, 10 May 2025 19:13:12 +0200 Subject: [PATCH] ... --- .config/hypr/hyprland.conf | 2 +- .config/hypr/rules.conf | 11 +++++++++-- .config/waybar/style.css | 30 ++++++++++++++++++++---------- 3 files changed, 30 insertions(+), 13 deletions(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index 1122a19..24eb2a8 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -58,7 +58,7 @@ decoration { animations { # https://wiki.hyprland.org/Configuring/Variables/#animations - enabled = no, please :) + enabled = false # https://wiki.hyprland.org/Configuring/Animations bezier = easeOutQuint,0.23,1,0.32,1 diff --git a/.config/hypr/rules.conf b/.config/hypr/rules.conf index 9d67f35..4aebca6 100644 --- a/.config/hypr/rules.conf +++ b/.config/hypr/rules.conf @@ -19,6 +19,13 @@ windowrulev2 = nofocus,class:^(jetbrains-.*)$,title:^(win.*)$,floating:1 # Center vscode prompts windowrulev2 = center,xwayland:1,floating:1,fullscreen:0,pinned:0,initialTitle:Code - OSS - # Steam friends list -windowrulev2 = float,initialClass:steam,initialTitle:Friends List \ No newline at end of file +windowrulev2 = float,initialClass:steam,initialTitle:Friends List + +# Smart gaps +workspace = w[tv1], gapsout:0, gapsin:0 +workspace = f[1], gapsout:0, gapsin:0 +windowrule = bordersize 0, floating:0, onworkspace:w[tv1] +windowrule = rounding 0, floating:0, onworkspace:w[tv1] +windowrule = bordersize 0, floating:0, onworkspace:f[1] +windowrule = rounding 0, floating:0, onworkspace:f[1] \ No newline at end of file diff --git a/.config/waybar/style.css b/.config/waybar/style.css index a9424b3..bfc3779 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -1,18 +1,25 @@ * { - border: 0; - border-radius: 0px; font-family: "JetBrainsMono Nerd Font, Font Awesome, monospace"; font-size: 14px; - min-height: 0; - border-radius: 0px; font-weight: 900; } #waybar { - background: #191414; + background-color: #191414; color: #ABB2BF; } +button { + border: 0; + border-radius: 0px; + min-height: 0; + border-radius: 0px; +} + +button:hover { + background-color: #171414; +} + #network, #pulseaudio { padding-right: 16px; @@ -24,23 +31,24 @@ } #workspaces button { - color: rgb(255, 255, 255); border-bottom: 2px solid transparent; + padding-right: 16px; + padding-left: 10px; } #workspaces button.active { border-bottom: 2px solid #ABB2BF; } -#clock { - border-bottom: 2px solid #ABB2BF; -} - #tray { padding: 0 8px; border-bottom: 2px solid rgb(198, 120, 221); } +#tray .needs-attention { + background-color: rgb(198, 120, 221); +} + #network { border-bottom: 2px solid lightsalmon; color: lightsalmon; @@ -56,6 +64,7 @@ } #custom-lock { + border-bottom: 2px solid #ABB2BF; transition: all 100ms ease-in-out; padding-right: 16px; padding-left: 12px; @@ -63,4 +72,5 @@ #custom-lock:hover { color: #E06C75; + border-color: #E06C75; } \ No newline at end of file