This commit is contained in:
nub31
2025-05-10 19:13:12 +02:00
parent ef393f0c0f
commit db5ecb0f27
3 changed files with 30 additions and 13 deletions

View File

@@ -58,7 +58,7 @@ decoration {
animations { animations {
# https://wiki.hyprland.org/Configuring/Variables/#animations # https://wiki.hyprland.org/Configuring/Variables/#animations
enabled = no, please :) enabled = false
# https://wiki.hyprland.org/Configuring/Animations # https://wiki.hyprland.org/Configuring/Animations
bezier = easeOutQuint,0.23,1,0.32,1 bezier = easeOutQuint,0.23,1,0.32,1

View File

@@ -19,6 +19,13 @@ windowrulev2 = nofocus,class:^(jetbrains-.*)$,title:^(win.*)$,floating:1
# Center vscode prompts # Center vscode prompts
windowrulev2 = center,xwayland:1,floating:1,fullscreen:0,pinned:0,initialTitle:Code - OSS windowrulev2 = center,xwayland:1,floating:1,fullscreen:0,pinned:0,initialTitle:Code - OSS
# Steam friends list # Steam friends list
windowrulev2 = float,initialClass:steam,initialTitle:Friends List 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]

View File

@@ -1,18 +1,25 @@
* { * {
border: 0;
border-radius: 0px;
font-family: "JetBrainsMono Nerd Font, Font Awesome, monospace"; font-family: "JetBrainsMono Nerd Font, Font Awesome, monospace";
font-size: 14px; font-size: 14px;
min-height: 0;
border-radius: 0px;
font-weight: 900; font-weight: 900;
} }
#waybar { #waybar {
background: #191414; background-color: #191414;
color: #ABB2BF; color: #ABB2BF;
} }
button {
border: 0;
border-radius: 0px;
min-height: 0;
border-radius: 0px;
}
button:hover {
background-color: #171414;
}
#network, #network,
#pulseaudio { #pulseaudio {
padding-right: 16px; padding-right: 16px;
@@ -24,23 +31,24 @@
} }
#workspaces button { #workspaces button {
color: rgb(255, 255, 255);
border-bottom: 2px solid transparent; border-bottom: 2px solid transparent;
padding-right: 16px;
padding-left: 10px;
} }
#workspaces button.active { #workspaces button.active {
border-bottom: 2px solid #ABB2BF; border-bottom: 2px solid #ABB2BF;
} }
#clock {
border-bottom: 2px solid #ABB2BF;
}
#tray { #tray {
padding: 0 8px; padding: 0 8px;
border-bottom: 2px solid rgb(198, 120, 221); border-bottom: 2px solid rgb(198, 120, 221);
} }
#tray .needs-attention {
background-color: rgb(198, 120, 221);
}
#network { #network {
border-bottom: 2px solid lightsalmon; border-bottom: 2px solid lightsalmon;
color: lightsalmon; color: lightsalmon;
@@ -56,6 +64,7 @@
} }
#custom-lock { #custom-lock {
border-bottom: 2px solid #ABB2BF;
transition: all 100ms ease-in-out; transition: all 100ms ease-in-out;
padding-right: 16px; padding-right: 16px;
padding-left: 12px; padding-left: 12px;
@@ -63,4 +72,5 @@
#custom-lock:hover { #custom-lock:hover {
color: #E06C75; color: #E06C75;
border-color: #E06C75;
} }