Browse Source

waybar flavours

pull/22/head
krautt 2 years ago
parent
commit
2ec10cc669
  1. 75
      config/hypr/scripts/WaybarLayout.sh
  2. 39
      config/hypr/scripts/WaybarStyles.sh
  3. 2
      config/waybar/configs/Chrysanthemum
  4. 2
      config/waybar/configs/Gardenia
  5. 2
      config/waybar/configs/Peony
  6. 47
      config/waybar/configs/config-Bottom(plasma)
  7. 74
      config/waybar/configs/config-Bottom-Left
  8. 74
      config/waybar/configs/config-Bottom-Right
  9. 36
      config/waybar/configs/config-Left
  10. 36
      config/waybar/configs/config-Right
  11. 48
      config/waybar/configs/config-Top(gnome)
  12. 78
      config/waybar/configs/config-Top-&-Bottom
  13. 75
      config/waybar/configs/config-Top-Left
  14. 75
      config/waybar/configs/config-Top-Right
  15. 129
      config/waybar/configs/config-all-sides
  16. 67
      config/waybar/configs/config-default
  17. 67
      config/waybar/configs/config-default-Bottom
  18. 37
      config/waybar/configs/config-simple-long
  19. 30
      config/waybar/configs/config-simple-short
  20. 105
      config/waybar/modules
  21. 37
      config/waybar/style/catppuccin-themes/latte.css
  22. 38
      config/waybar/style/catppuccin-themes/mocha.css
  23. 190
      config/waybar/style/style-Black-&-White.css
  24. 237
      config/waybar/style/style-catppuccin-latte.css
  25. 235
      config/waybar/style/style-catppuccin-mocha.css
  26. 258
      config/waybar/style/style-colorful.css
  27. 329
      config/waybar/style/style-colors-border.css
  28. 179
      config/waybar/style/style-colors-line.css
  29. 342
      config/waybar/style/style-colors.css
  30. 158
      config/waybar/style/style-dark.css
  31. 159
      config/waybar/style/style-light.css
  32. 185
      config/waybar/style/style-pywal.css

75
config/hypr/scripts/WaybarLayout.sh

@ -1,63 +1,50 @@
#!/bin/bash #!/bin/bash
# Files
#waybar
CONFIG="$HOME/.config/waybar/configs" CONFIG="$HOME/.config/waybar/configs"
WCONFIG="$HOME/.config/waybar/config" WCONFIG="$HOME/.config/waybar/config"
menu() { menu(){
cat <<EOF printf "1. Peony\n"
default printf "2. Chrysanthemum\n"
default-Bottom printf "3. Gardenia\n"
Top(gnome) printf "4. Camellia\n"
Bottom(plasma)
simple-long
simple-short
Top-&-Bottom
Left
Right
Top-Left
Top-Right
Bottom-Left
Bottom-Right
all-sides
no panel
Peony
Chrysanthemum
Gardenia
Camellia
EOF
}
apply_config() {
ln -sf "$CONFIG/config-$1" "$WCONFIG"
} }
main() { main() {
choice=$(menu | rofi -dmenu -config ~/.config/rofi/config-waybar.rasi) choice=$(menu | rofi -dmenu -config ~/.config/rofi/config-long.rasi | cut -d. -f1)
if [[ -z "$choice" ]]; then
echo "No option selected. Exiting."
exit 0
fi
case $choice in case $choice in
"no panel") 1)
if pgrep -x "waybar" >/dev/null; then ln -sf "$CONFIG/Peony" "$WCONFIG"
pkill waybar ;;
fi 2)
exit 0 ln -sf "$CONFIG/Chrysanthemum" "$WCONFIG"
;; ;;
3)
ln -sf "$CONFIG/Gardenia" "$WCONFIG"
;;
4)
ln -sf "$CONFIG/Camellia" "$WCONFIG"
;;
10)
if pgrep -x "waybar" >/dev/null; then
pkill waybar
exit
fi
;;
*) *)
apply_config "$choice" ;;
;;
esac esac
} }
# Check if rofi is already running # Check if rofi is already running
if pgrep -x "rofi" >/dev/null; then if pidof rofi >/dev/null; then
pkill rofi pkill rofi
exit 0 exit 0
else
main
fi fi
main exec ~/.config/hypr/scripts/Refresh.sh &
~/.config/hypr/scripts/Refresh.sh &

39
config/hypr/scripts/WaybarStyles.sh

@ -4,55 +4,42 @@
THEMEIS=$(realpath ~/.config/waybar/style.css | sed 's/.*-\(.*\)\.css/\1/') THEMEIS=$(realpath ~/.config/waybar/style.css | sed 's/.*-\(.*\)\.css/\1/')
# Array for the styles # Array for the styles
STYLES=( STYLES=("Purpl"
"Purpl"
"Crimson" "Crimson"
"Golden Noir" "Golden Noir"
"Simple Pink" "Simple Pink"
"pywal"
"dark"
"light"
"Black-&-White"
"colors"
"colors-border"
"colors-line"
"colorful"
"catppuccin-mocha"
"catppuccin-latte"
"None" "None"
) )
# Build ROFI # Build ROFI
SELECTED_STYLE=$(printf "%s\n" "${STYLES[@]}" | rofi -dmenu -config ~/.config/rofi/config-waybar.rasi "${#STYLES[@]}") SELECTED_STYLE=$(printf "%s\n" "${STYLES[@]}" | rofi -dmenu -p "Choose" -lines "${#STYLES[@]}")
# Check if rofi is already running # Here you verify the selected theme
if pidof rofi > /dev/null; then
pkill rofi
exit 0
fi
# Verify the selected theme
if [[ " ${STYLES[@]} " =~ " $SELECTED_STYLE " ]]; then if [[ " ${STYLES[@]} " =~ " $SELECTED_STYLE " ]]; then
SWITCHTO="${SELECTED_STYLE}" SWITCHTO="${SELECTED_STYLE}"
else else
echo "Invalid selection" echo "It is not valid =c"
exit 1 exit 1
fi fi
# APPLY THEME # APPLY THEME
THEMEFILE="$HOME/.config/waybar/style/style-${SWITCHTO}.css" THEMEFILE="$HOME/.config/waybar/style/${SWITCHTO}.css"
if [ -f "$THEMEFILE" ]; then if [ -f "$THEMEFILE" ]; then
ln -sf "$THEMEFILE" "$HOME/.config/waybar/style.css" ln -sf "$THEMEFILE" "$HOME/.config/waybar/style.css"
else else
echo "Error: $THEMEFILE not found" echo "Error: $THEMEFILE not found"
exit 1 exit 1
fi fi
# Restart relevant processes _ps=(waybar mako dunst)
for process in waybar mako dunst; do for _prs in "${_ps[@]}"; do
if pidof "$process" > /dev/null; then if [[ $(pidof ${_prs}) ]]; then
pkill "$process" pkill ${_prs}
fi fi
done done
exec ~/.config/hypr/scripts/Refresh.sh exec ~/.config/hypr/scripts/Refresh.sh

