Compare commits

...

5 Commits

Author SHA1 Message Date
Nina Chloe Kassandra Reiß
cd3d5d8a97 Add network manager to toolbar 2026-03-06 10:38:50 +01:00
Nina Chloe Kassandra Reiß
1002876f3a Add network manager to toolbar 2026-03-06 10:25:43 +01:00
Nina Chloe Kassandra Reiß
707ba07778 Revert "Remove mode switcher"
This reverts commit 47a5d2b779.
2026-03-06 09:41:44 +01:00
47a5d2b779 Remove mode switcher 2026-02-27 19:30:14 +01:00
bc9636a522 Direct connection to style, only one light mode 2026-02-27 18:51:33 +01:00
2 changed files with 150 additions and 12 deletions

View File

@@ -7,8 +7,8 @@
"gtk-layer-shell": true,
"height": 50,
"modules-left": ["custom/launch_wofi","hyprland/workspaces","hyprland/window","cpu","memory","disk"],
"modules-center": ["custom/lock_screen","custom/updates","clock","custom/power_btn"],
"modules-right": ["temperature","custom/power_profile","battery","backlight","pulseaudio","pulseaudio#microphone","tray","custom/weather","custom/notification","custom/light_dark"],
"modules-center": ["custom/lock_screen","clock","custom/power_btn"],
"modules-right": ["temperature","custom/power_profile","battery","backlight","network","pulseaudio","pulseaudio#microphone","tray","custom/weather","custom/notification"],
"hyprland/window": {
"format": "{}"
@@ -63,14 +63,6 @@
"on-click": "kitty --start-as=fullscreen --title btop sh -c 'btop'"
},
"custom/updates": {
"format": "{}",
"exec": "~/.config/waybar/scripts/update-sys",
"on-click": "~/.config/waybar/scripts/update-sys update",
"interval": 300,
"tooltip": true
},
"custom/power_profile": {
//shows the current power profile and switches to next on click
"exec": "echo ?",
@@ -187,5 +179,13 @@
},
"on-scroll-up": "hyprctl dispatch workspace e+1",
"on-scroll-down": "hyprctl dispatch workspace e-1"
}
},
"network": {
"format-wifi": " {essid}",
"format-ethernet": "󰈀 {ipaddr}",
"format-linked": "󰈀 {ifname}",
"format-disconnected": "󰖪",
"tooltip-format": "{ifname} via {gwaddr}",
"on-click": "nm-connection-editor"
}
}

View File

@@ -1 +0,0 @@
/home/nick/.config/waybar/style/style-dark.css

139
style.css Normal file
View File

@@ -0,0 +1,139 @@
* {
border: none;
border-radius: 0;
font-family: "OpenDyslexicM Nerd Font Mono";
font-weight: bold
;
font-size: 14px;
min-height: 0;
}
window#waybar {
background: rgba(21, 18, 27, 0);
color: #cdd6f4;
}
tooltip {
background: #1e1e2e;
opacity: 0.8;
border-radius: 10px;
border-width: 2px;
border-style: solid;
border-color: #11111b;
}
tooltip label{
color: #cdd6f4;
}
#workspaces button {
padding: 5px;
color: #313244;
margin-right: 5px;
}
#workspaces button.active {
color: #a6adc8;
background: #eba0ac;
border-radius: 10px;
}
#workspaces button.focused {
color: #a6adc8;
background: #eba0ac;
border-radius: 10px;
}
#workspaces button.urgent {
color: #11111b;
background: #a6e3a1;
border-radius: 10px;
}
#workspaces button:hover {
background: #11111b;
color: #cdd6f4;
border-radius: 10px;
}
#custom-launch_wofi,
#custom-lock_screen,
#custom-light_dark,
#custom-power_btn,
#custom-power_profile,
#custom-weather,
#custom-notification,
#window,
#cpu,
#disk,
#custom-updates,
#memory,
#clock,
#battery,
#pulseaudio,
#network,
#tray,
#temperature,
#workspaces,
#backlight {
background: #1e1e2e;
opacity: 0.8;
padding: 0px 10px;
margin: 3px 0px;
margin-top: 10px;
border: 0px;
}
#tray, #custom-lock_screen, #temperature, #backlight, #custom-launch_wofi, #cpu {
border-radius: 10px 0px 0px 10px;
}
#custom-light_dark, #custom-power_btn, #workspaces, #pulseaudio.microphone, #battery, #disk {
border-radius: 0px 10px 10px 0px;
margin-right: 10px;
}
#temperature.critical {
color: #e92d4d;
}
#workspaces {
padding-right: 0px;
padding-left: 5px;
}
#custom-power_profile {
color: #a6e3a1;
border-left: 0px;
border-right: 0px;
}
#window {
border-radius: 10px;
margin-left: 20px;
margin-right: 20px;
}
#custom-launch_wofi {
color: #89b4fa;
margin-left: 10px;
border-right: 0px;
}
#pulseaudio {
color: #89b4fa;
border-left: 0px;
border-right: 0px;
}
#pulseaudio.microphone {
color: #cba6f7;
border-left: 0px;
border-right: 0px;
}
#battery {
color: #a6e3a1;
border-left: 0px;
}