Updated config

This commit is contained in:
Eduard Urbach 2024-03-21 18:26:30 +01:00
parent 64b37682bf
commit 886dde2003
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
5 changed files with 80 additions and 39 deletions

View File

@ -1,6 +1,6 @@
font=Ubuntu Nerd Font:size=18 font=Ubuntu Nerd Font:size=18
prompt="" prompt=""
lines=5 lines=10
width=20 width=20
horizontal-pad=16 horizontal-pad=16
vertical-pad=8 vertical-pad=8
@ -10,4 +10,4 @@ fields=filename,name,generic,exec
[border] [border]
width=0 width=0
radius=8 radius=10

View File

@ -1,2 +1,5 @@
# Blur the status bar
layerrule = blur, $statusbar
# Disable maximize event
windowrulev2 = suppressevent maximize, class:.* windowrulev2 = suppressevent maximize, class:.*
#windowrulev2 = tile, class:.*

View File

@ -4,6 +4,7 @@
"modules-left": [ "modules-left": [
"custom/os", "custom/os",
"hyprland/workspaces", "hyprland/workspaces",
"wlr/taskbar",
], ],
"modules-center": [], "modules-center": [],
"modules-right": [ "modules-right": [

View File

@ -98,4 +98,21 @@
"tooltip": false, "tooltip": false,
"on-click": "$TERMINAL --hold -e neofetch", "on-click": "$TERMINAL --hold -e neofetch",
}, },
"wlr/taskbar": {
"format": "{icon}",
"icon-size": 14,
"icon-theme": "Adwaita",
"tooltip-format": "{title}",
"on-click": "activate",
"on-click-middle": "close",
"ignore-list": [
"Alacritty",
],
"app_ids-mapping": {
"firefoxdeveloperedition": "firefox-developer-edition",
},
"rewrite": {
"Firefox Web Browser": "Firefox",
},
},
} }

View File

@ -1,14 +1,17 @@
/* ===== Generic ===== */
* { * {
border: none; border: none;
font-family: "Ubuntu Nerd Font"; font-family: "Ubuntu Nerd Font";
font-size: 14px; font-size: 11px;
padding: 0; padding: 0;
margin: 0; margin: 0;
} }
/* ===== Waybar ===== */
#waybar { #waybar {
/* background: rgba(255, 255, 255, 0.9); */ background: rgba(38, 41, 44, 0.5);
/* color: rgba(38, 41, 44, 0.9); */
} }
#waybar.hidden { #waybar.hidden {
@ -24,12 +27,15 @@
opacity: 0; opacity: 0;
} }
/* ===== Modules ===== */
#clock, #clock,
#cpu, #cpu,
#disk, #disk,
#memory, #memory,
#mpris, #mpris,
#network, #network,
#taskbar,
#window, #window,
#wireplumber, #wireplumber,
#workspaces, #workspaces,
@ -38,10 +44,56 @@
#custom-updates { #custom-updates {
/* background: rgb(38, 41, 44); */ /* background: rgb(38, 41, 44); */
border-radius: 12px; border-radius: 12px;
padding: 2px 10px; padding: 2px 4px;
margin: 4px; margin: 4px;
} }
#custom-os {
font-size: 150%;
color: rgb(137, 220, 235);
background: transparent;
}
#custom-updates.disabled {
opacity: 0;
}
/* ===== Taskbar ===== */
#taskbar button {
padding: 0px 5px;
}
#taskbar button:hover {}
#taskbar button.active {}
/* ===== Workspaces ===== */
#workspaces button {
/* color: rgba(38, 41, 44, 0.9); */
padding: 0px 5px;
opacity: 0.25;
background: transparent;
text-shadow: none;
border-radius: 0;
}
#workspaces button.empty {
opacity: 0.1;
}
#workspaces button.active {
opacity: 1.0;
}
#workspaces button.visible {}
#workspaces button.urgent {}
#workspaces button.persistent {}
#workspaces button.hidden {}
/* ===== Extra colors ===== */
/*#cpu { /*#cpu {
background: rgb(50.15%, 92.07%, 99.48%); background: rgb(50.15%, 92.07%, 99.48%);
} }
@ -61,35 +113,3 @@
#network { #network {
background: rgb(92.54%, 81.78%, 100%); background: rgb(92.54%, 81.78%, 100%);
}*/ }*/
#custom-updates.disabled {
opacity: 0;
}
#workspaces button {
/* color: rgba(38, 41, 44, 0.9); */
padding: 0px 5px;
opacity: 0.2;
background: transparent;
text-shadow: none;
border-radius: 0;
}
#workspaces button.empty {
opacity: 0.2;
}
#workspaces button.active {
opacity: 0.9;
}
#workspaces button.visible {}
#workspaces button.urgent {}
#workspaces button.persistent {}
#workspaces button.hidden {}
#custom-os {
font-size: 150%;
color: rgb(137, 220, 235);
background: transparent;
}