2
config/waybar/configs/Chrysanthemum

@ -109,7 +109,7 @@
"tooltip-format": "{timeTo} {power}w", "tooltip-format": "{timeTo} {power}w",
"on-click-middle": "~/.config/hypr/scripts/ChangeBlur.sh", "on-click-middle": "~/.config/hypr/scripts/ChangeBlur.sh",
"on-click-right": "~/.config/hypr/scripts/Wlogout.sh", "on-click-right": "~/.config/hypr/scripts/Wlogout.sh",
}, }
} }

2
config/waybar/configs/Gardenia

@ -109,7 +109,7 @@
"tooltip-format": "{timeTo} {power}w", "tooltip-format": "{timeTo} {power}w",
"on-click-middle": "~/.config/hypr/scripts/ChangeBlur.sh", "on-click-middle": "~/.config/hypr/scripts/ChangeBlur.sh",
"on-click-right": "~/.config/hypr/scripts/Wlogout.sh", "on-click-right": "~/.config/hypr/scripts/Wlogout.sh",
}, }
} }

2
config/waybar/configs/Peony

@ -119,6 +119,6 @@
"tray#peony": { "tray#peony": {
"icon-size": 17, "icon-size": 17,
"spacing": 8, "spacing": 8
} }
} }

47
config/waybar/configs/config-Bottom(plasma)

@ -1,47 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### "Plasma" (bottom) ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"custom/menu",
"hyprland/workspaces#3",
"wlr/taskbar",
],
"modules-center": [
"hyprland/window",
"custom/light_dark",
],
"modules-right": [
"tray",
"custom/weather",
"clock",
"cpu",
"temperature",
"memory",
"backlight",
"battery",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
//"custom/updater",
"keyboard-state",
"custom/cycle_wall",
"custom/power",
],
}

74
config/waybar/configs/config-Bottom-Left

@ -1,74 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### BOTTOM and LEFT PANEL
[{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 2,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"custom/menu",
"cpu",
"temperature",
"memory",
"disk",
],
"modules-center": [
//"hyprland/window",
"hyprland/workspaces#2",
],
"modules-right": [
//"network",
//"bluetooth",
"custom/weather",
"battery",
"backlight",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"keyboard-state",
"custom/power",
],
},
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "left",
"height": 650,
"margin-top": 8,
"margin-bottom": 8,
"margin-left": 8,
//"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
"idle_inhibitor",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"tray",
"custom/light_dark",
],
}]

74
config/waybar/configs/config-Bottom-Right

@ -1,74 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### BOTTOM and RIGHT PANEL
[{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 2,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"custom/menu",
"cpu",
"temperature",
"memory",
"disk",
],
"modules-center": [
//"hyprland/window",
"hyprland/workspaces#2",
],
"modules-right": [
//"network",
//"bluetooth",
"custom/weather",
"battery",
"backlight",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"keyboard-state",
"custom/power",
],
},
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "right",
"height": 650,
"margin-top": 8,
"margin-bottom": 8,
//"margin-left": 3,
"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
"idle_inhibitor",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"tray",
"custom/light_dark",
],
}]

36
config/waybar/configs/config-Left

@ -1,36 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### LEFT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "left",
"margin-top": 8,
"margin-bottom": 8,
"margin-left": 3,
//"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"clock#vertical",
"custom/light_dark",
],
"modules-center": [
"hyprland/workspaces",
],
"modules-right": [
"tray",
//"network",
"backlight#vertical",
"pulseaudio#microphone_vertical",
"pulseaudio#vertical",
"custom/power_vertical",
"custom/menu",
],
}

36
config/waybar/configs/config-Right

@ -1,36 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### RIGHT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "right",
"margin-top": 8,
"margin-bottom": 8,
//"margin-left": 3,
"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"clock#vertical",
"custom/light_dark",
],
"modules-center": [
"hyprland/workspaces",
],
"modules-right": [
"tray",
//"network",
"backlight#vertical",
"pulseaudio#microphone_vertical",
"pulseaudio#vertical",
"custom/power_vertical",
"custom/menu",
],
}

48
config/waybar/configs/config-Top(gnome)

@ -1,48 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### "Gnome" style (top) ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"custom/menu",
"hyprland/workspaces#3",
//"custom/updater",
"hyprland/window",
],
"modules-center": [
"clock",
"custom/light_dark",
"cava",
"custom/weather",
],
"modules-right": [
"tray",
//"network",
"bluetooth",
"cpu",
"temperature",
"memory",
"battery",
"backlight",
"keyboard-state",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"custom/cycle_wall",
"custom/power",
],
}

78
config/waybar/configs/config-Top-&-Bottom

@ -1,78 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### DUAL TOP and BOTTOM ### //
[{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"hyprland/workspaces#2",
"cpu",
"temperature",
"memory",
"disk",
],
"modules-center": [
"idle_inhibitor",
"clock",
"custom/light_dark",
],
"modules-right": [
"custom/weather",
"battery",
"backlight",
"bluetooth",
"network",
//"custom/updater",
"custom/cycle_wall",
"custom/lock",
],
},
{
"include": "~/.config/waybar/modules",
"layer": "top",
"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 10,
"margin-bottom": 6,
"modules-left": [
"custom/menu",
"wlr/taskbar",
],
"modules-center": [
"cava",
],
"modules-right": [
"hyprland/window",
"tray",
"keyboard-state",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"custom/power",
],
}]

75
config/waybar/configs/config-Top-Left

