54 changed files with 611 additions and 868 deletions
@ -0,0 +1,36 @@ |
|||||||
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ |
||||||
|
// ### TOP Simple ## // |
||||||
|
|
||||||
|
{ |
||||||
|
"include": "~/.config/waybar/modules", |
||||||
|
"layer": "top", |
||||||
|
"position": "bottom", |
||||||
|
//"mode": "dock", |
||||||
|
"exclusive": true, |
||||||
|
"passthrough": false, |
||||||
|
"gtk-layer-shell": true, |
||||||
|
"margin-left": 6, |
||||||
|
"margin-right": 6, |
||||||
|
"margin-top": 2, |
||||||
|
|
||||||
|
"modules-left": [ |
||||||
|
"idle_inhibitor", |
||||||
|
"group/mobo_drawer", |
||||||
|
"hyprland/workspaces#rw", |
||||||
|
"tray", |
||||||
|
"mpris", |
||||||
|
], |
||||||
|
|
||||||
|
"modules-center": [ |
||||||
|
"clock#2", |
||||||
|
"custom/swaync", |
||||||
|
], |
||||||
|
|
||||||
|
"modules-right": [ |
||||||
|
"hyprland/window", |
||||||
|
"battery", |
||||||
|
"group/audio", |
||||||
|
"custom/power", |
||||||
|
], |
||||||
|
} |
||||||
|
|
||||||
@ -0,0 +1,209 @@ |
|||||||
|
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */ |
||||||
|
/* Wallust - Box type */ |
||||||
|
|
||||||
|
@import '../../.config/waybar/wallust/colors-waybar.css'; |
||||||
|
|
||||||
|
* { |
||||||
|
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: 97%; |
||||||
|
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"'; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
window#waybar { |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
window#waybar.hidden { |
||||||
|
opacity: 0.2; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
window#waybar.empty #window { |
||||||
|
background:none; |
||||||
|
border-bottom-width: 5px; |
||||||
|
border-bottom-color: transparent; |
||||||
|
border-bottom-style: solid; |
||||||
|
} |
||||||
|
|
||||||
|
#window { |
||||||
|
padding-left: 10px; |
||||||
|
padding-right: 10px; |
||||||
|
border-radius: 10px; |
||||||
|
transition: none; |
||||||
|
color: transparent; |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
#taskbar button, |
||||||
|
#workspaces button { |
||||||
|
color: @foreground; |
||||||
|
box-shadow: none; |
||||||
|
text-shadow: none; |
||||||
|
padding: 0px; |
||||||
|
border-radius: 9px; |
||||||
|
padding-left: 4px; |
||||||
|
padding-right: 4px; |
||||||
|
animation: gradient_f 20s ease-in infinite; |
||||||
|
transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682); |
||||||
|
} |
||||||
|
|
||||||
|
#taskbar button.active, |
||||||
|
#workspaces button.active { |
||||||
|
color: @color12; |
||||||
|
background-color: @foreground; |
||||||
|
padding-left: 4px; |
||||||
|
padding-right: 8px; |
||||||
|
animation: gradient_f 20s ease-in infinite; |
||||||
|
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); |
||||||
|
} |
||||||
|
|
||||||
|
#taskbar button.focused, |
||||||
|
#workspaces button.focused { |
||||||
|
color: @color4; |
||||||
|
} |
||||||
|
|
||||||
|
#workspaces button.urgent { |
||||||
|
color: #11111b; |
||||||
|
border-radius: 10px; |
||||||
|
} |
||||||
|
|
||||||
|
#taskbar button:hover, |
||||||
|
#workspaces button:hover { |
||||||
|
color: @color4; |
||||||
|
padding-left: 2px; |
||||||
|
padding-right: 8px; |
||||||
|
animation: gradient_f 20s ease-in infinite; |
||||||
|
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682); |
||||||
|
} |
||||||
|
|
||||||
|
#backlight, |
||||||
|
#backlight-slider, |
||||||
|
#battery, |
||||||
|
#bluetooth, |
||||||
|
#clock, |
||||||
|
#cpu, |
||||||
|
#disk, |
||||||
|
#idle_inhibitor, |
||||||
|
#keyboard-state, |
||||||
|
#memory, |
||||||
|
#mode, |
||||||
|
#network, |
||||||
|
#power-profiles-daemon, |
||||||
|
#pulseaudio, |
||||||
|
#pulseaudio-slider, |
||||||
|
#taskbar, |
||||||
|
#temperature, |
||||||
|
#tray, |
||||||
|
#window, |
||||||
|
#wireplumber, |
||||||
|
#workspaces, |
||||||
|
#custom-backlight, |
||||||
|
#custom-cycle_wall, |
||||||
|
#custom-hint, |
||||||
|
#custom-keyboard, |
||||||
|
#custom-light_dark, |
||||||
|
#custom-lock, |
||||||
|
#custom-menu, |
||||||
|
#custom-power_vertical, |
||||||
|
#custom-power, |
||||||
|
#custom-swaync, |
||||||
|
#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-top: 4px; |
||||||
|
padding-bottom: 4px; |
||||||
|
padding-left: 8px; |
||||||
|
padding-right: 10px; |
||||||
|
border-radius: 10px; |
||||||
|
transition: none; |
||||||
|
color: @foreground; |
||||||
|
background: @color0; |
||||||
|
border-bottom-width: 5px; |
||||||
|
border-bottom-color: @color12; |
||||||
|
border-bottom-style: solid; |
||||||
|
} |
||||||
|
|
||||||
|
#custom-power { |
||||||
|
padding-right: 2px; |
||||||
|
} |
||||||
|
|
||||||
|
#network { |
||||||
|
padding-right: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
#mpris { |
||||||
|
padding-right: 8px; |
||||||
|
padding-left: 8px; |
||||||
|
} |
||||||
|
#battery.critical:not(.charging) { |
||||||
|
background-color: #ffffff; |
||||||
|
color: #000000; |
||||||
|
animation-name: blink; |
||||||
|
animation-duration: 0.5s; |
||||||
|
animation-timing-function: linear; |
||||||
|
animation-iteration-count: infinite; |
||||||
|
animation-direction: alternate; |
||||||
|
border-bottom-width: 5px; |
||||||
|
border-bottom-color: @color12; |
||||||
|
border-bottom-style: solid; |
||||||
|
} |
||||||
|
|
||||||
|
@keyframes blink { |
||||||
|
to { |
||||||
|
background-color: #ffffff; |
||||||
|
color: #000000; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
#pulseaudio-slider slider { |
||||||
|
min-width: 0px; |
||||||
|
min-height: 0px; |
||||||
|
opacity: 10; |
||||||
|
background-image: none; |
||||||
|
border: none; |
||||||
|
box-shadow: none; |
||||||
|
} |
||||||
|
|
||||||
|
#pulseaudio-slider trough { |
||||||
|
min-width: 80px; |
||||||
|
min-height: 5px; |
||||||
|
border-radius: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
#pulseaudio-slider highlight { |
||||||
|
min-height: 10px; |
||||||
|
border-radius: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
#backlight-slider slider { |
||||||
|
min-width: 0px; |
||||||
|
min-height: 0px; |
||||||
|
opacity: 0; |
||||||
|
background-image: none; |
||||||
|
border: none; |
||||||
|
box-shadow: @color12; |
||||||
|
} |
||||||
|
|
||||||
|
#backlight-slider trough { |
||||||
|
min-width: 80px; |
||||||
|
min-height: 10px; |
||||||
|
border-radius: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
#backlight-slider highlight { |
||||||
|
min-width: 10px; |
||||||
|
border-radius: 5px; |
||||||
|
} |
||||||
Loading…
Reference in new issue