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 {
# 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

View File

@@ -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
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-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;
}