@ -1,75 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### TOP and LEFT PANEL ## //
[{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"width": 1200,
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"custom/menu",
"cpu",
"temperature",
"memory",
"disk",
],
"modules-center": [
//"hyprland/window",
"hyprland/workspaces#3",
],
"modules-right": [
//"network",
//"bluetooth",
"custom/weather",
"battery",
"backlight",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"keyboard-state",
"custom/power",
],
},
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "left",
"height": 650,
"margin-top": 8,
"margin-bottom": 8,
"margin-left": 8,
//"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
"idle_inhibitor",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"tray",
"custom/light_dark",
],
}]

75
config/waybar/configs/config-Top-Right

@ -1,75 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### TOP and LEFT PANEL ## //
[{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"width": 1200,
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"custom/menu",
"cpu",
"temperature",
"memory",
"disk",
],
"modules-center": [
//"hyprland/window",
"hyprland/workspaces#3",
],
"modules-right": [
//"network",
//"bluetooth",
"custom/weather",
"battery",
"backlight",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
"keyboard-state",
"custom/power",
],
},
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "right",
"height": 650,
"margin-top": 8,
"margin-bottom": 8,
//"margin-left": 3,
"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
"idle_inhibitor",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"tray",
"custom/light_dark",
],
}]

129
config/waybar/configs/config-all-sides

@ -1,129 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### ALL SIDES ### //
[{
// ### TOP PANEL ##
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"padding": 4,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"cpu",
"temperature",
"memory",
"disk",
"custom/weather",
],
"modules-center": [
"hyprland/workspaces#4",
],
"modules-right": [
"battery",
"backlight",
"bluetooth",
"network",
//"custom/updater",
"custom/cycle_wall",
],
},
// ### LEFT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "left",
"margin-top": 8,
"margin-bottom": 8,
"margin-left": 8,
//"margin-right": 3,
"spacing": 3,
"fixed-center": true,
"ipc": true,
//"gtk-layer-shell": true,
"modules-left": [
"custom/menu",
],
"modules-center": [
"custom/light_dark",
],
"modules-right": [
"idle_inhibitor",
],
},
// ### RIGHT PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "right",
"margin-top": 8,
"margin-bottom": 8,
//"margin-left": 1,
"margin-right": 8,
"spacing": 3,
"fixed-center": true,
"ipc": true,
"gtk-layer-shell": true,
"modules-left": [
"custom/lock",
],
"modules-center": [
"clock#vertical",
],
"modules-right": [
"custom/power_vertical",
],
},
// ### BOTTOM PANEL ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"wlr/taskbar",
],
"modules-center": [
"hyprland/window",
],
"modules-right": [
"tray",
"keyboard-state",
"pulseaudio",
//"wireplumber",
"pulseaudio#microphone",
],
}]

67
config/waybar/configs/config-default

@ -1,67 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### DEFAULT ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"hyprland/workspaces#3",
"custom/separator#dot-line",
"cpu",
"custom/separator#dot-line",
"temperature",
"custom/separator#dot-line",
"memory",
"custom/separator#dot-line",
"custom/weather",
],
"modules-center": [
"custom/menu",
"custom/separator#dot-line",
"idle_inhibitor",
"custom/separator#dot-line",
"clock",
"custom/separator#dot-line",
"custom/light_dark",
"custom/separator#dot-line",
"custom/lock",
//],
"custom/separator#dot-line",
"custom/keybinds",
],
"modules-right": [
//"hyprland/window",
"tray",
"custom/separator#dot-line",
"bluetooth",
"custom/separator#dot-line",
//"network",
//"custom/separator#dot-line",
//"cava",
"battery",
"custom/separator#dot-line",
"backlight",
"custom/separator#dot-line",
"pulseaudio",
"custom/separator#dot-line",
//"wireplumber",
"pulseaudio#microphone",
"custom/separator#dot-line",
"keyboard-state",
"custom/separator#dot-line",
"custom/power",
],
}

67
config/waybar/configs/config-default-Bottom

@ -1,67 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### DEFAULT-BOTTOM### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "bottom",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-left": 6,
"margin-right": 6,
"margin-bottom": 4,
"modules-left": [
"hyprland/workspaces",
"custom/separator#dot-line",
"cpu",
"custom/separator#dot-line",
"temperature",
"custom/separator#dot-line",
"memory",
"custom/separator#dot-line",
"custom/weather",
],
"modules-center": [
"custom/menu",
"custom/separator#dot-line",
"idle_inhibitor",
"custom/separator#dot-line",
"clock",
"custom/separator#dot-line",
"custom/light_dark",
"custom/separator#dot-line",
"custom/lock",
//],
"custom/separator#dot-line",
"custom/keybinds",
],
"modules-right": [
//"hyprland/window",
"tray",
"custom/separator#dot-line",
"bluetooth",
"custom/separator#dot-line",
"network",
"custom/separator#dot-line",
//"cava",
"battery",
"custom/separator#dot-line",
"backlight",
"custom/separator#dot-line",
"pulseaudio",
"custom/separator#dot-line",
//"wireplumber",
"pulseaudio#microphone",
"custom/separator#dot-line",
"keyboard-state",
"custom/separator#dot-line",
"custom/power",
],
}

37
config/waybar/configs/config-simple-long

@ -1,37 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### SIMPLE ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
//"mode": "dock",
"exclusive": true,
"passthrough": false,
"position": "top",
"spacing": 3,
"fixed-center": true,
"ipc": true,
"margin-top": 6,
"margin-left": 8,
"margin-right": 8,
"modules-left": [
"custom/menu",
"hyprland/workspaces",
],
"modules-center": [
"clock",
"custom/light_dark",
],
"modules-right": [
"backlight",
"keyboard-state",
"pulseaudio",
"bluetooth",
"network",
"battery",
],
}

30
config/waybar/configs/config-simple-short

@ -1,30 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
// ### SIMPLE -SHORT ### //
{
"include": "~/.config/waybar/modules",
"layer": "top",
"position": "top",
"width": 1050,
"margin-top": 5,
"modules-left": [
"clock",
"custom/weather",
],
"modules-center": [
"hyprland/workspaces#2"
],
"modules-right": [
"custom/menu",
"tray",
"network",
"bluetooth",
"backlight",
"pulseaudio",
"battery",
"custom/power"],
}

105
config/waybar/modules

