Finished waybar

This commit is contained in:
Trianta 2024-01-24 23:48:32 -06:00
parent fc718bd638
commit b7a270e05f
3 changed files with 30 additions and 26 deletions

View File

@ -20,7 +20,7 @@ exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CUR
exec-once = dbus-update-activation-environment --systemd --all # for XDPH exec-once = dbus-update-activation-environment --systemd --all # for XDPH
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
exec-once = /usr/lib/polkit-kde-authentication-agent-1 # authentication dialogue for GUI apps exec-once = /usr/lib/polkit-kde-authentication-agent-1 # authentication dialogue for GUI apps
exec-once = waybar # launch the system panel exec-once = ~/.config/waybar/autobar.sh
exec-once = dunst # start notification demon exec-once = dunst # start notification demon
exec-once = swww init exec-once = swww init
exec-once = syncthing --no-browser exec-once = syncthing --no-browser

View File

@ -5,10 +5,6 @@
"position": "bottom", "position": "bottom",
"height": 40, "height": 40,
"spacing": 4, "spacing": 4,
"margin-top": 2,
"margin-bottom": 2,
"margin-left": 800,
"margin-right": 800,
"output": "DP-2", "output": "DP-2",
"modules-left": [ "modules-left": [
"wireplumber", "wireplumber",

View File

@ -9,8 +9,7 @@
} }
window#waybar { window#waybar {
background: @base; background: alpha(@base, 0.6);
border-radius: 16px;
color: @text; color: @text;
} }
@ -36,6 +35,17 @@ window#waybar.hidden {
transition: all 0.1s ease; transition: all 0.1s ease;
} }
.modules-left {
background: @surface0;
}
.modules-center {
background: @surface0;
border-radius: 16px;
}
.modules-right {
background: @surface0;
}
#clock, #clock,
#cpu, #cpu,
#disk, #disk,
@ -51,32 +61,30 @@ window#waybar.hidden {
padding: 0 10px; padding: 0 10px;
} }
/* Left side */
#wireplumber, #wireplumber{
#disk,
#memory,
#cpu,
#custom-gpu,
#temperature {
color: @teal; color: @teal;
} }
#disk {
/* Right side */ color: @rosewater;
#clock, }
#network,
#tray,
#custom-poweroff,
#custom-weather { #custom-weather {
color: @sapphire; color: @sapphire;
} }
#memory,
#cpu,
#network,
#custom-gpu,
#temperature {
color: @green;
}
#custom-poweroff {
color: @red;
}
/* Old Colors /* Old Colors
#wireplumber{
color: @sapphire;
}
#disk {
color: @peach;
}
#memory { #memory {
color: @teal; color: @teal;
} }