@ -466,111 +466,8 @@
"format": "|", "format": "|",
"interval": "once", "interval": "once",
"tooltip": false "tooltip": false
}, }
// Modules below are for vertical layout
"backlight#vertical": {
"interval": 2,
"align": 0,
"rotate": 0,
"format": "{icon}",
"format-icons": ["󰛩", "󱩎", "󱩏", "󱩑", "󱩒", "󱩓", "󱩔", "󱩕", "󰛨"],
"tooltip-format": "{percent}%",
"icon-size": 10,
"on-update": "",
"icon-size": 10,
"on-click": "",
"on-click-middle": "",
"on-click-right": "",
"on-update": "",
"on-scroll-up": "~/.config/hypr/scripts/Brightness.sh --inc",
"on-scroll-down": "~/.config/hypr/scripts/Brightness.sh --dec",
"smooth-scrolling-threshold": 1,
},
"clock#vertical": {
"format": "{:\n%H\n%M\n%S\n\n \n%d\n%m\n%y}",
"interval": 1,
//"format": "{:\n%I\n%M\n%p\n\n \n%d\n%m\n%y}",
"tooltip": true,
"tooltip-format": "{calendar}",
"calendar": {
"mode": "year",
"mode-mon-col": 3,
"format": {
"today": "<span color='#0dbc79'>{}</span>",
}
}
},
"cpu#vertical": {
"format": "󰍛\n{usage}%",
"interval": 1,
"on-click-right": "gnome-system-monitor",
},
"memory#vertical": {
"interval": 10,
"format": "󰾆\n{percentage}%",
"format-alt": "󰾆\n{used:0.1f}G",
"format-alt-click": "click",
"tooltip": true,
"tooltip-format": "{used:0.1f}GB/{total:0.1f}G",
"on-click-right": "kitty --title btop sh -c 'btop'",
},
"pulseaudio#vertical": {
"format": "{icon}",
"format-bluetooth": "󰂰",
"format-muted": "󰖁",
"format-icons": {
"headphone": "",
"hands-free": "",
"headset": "",
"phone": "",
"portable": "",
"car": "",
"default": ["", "", "󰕾", ""],
"ignored-sinks": ["Easy Effects Sink"],
},
"scroll-step": 5.0,
"on-click": "~/.config/hypr/scripts/Volume.sh --toggle",
"on-click-right": "pavucontrol -t 3",
"on-scroll-up": "~/.config/hypr/scripts/Volume.sh --inc",
"on-scroll-down": "~/.config/hypr/scripts/Volume.sh --dec",
"smooth-scrolling-threshold": 1,
},
"pulseaudio#microphone_vertical": {
"format": "{format_source}",
"format-source": "󰍬",
"format-source-muted": "󰍭",
"on-click-right": "pavucontrol",
"on-click": "~/.config/hypr/scripts/Volume.sh --toggle-mic",
"on-scroll-up": "~/.config/hypr/scripts/Volume.sh --mic-inc",
"on-scroll-down": "~/.config/hypr/scripts/Volume.sh --mic-dec",
"max-volume": 100,
"tooltip": true,
"tooltip-format": "{icon} {desc} {volume}%",
},
"temperature#vertical": {
"interval": 10,
"tooltip": true,
"hwmon-path": "/sys/class/hwmon/hwmon1/temp1_input",
//"thermal-zone": 0,
"critical-threshold": 80,
"format-critical": "{icon}\n{temperatureC}°C",
"format": " {icon}",
"format-icons": ["󰈸"],
"on-click-right": "kitty --title nvtop sh -c 'nvtop'"
},
"custom/power_vertical": {
"format": "⏻",
"tooltip": false,
"on-click": "~/.config/hypr/scripts/Wlogout.sh",
"on-click-right": "~/.config/hypr/scripts/ChangeBlur.sh",
},
} }

37
config/waybar/style/catppuccin-themes/latte.css

@ -1,37 +0,0 @@
/*
*
* Catppuccin Latte palette
* Maintainer: rubyowo
*
*/
@define-color base #eff1f5;
@define-color mantle #e6e9ef;
@define-color crust #dce0e8;
@define-color text #4c4f69;
@define-color subtext0 #6c6f85;
@define-color subtext1 #5c5f77;
@define-color surface0 #ccd0da;
@define-color surface1 #bcc0cc;
@define-color surface2 #acb0be;
@define-color overlay0 #9ca0b0;
@define-color overlay1 #8c8fa1;
@define-color overlay2 #7c7f93;
@define-color blue #1e66f5;
@define-color lavender #7287fd;
@define-color sapphire #209fb5;
@define-color sky #04a5e5;
@define-color teal #179299;
@define-color green #40a02b;
@define-color yellow #df8e1d;
@define-color peach #fe640b;
@define-color maroon #e64553;
@define-color red #d20f39;
@define-color mauve #8839ef;
@define-color pink #ea76cb;
@define-color flamingo #dd7878;
@define-color rosewater #dc8a78;

38
config/waybar/style/catppuccin-themes/mocha.css

@ -1,38 +0,0 @@
/*
*
* Catppuccin Mocha palette
* Maintainer: rubyowo
*
*/
@define-color base #1e1e2e;
@define-color mantle #181825;
@define-color crust #11111b;
@define-color text #cdd6f4;
@define-color subtext0 #a6adc8;
@define-color subtext1 #bac2de;
@define-color surface0 #313244;
@define-color surface1 #45475a;
@define-color surface2 #585b70;
@define-color overlay0 #6c7086;
@define-color overlay1 #7f849c;
@define-color overlay2 #9399b2;
@define-color blue #89b4fa;
@define-color lavender #b4befe;
@define-color sapphire #74c7ec;
@define-color sky #89dceb;
@define-color teal #94e2d5;
@define-color green #a6e3a1;
@define-color yellow #f9e2af;
@define-color peach #fab387;
@define-color maroon #eba0ac;
@define-color red #f38ba8;
@define-color mauve #cba6f7;
@define-color pink #f5c2e7;
@define-color flamingo #f2cdcd;
@define-color rosewater #f5e0dc;

190
config/waybar/style/style-Black-&-White.css

@ -1,190 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
background: transparent;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
window > box {
/*margin: 1px 2px 2px;*/
background: rgba(0, 0, 0, 0);
border-bottom: 1px solid rgba(0, 0, 0, 0);
color: white;
}
window {
/*font-weight: bold;*/
}
tooltip {
color: white;
background: #1e1e2e;
opacity: 0.8;
border-radius: 10px;
border-width: 2px;
border-style: solid;
border-color: white;
}
tooltip label{
color: #cdd6f4;
}
/*-----module groups----*/
.modules-right {
background-color: black;
/*margin: 2px 10px 0 0;*/
border: 1px;
border-style: solid;
border-color: white;
border-radius: 10px;
}
.modules-center {
background-color: black;;
/*margin: 2px 0 0 0;*/
border: 1px;
border-style: solid;
border-color: white;
border-radius: 10px;
}
.modules-left {
/*margin: 2px 0 0 5px;*/
background-color: black;
border: 1px;
border-style: solid;
border-color: white;
border-radius: 10px;
}
/*-----modules indv----*/
#workspaces button {
padding: 0px 0px;
background-color: transparent;
}
#workspaces button:hover {
box-shadow: inherit;
background-color: rgba(0,153,153,0);
}
#workspaces button.focused {
background-color: rgba(0,85,102,0);
}
#workspaces button.active {
color: white;
background-color: rgba(191, 191, 191,0.1);
/*box-shadow:inherit;*/
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 6px;
}
#mode {
color: #cc3436;
font-weight: bold;
}
#custom-power {
/*background-color: rgba(0,119,179,0.6);*/
/*border-radius: 50px;*/
margin: 5px 5px;
padding: 1px 3px;
}
/*-----Indicators----*/
#idle_inhibitor.activated {
color: #2dcc36;
}
#pulseaudio.muted {
color: #cc3436;
}
#temperature.critical {
color: #cc3436;
}
#waybar {
background-color: #282828;
color: #d8d8d8;
}
@keyframes blink {
to {
color: #000000;
}
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#taskbar button.active {
background-color: #7f849c;
}
#waybar.empty, #waybar.tiled, #waybar.floating {
background-color: transparent;
}

237
config/waybar/style/style-catppuccin-latte.css

@ -1,237 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
@import "../waybar/style/catppuccin-themes/latte.css";
window#waybar {
transition-property: background-color;
transition-duration: 0.5s;
/*background: transparent;*/
border: 2px solid @sapphire;
background: @theme_base_color;
border-radius: 10px;
}
window#waybar.hidden {
opacity: 0.2;
}
#waybar.empty #window {
background: none;
}
/* This section can be use if you want to separate waybar modules*/
/* Remember to set transparent on waybar above */
/*.modules-left, .modules-center, .modules-right { */
/* background: @theme_base_color; */
/* border: 0.5px solid @overlay0; */
/* padding: 0px 5px; */
/* border-radius: 10px; */
/*} */
/* .modules-left, .modules-right { */
/* border: 1px solid @blue; */
/* margin: 0px 5px;*/
/*}*/
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 6px;
}
#idle_inhibitor {
color: @blue;
}
#backlight {
color: @blue;
}
#battery {
color: @green;
}
@keyframes blink {
to {
color: @surface0;
}
}
#battery.critical:not(.charging) {
background-color: @red;
color: @theme_text_color;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
box-shadow: inset 0 -3px transparent;
}
#clock {
color: @yellow;
}
#cpu {
color: @green;
}
#memory {
color: @sky;
}
#disk {
color: @sapphire;
}
#temperature {
color: @teal;
}
#temperature.critical {
background-color: @red;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
}
#keyboard-state {
color: @flamingo;
}
#workspaces button {
border-radius: 5px;
/*margin: 3px;*/
/*padding: 1px;*/
}
#workspaces button:hover {
border-radius: 5px;
color: @overlay0;
background-color: @surface0;
}
#workspaces button.persistent {
color: @surface1;
border-radius: 0px;
}
#workspaces button.active {
color: @peach;
border-radius: 0px;
}
#workspaces button.urgent {
color: @red;
border-radius: 0px;
}
#custom-menu {
color: @rosewater;
}
#custom-power {
color: @red;
margin-right: 3px;
}
#custom-updater {
color: @red;
}
#custom-light_dark {
color: @blue;
}
#custom-weather {
color: @lavender;
}
#custom-lock {
color: @maroon;
}
#pulseaudio {
color: @sapphire;
}
#pulseaudio.bluetooth {
color: @pink;
}
#pulseaudio.muted {
color: @red;
}
#window {
color: @mauve;
}
#custom-waybar-mpris {
color:@lavender;
}
#network {
color: @teal;
}
#network.disconnected,
#network.disabled {
background-color: @surface0;
color: @text;
}

235
config/waybar/style/style-catppuccin-mocha.css

@ -1,235 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
@import "../waybar/style/catppuccin-themes/mocha.css";
window#waybar {
transition-property: background-color;
transition-duration: 0.5s;
background: transparent;
/*border: 2px solid @overlay0;*/
/*background: @theme_base_color;*/
border-radius: 10px;
}
window#waybar.hidden {
opacity: 0.2;
}
#waybar.empty #window {
background: none;
}
/* This section can be use if you want to separate waybar modules */
.modules-left, .modules-center, .modules-right {
background: @theme_base_color;
border: 0.5px solid @overlay0;
padding: 0px 5px;
border-radius: 10px;
}
.modules-left, .modules-right {
border: 1px solid @blue;
/*margin: 0px 5px;*/
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 6px;
}
#idle_inhibitor {
color: @blue;
}
#backlight {
color: @blue;
}
#battery {
color: @green;
}
@keyframes blink {
to {
color: @surface0;
}
}
#battery.critical:not(.charging) {
background-color: @red;
color: @theme_text_color;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
box-shadow: inset 0 -3px transparent;
}
#clock {
color: @yellow;
}
#cpu {
color: @green;
}
#memory {
color: @sky;
}
#disk {
color: @sapphire;
}
#temperature {
color: @teal;
}
#temperature.critical {
background-color: @red;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
}
#keyboard-state {
color: @flamingo;
}
#workspaces button {
border-radius: 5px;
/*margin: 3px;*/
/*padding: 1px;*/
}
#workspaces button:hover {
border-radius: 5px;
color: @overlay0;
background-color: @surface0;
}
#workspaces button.persistent {
color: @surface1;
border-radius: 0px;
}
#workspaces button.active {
color: @peach;
border-radius: 0px;
}
#workspaces button.urgent {
color: @red;
border-radius: 0px;
}
#custom-menu {
color: @rosewater;
}
#custom-power {
color: @red;
margin-right: 3px;
}
#custom-updater {
color: @red;
}
#custom-light_dark {
color: @blue;
}
#custom-weather {
color: @lavender;
}
#custom-lock {
color: @maroon;
}
#pulseaudio {
color: @sapphire;
}
#pulseaudio.bluetooth {
color: @pink;
}
#pulseaudio.muted {
color: @red;
}
#window {
color: @mauve;
}
#custom-waybar-mpris {
color:@lavender;
}
#network {
color: @teal;
}
#network.disconnected,
#network.disabled {
background-color: @surface0;
color: @text;
}

258
config/waybar/style/style-colorful.css

@ -1,258 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
/* Transparent waybar. Make sure to comment out background-color: and border: */
background-color: rgba(0,0,0,0);
/* background-color: #1e1e2e; */
/* border: 2px solid #313244; */
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.5;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
tooltip {
background: #1e1e2e;
opacity: 0.8;
border-radius: 10px;
border-width: 2px;
border-style: solid;
border-color: #11111b;
}
tooltip label{
color: #cdd6f4;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
border-radius: 8px;
margin: 4px 1px;
padding: 0px 4px;
color: #3A3B3C;
border: 1px solid #b4befe;
}
#backlight {
background-color: #cba6f7;
}
#taskbar {
color: #ffffff;
}
#taskbar button.active {
background-color: #7f849c;
}
#battery {
background-color: #f9e2af;
}
@keyframes blink {
to {
color: #000000;
}
}
#battery.critical:not(.charging) {
background-color: #f38ba8;
color: #f38ba8;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#clock {
background-color: #a6e3a1;
}
#keyboard-state,
#keyboard-state label,
#keyboard-state label.locked,
#cpu {
background-color: #89dceb;
}
#memory {
background-color: #eba0ac;
}
#disk {
background-color: #b4befe;
}
#tray {
background-color: #b4befe;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
}
#workspaces button {
border-radius: 8px;
background-color: #d9e0ee;
color: #3A3B3C;
}
#workspaces button.active {
background-color: #eba0ac;
color: #3A3B3C;
}
#taskbar button {
border-radius: 8px;
background-color: #74c7ec;
color: #3A3B3C;
}
#taskbar button.active {
background-color: #b4befe;
color: #3A3B3C;
}
#custom-menu {
background-color: #f5c2e7;
/*padding: 1px;*/
padding-right: 10px;
border-radius: 8px;
color: #3A3B3C;
border: 1px solid #b4befe;
}
#custom-power {
background-color: #f38ba8;
}
#custom-updater {
background-color: #e6ed7b;
}
#custom-cycle_wall {
background-color: #94e2d5;
}
#custom-weather {
background-color: #cba6f7;
}
#wireplumber {
background-color: #a6e3a1;
}
#wireplumber.muted {
background-color: #313244;
color: #cdd6f4;
}
#custom-lock {
background-color: #89dceb;
}
#temperature {
background-color: #86b4fa;
}
#custom-power_vertical,
#custom-light_dark,
#idle_inhibitor {
background-color: #86b4fa;
}
#bluetooth {
background-color: #89dceb;
}
#window {
background-color: #89dceb;
}
#pulseaudio {
background-color: #fab387;
}
#pulseaudio.bluetooth {
background-color: #f5c2e7;
}
#pulseaudio.muted {
background-color: #313244;
color: #cdd6f4;
}
#network {
background-color: #89b4fa;
}
#network.disconnected,#network.disabled {
background-color: #313244;
color: #cdd6f4;
}

329
config/waybar/style/style-colors-border.css

@ -1,329 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
/* background-color: rgba(26, 27, 38, 0.5); */
background-color: transparent;
color: #ffffff;
transition-property: background-color;
transition-duration: 0.5s;
/* border-top: 8px transparent; */
border-radius: 0px;
transition-duration: 0.5s;
margin: 0px 0px;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
window#waybar.hidden {
opacity: 0.1;
}
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: 0 0px;
color: #7984a4;
background-color: transparent;
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
/* Avoid rounded borders under each workspace name */
border: none;
border-radius: 0;
}
#workspaces button.focused {
background-color: transparent;
}
#workspace button.hover {
background-color: transparent;
}
#workspaces button.active {
color: white;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 10px;
color: #e5e5e5;
/* color: #bf616a; */
border-radius: 8px;
background-color: rgba(50, 50, 50, 0.1);
border: 1px solid #b4befe;
}
#workspaces {
border-radius: 6px;
padding: 0px 6px;
border: 1px solid #b4befe;
}
#cpu {
color: #fb958b;
padding: 3px;
border-radius: 8px;
background-color: rgba(50, 50, 50, 0.1);
border: 1px solid #b4befe;
}
#custom-cycle_wall,
#custom-updater {
color: #cba7f7;
padding: 3px;
border-radius: 8px;
background-color: rgba(50, 50, 50, 0.1);
border: 1px solid #b4befe;
}
#custom-menu {
color: #FFFFFF;
padding: 6px;
padding-right: 6px;
border-radius: 8px;
background-color: rgba(50, 50, 50, 0.1);
border: 1px solid #b4befe;
}
#memory {
color: #ebcb8b;
}
#custom-power {
color: #cc3436;
}
#custom-launcher {
background-color: #1b242b;
color: #6a92d7;
border-radius: 6px;
padding: 0 0px;
}
#custom-weather.severe {
color: #eb937d;
}
#custom-weather.sunny {
color: #c2ca76;
}
#custom-weather.clearNight {
color: #cad3f5;
}
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight {
color: #c2ddda;
}
#custom-weather.rainyDay,
#custom-weather.rainyNight {
color: #5aaca5;
}
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight {
color: #d6e7e5;
}
#custom-weather.default {
color: #ebecf0;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#pulseaudio {
color: #FFD580;
}
#wireplumber {
color: #FFD580;
}
#backlight {
/* color: #EBCB8B; */
color: #8fbcbb;
}
#clock {
color: #90EE90;
/* background-color: #14141e; */
}
#battery {
color: #c0caf5;
/* background-color: #90b1b1; */
}
#battery.charging,
#battery.full,
#battery.plugged {
color: #26a65b;
/* background-color: #26a65b; */
}
@keyframes blink {
to {
background-color: rgba(30, 34, 42, 0.5);
color: #abb2bf;
}
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: #000000;
}
#disk {
color: #f38ba8;
}
#bluetooth {
color: #7287fd;
}
#bluetooth.disconnected {
color: #f53c3c;
}
#network {
color: #b48ead;
}
#network.disconnected {
color: #f53c3c;
}
#custom-media {
background-color: #66cc99;
color: #2a5c45;
min-width: 100px;
}
#custom-media.custom-spotify {
background-color: #66cc99;
}
#custom-media.custom-vlc {
background-color: #ffa000;
}
#temperature.critical {
background-color: #eb4d4b;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#idle_inhibitor {
/*background-color: #2d3436;*/
}
#idle_inhibitor.activated {
/*background-color: #ecf0f1;*/
color: #2dcc36;
}
#temperature {
color: #ADD8E6;
}
#taskbar button.active {
background-color: #7f849c;
}

179
config/waybar/style/style-colors-line.css

@ -1,179 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
background:rgba (0, 0, 0, 0.5);
border-radius: 20px 20px 20px 20px;
}
#workspaces button {
/*padding: 2px 0px;*/
border-bottom: 1px;
color: #eceff4;
border-color: #d8dee9;
border-style: solid;
margin-top:2px;
}
#workspaces button.active {
border-color: #81a1c1;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 1px 4px;
border-bottom: 1px;
border-style: solid;
}
/* -----------------------------------------------------------------------------
* Module styles
* -------------------------------------------------------------------------- */
#clock {
color:#a3be8c;
}
#backlight {
color: #ebcb8b;
}
#battery {
color: #d8dee9;
}
#battery.charging {
color: #81a1c1;
}
@keyframes blink {
to {
color: #4c566a;
background-color: #eceff4;
}
}
#battery.critical:not(.charging) {
background: #bf616a;
color: #eceff4;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#cpu {
color:#a3be8c ;
}
#memory {
color: #d3869b;
}
#network.disabled {
color:#bf616a;
}
#network{
color:#a3be8c;
}
#network.disconnected {
color: #bf616a;
}
#pulseaudio {
color: #b48ead;
}
#pulseaudio.muted {
color: #3b4252;
}
#temperature {
color: #8fbcbb;
}
#temperature.critical {
color: #bf616a;
}
#idle_inhibitor {
color: #ebcb8b;
}
#tray {
}
#custom-menu,
#custom-power{
color: #cba6f7;
margin-top:2px;
}
#window{
border-style: hidden;
margin-top:1px;
}
#bluetooth{
color:#d08770;
}
#custom-weather{
color:#d08770;
}

342
config/waybar/style/style-colors.css

@ -1,342 +0,0 @@
@define-color critical #ff0000; /* critical color */
@define-color warning #f3f809; /* warning color */
@define-color fgcolor #ffffff; /* foreground color */
@define-color bgcolor #303030; /* background color */
@define-color bgcolor #222436; /* background color */
@define-color alert #df3320;
@define-color accent1 #ff7a93;
@define-color accent2 #b9f27c;
@define-color accent3 #ff9e64;
@define-color accent4 #bb9af7;
@define-color accent5 #7da6ff;
@define-color accent6 #0db9d7;
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
background-color: rgba(50, 50, 50, 0.0);
/*background-color: @bgcolor;*/
/* border-bottom: 0px solid rgba(100, 114, 125, 0.5); */
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
border-radius: 0;
}
window#waybar.hidden {
opacity: 0.1;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
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: 0 0 0 0;
margin: 0 0 0 0;
background-color: transparent;
color: #ffffff;
/*min-width: 36px;*/
/* Use box-shadow instead of border so the text isn't offset */
/* box-shadow: inset 0 -3px transparent;*/
/* border-radius: 0px; */
}
#workspaces button.active {
padding: 0 0 0 0;
margin: 0 0 0 0;
background-color: transparent;
color: #D3D3D3;
/*min-width: 36px;*/
/* Use box-shadow instead of border so the text isn't offset */
/* box-shadow: inset 0 -3px transparent;*/
/* border-radius: 0px; */
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
/* box-shadow: inset 0 -3px #ffffff; */
}
#workspaces button.focused {
background-color: #bbccdd;
color: #323232;
/* box-shadow: inset 0 -3px #ffffff; */
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#mode {
background-color: #64727D;
border-bottom: 3px solid #ffffff;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 10px;
/*margin: 4px 3px 5px 3px;*/
/*color: @fgcolor;*/
/* background-color: #bbccdd; */
background-color:transparent;
}
#window,
#workspaces {
margin: 0 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#clock {
color: @accent2;
}
#custom-updater {
color: #7287fd;
}
#battery {
color: @accent5;
}
/* #battery.charging {
color: #ffffff;
background-color: #26A65B;
} */
@keyframes blink {
to {
background-color: #ffffff;
color: #333333;
}
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: #000000;
}
#custom-menu{
color: #FFFFFF;
/*padding: 3px;*/
}
#cpu {
color: @accent1;
}
#memory {
color: @accent3;
}
#backlight {
color: #cdd6f4;
}
#bluetooth {
color: #1e66f5;
}
#network {
color: @accent3;
}
#network.disconnected {
color: @alert;
}
#pulseaudio {
color: @accent4;
}
#pulseaudio-muted {
color: @accent2;
}
#wireplumber {
color: @accent4;
}
#wireplumber-muted {
color: @accent2;
}
#pluseaudio-source-muted{
color: #a0a0a0;
}
#custom-power {
color: #cc3436;
}
#disk {
color: @accent5;
}
#custom-power_profile {
color: @accent3;
}
#custom-media {
background-color: #66cc99;
color: #2a5c45;
min-width: 100px;
}
#custom-weather {
color: #66cc99;
}
#custom-lock {
color: #ffa000;
}
#temperature {
color: @accent6;
/* background-color: #f0932b; */
}
#temperature.critical {
background-color: @critical;
}
#tray {
/* background-color: #505050; */
}
#idle_inhibitor {
color: #f9e2af;
/*background-color: #2d3436;*/
}
#idle_inhibitor.activated {
/*background-color: #ecf0f1;*/
color: #2dcc36;
/*color: #2d3436;*/
}
#taskbar button.active {
background-color: #7f849c;
}
#mpd {
color: #2a5c45;
}
#mpd.disconnected {
background-color: #f53c3c;
}
#mpd.stopped {
background-color: #90b1b1;
}
#mpd.paused {
background-color: #51a37a;
}
#custom-language {
/* background: #bbccdd;
color: #333333;
padding: 0 5px;
margin: 4px 3px 6px 3px; */
color: @accent5;
min-width: 16px;
}
#custom-separator {
color: #606060;
margin: 0 1px;
padding-bottom: 5px;
}

158
config/waybar/style/style-dark.css

@ -1,158 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
background: rgba(0, 0, 0, 0);
}
window#waybar.hidden {
opacity: 0.5;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
tooltip {
background: rgba(0, 0, 0, 0.6);
border-radius: 10px;
}
tooltip label {
color: #cba6f7;
margin-right: 2px;
margin-left: 2px;
}
/*-----module groups----*/
.modules-right {
background-color: rgba(0, 0, 0, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
.modules-center {
background-color: rgba(0, 0, 0, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
.modules-left {
background-color: rgba(0, 0, 0, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
#workspaces button {
color: #6E6A86;
}
#workspaces button.active {
color: #cba6f7;
border-radius: 15px 15px 15px 15px;
}
#workspaces button.focused {
color: #d8dee9;
}
#workspaces button.urgent {
color: #11111b;
border-radius: 10px;
}
#workspaces button:hover {
color: #9CCFD8;
border-radius: 15px;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
color: #cba7f7;
padding: 1px 4px;
border-radius: 8px;
}
#temperature.critical {
background-color: #ff0000;
}
@keyframes blink {
to {
color: #000000;
}
}
#taskbar button.active {
background-color: #7f849c;
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}

159
config/waybar/style/style-light.css

@ -1,159 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
window#waybar {
background: rgba(0, 0, 0, 0)
}
window#waybar.hidden {
opacity: 0.7;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
background-color: transparent;
}
tooltip {
background: rgba(236, 236, 236, 0.8);
border-radius: 10px;
}
tooltip label {
color: #373737;
margin-right: 2px;
margin-left: 2px;
}
/*-----module groups----*/
.modules-right {
background-color: rgba(232, 236, 241, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
.modules-center {
background-color: rgba(232, 236, 241, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
.modules-left {
background-color: rgba(232, 236, 241, 0.8);
border: 0px solid #b4befe;
border-radius: 10px;
}
#workspaces button {
color: #585b70;
}
#workspaces button.active {
color: #000000;
border-radius: 15px 15px 15px 15px;
}
#workspaces button.focused {
color: #000000;
}
#workspaces button.urgent {
color: #000000;
border-radius: 10px;
}
#workspaces button:hover {
color: #000000;
border-radius: 15px;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
color: #000000;
padding: 1px 4px;
border-radius: 8px;
}
#temperature.critical {
background-color: #ff0000;
}
@keyframes blink {
to {
color: #000000;
}
}
#taskbar button.active {
background-color: #585b70;
color: #cdd6f4;
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}

185
config/waybar/style/style-pywal.css

@ -1,185 +0,0 @@
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
* {
font-family: "JetBrainsMono Nerd Font";
font-weight: bold;
min-height: 0;
/* set font-size to 100% if font scaling is set to 1.00 using nwg-look */
font-size: 98%;
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
padding: 1px;
margin-top: 1px;
margin-bottom: 1px;
}
@import '../../.cache/wal/colors-waybar.css';
window#waybar {
background: transparent;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.empty #window {
padding: 0px;
margin: 0px;
border: 0px;
background-color: transparent;
}
window > box {
background: rgba(0, 0, 0, 0);
border-bottom: 1px solid rgba(0, 0, 0, 0);
color: @foreground;
}
window {
/*font-weight: bold;*/
}
tooltip {
background: rgba(0, 0, 0, 0.4);
opacity: 0.8;
border-radius: 10px;
border-width: 2px;
}
tooltip label{
color: @foreground;
}
/*-----module groups----*/
.modules-right {
background-color: rgba(0, 0, 0, 0.4);
border: 0.5px solid @color15;
border-radius: 10px;
}
.modules-center {
background-color: rgba(0, 0, 0, 0.4);
border: 0.5px solid @color15;
border-radius: 10px;
}
.modules-left {
background-color: rgba(0, 0, 0, 0.4);
border: 0.5px solid @color15;
border-radius: 10px;
}
/*-----modules indv----*/
#workspaces button {
color: @color1;
padding: 0px 0px;
background-color: rgba(0, 0, 0, 0);
transition: all 0.3s ease-in-out;
}
#workspaces button:hover {
box-shadow: inherit;
background-color: @color2;
}
#workspaces button.focused {
background-color: rgba(0,85,102,0);
}
#workspaces button.active {
color: @foreground;
/*background-color: rgba(0,85,102,0.3);*/
transition: all 0.3s ease-in-out;
}
#backlight,
#battery,
#bluetooth,
#cava,
#clock,
#cpu,
#disk,
#idle_inhibitor,
#keyboard-state label,
#keyboard-state label.locked,
#keyboard-state,
#memory,
#mode,
#mpd,
#network,
#pulseaudio,
#taskbar button,
#taskbar,
#temperature,
#tray,
#window,
#wireplumber,
#workspaces,
#custom-cycle_wall,
#custom-keybinds,
#custom-light_dark,
#custom-lock,
#custom-menu,
#custom-power_vertical,
#custom-power,
#custom-spotify,
#custom-updater,
#custom-weather,
#custom-weather.clearNight,
#custom-weather.cloudyFoggyDay,
#custom-weather.cloudyFoggyNight,
#custom-weather.default
#custom-weather.rainyDay,
#custom-weather.rainyNight,
#custom-weather.severe,
#custom-weather.showyIcyDay,
#custom-weather.snowyIcyNight,
#custom-weather.sunnyDay {
padding: 0px 6px;
}
#mode {
color: #cc3436;
font-weight: bold;
}
#custom-power {
/*background-color: rgba(0,119,179,0.6);*/
/*border-radius: 50px;*/
margin: 5px 5px;
padding: 1px 3px;
}
/*-----Indicators----*/
#idle_inhibitor.activated {
color: #2dcc36;
}
#pulseaudio.muted {
color: #cc3436;
}
#pulseaudio-microphone.muted {
color: #cc3436;
}
#temperature.critical {
color: #cc3436;
}
#waybar {
background-color: @color14;
color: @color3;
}
@keyframes blink {
to {
color: #000000;
}
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#taskbar button.active {
background-color: #7f849c;
}
#waybar.empty, #waybar.tiled, #waybar.floating {
background-color: transparent;
}
Loading…
Cancel
Save