Initial commit
This commit is contained in:
312
waybar/colors/Catppuccin-Latte.css
Executable file
312
waybar/colors/Catppuccin-Latte.css
Executable file
@@ -0,0 +1,312 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
/* Catppuccin Latte */
|
||||
|
||||
* {
|
||||
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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
@import "colors/catppuccin-themes/latte.css";
|
||||
|
||||
window#waybar {
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
/*background: transparent;*/
|
||||
border-bottom: 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,
|
||||
#backlight-slider,
|
||||
#battery,
|
||||
#bluetooth,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#idle_inhibitor,
|
||||
#keyboard-state,
|
||||
#memory,
|
||||
#mode,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar button,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#custom-keyboard,
|
||||
#custom-light_dark,
|
||||
#custom-lock,
|
||||
#custom-menu,
|
||||
#custom-power,
|
||||
#custom-speaker,
|
||||
#custom-power_vertical,
|
||||
#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: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 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;
|
||||
}
|
||||
|
||||
#bluetooth {
|
||||
color: @blue;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: @yellow;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: @green;
|
||||
}
|
||||
|
||||
#custom-keyboard,
|
||||
#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 {
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
border-radius: 10px;
|
||||
color: @overlay0;
|
||||
background-color: @surface0;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.persistent {
|
||||
color: @surface1;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @peach;
|
||||
border-radius: 10px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: @red;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
#custom-cava_mviz {
|
||||
color: @pink;
|
||||
}
|
||||
|
||||
#custom-menu {
|
||||
color: @rosewater;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: @red;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
317
waybar/colors/Catppuccin-Mocha.css
Executable file
317
waybar/colors/Catppuccin-Mocha.css
Executable file
@@ -0,0 +1,317 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
/* Catppuccin Mocha */
|
||||
|
||||
|
||||
* {
|
||||
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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
@import "colors/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-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
border-radius: 10px;
|
||||
|
||||
}
|
||||
|
||||
.modules-left, .modules-right {
|
||||
border: 1px solid @blue;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#backlight,
|
||||
#backlight-slider,
|
||||
#battery,
|
||||
#bluetooth,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#idle_inhibitor,
|
||||
#keyboard-state,
|
||||
#memory,
|
||||
#mode,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar button,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
color: @blue;
|
||||
}
|
||||
|
||||
#bluetooth,
|
||||
#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;
|
||||
}
|
||||
|
||||
#custom-keyboard,
|
||||
#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 {
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
border-radius: 10px;
|
||||
color: @overlay0;
|
||||
background-color: @surface0;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.persistent {
|
||||
color: @surface1;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @peach;
|
||||
border-radius: 10px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: @red;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#custom-cava_mviz {
|
||||
color: @pink;
|
||||
}
|
||||
|
||||
#custom-menu {
|
||||
color: @rosewater;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: @red;
|
||||
}
|
||||
|
||||
#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;
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
314
waybar/colors/Nova-dark.css
Executable file
314
waybar/colors/Nova-dark.css
Executable file
@@ -0,0 +1,314 @@
|
||||
/* Thanks 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: 97%;
|
||||
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
|
||||
padding: 1px;
|
||||
|
||||
}
|
||||
|
||||
@import '../../.cache/wal/colors-waybar.css';
|
||||
|
||||
window#waybar {
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
background: transparent;
|
||||
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: @background;
|
||||
border: 1.2px solid @color6;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
border-radius: 10px;
|
||||
|
||||
}
|
||||
|
||||
.modules-left, .modules-right {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#backlight,
|
||||
#backlight-slider,
|
||||
#battery,
|
||||
#bluetooth,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#idle_inhibitor,
|
||||
#keyboard-state,
|
||||
#memory,
|
||||
#mode,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar button,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
color: @color2;
|
||||
}
|
||||
|
||||
#bluetooth,
|
||||
#backlight {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#battery {
|
||||
color: @cursor;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: @color5;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background-color: @color5;
|
||||
color: rgba(255,255,255,0.8);
|
||||
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: @cursor;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: @color1 ;
|
||||
}
|
||||
|
||||
#custom-keyboard,
|
||||
#memory {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#disk {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#temperature {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: @color5;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
}
|
||||
|
||||
#keyboard-state {
|
||||
color: @color2;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
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.6s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
border-radius: 10px;
|
||||
/* color: @overlay0; */
|
||||
background-color: rgba(255,255,255,0.2);
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.persistent {
|
||||
color: rgba(255, 255, 255, 0.2);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @color6;
|
||||
border-radius: 10px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: @color5;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.4s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.4s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#custom-cava_mviz {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#custom-menu {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#custom-updater {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#custom-light_dark {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#custom-weather {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#custom-lock {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: @color6;
|
||||
}
|
||||
|
||||
#pulseaudio.bluetooth {
|
||||
color: @color6;
|
||||
}
|
||||
#pulseaudio.muted {
|
||||
color: @color8;
|
||||
}
|
||||
|
||||
#window {
|
||||
color: @color1;
|
||||
}
|
||||
|
||||
#custom-waybar-mpris {
|
||||
color:@color1;
|
||||
}
|
||||
|
||||
#network {
|
||||
color: @cursor;
|
||||
}
|
||||
|
||||
#network.disconnected,
|
||||
#network.disabled {
|
||||
background-color: @color5;
|
||||
color: @text;
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
379
waybar/colors/[Colored] Translucent.css
Executable file
379
waybar/colors/[Colored] Translucent.css
Executable file
@@ -0,0 +1,379 @@
|
||||
@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 💫 ---- */
|
||||
/* Translucent */
|
||||
|
||||
* {
|
||||
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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: rgba(0,0,0,0.3);
|
||||
color: #ffffff;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
padding: 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 {
|
||||
background-color: transparent;
|
||||
color: #ffffff;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: transparent;
|
||||
color: @accent1;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
color: @accent3;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background-color: #bbccdd;
|
||||
color: @accent2;
|
||||
/* box-shadow: inset 0 -3px #ffffff; */
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#mode {
|
||||
background-color: #64727D;
|
||||
border-bottom: 3px solid #ffffff;
|
||||
}
|
||||
|
||||
#backlight,
|
||||
#backlight-slider,
|
||||
#battery,
|
||||
#bluetooth,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#idle_inhibitor,
|
||||
#keyboard-state,
|
||||
#memory,
|
||||
#mode,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
/* If workspaces is the leftmost module, omit left margin */
|
||||
.modules-left > widget:first-child > #workspaces {
|
||||
}
|
||||
|
||||
/* If workspaces is the rightmost module, omit right margin */
|
||||
.modules-right > widget:last-child > #workspaces {
|
||||
}
|
||||
|
||||
#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;*/
|
||||
}
|
||||
|
||||
#custom-keyboard,
|
||||
#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;
|
||||
}
|
||||
|
||||
#keyboard-state,
|
||||
#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;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#mpd {
|
||||
color: #2a5c45;
|
||||
}
|
||||
|
||||
#mpd.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
#mpd.stopped {
|
||||
background-color: #90b1b1;
|
||||
}
|
||||
|
||||
#mpd.paused {
|
||||
background-color: #51a37a;
|
||||
}
|
||||
|
||||
#custom-language {
|
||||
color: @accent5;
|
||||
min-width: 16px;
|
||||
}
|
||||
|
||||
#custom-separator {
|
||||
color: #606060;
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
238
waybar/colors/[Dark] Obsidian Edge.css
Executable file
238
waybar/colors/[Dark] Obsidian Edge.css
Executable file
@@ -0,0 +1,238 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
/* Dark - Obsidian Edge */
|
||||
|
||||
@import '../../.cache/wal/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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: black;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
color: @foreground;
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @foreground;
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
/*-----module groups----*/
|
||||
.modules-right {
|
||||
border: 0px solid #b4befe;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.modules-center {
|
||||
border: 0px solid #b4befe;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
border: 0px solid #b4befe;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @color2;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @foreground;
|
||||
border-radius: 15px 15px 15px 15px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #d8dee9;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #11111b;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: #9CCFD8;
|
||||
border-radius: 15px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
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,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cava_mviz,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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 {
|
||||
color: @foreground;
|
||||
border-radius: 8px;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
background-color: #7f849c;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: #f53c3c;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
213
waybar/colors/[Light] Obsidian Glow.css
Executable file
213
waybar/colors/[Light] Obsidian Glow.css
Executable file
@@ -0,0 +1,213 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
/* Light - Obsidian Glow */
|
||||
|
||||
* {
|
||||
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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
/* background-color: rgba(66,66,66,0.5); */ /* transparent */
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: white;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: #373737;
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: #585b70;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #000000;
|
||||
border-radius: 15px 15px 15px 15px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #000000;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: #000000;
|
||||
border-radius: 15px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
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,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cava_mviz,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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 {
|
||||
color: #000000;
|
||||
border-radius: 8px;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
background-color: #585b70;
|
||||
color: #cdd6f4;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: #f53c3c;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#pulseaudio-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 5px;
|
||||
border-radius: 5px;
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
#pulseaudio-slider highlight {
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #ba5663;
|
||||
}
|
||||
|
||||
#backlight-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: #ba5663;
|
||||
}
|
||||
270
waybar/colors/[Pywal] Chroma Tally.css
Executable file
270
waybar/colors/[Pywal] Chroma Tally.css
Executable file
@@ -0,0 +1,270 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
/* Pywal - Chroma Tally */
|
||||
|
||||
@import '../../.cache/wal/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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba (0, 0, 0, 0.5);
|
||||
border-radius: 12px;
|
||||
border-bottom: 2px;
|
||||
border-style: solid;
|
||||
border-color: @color2;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: #eceff4;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
border-radius: 15px;
|
||||
background-color: @color2;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: @color2;
|
||||
background-color: rgba(0,153,153,0);
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
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,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------------------------------
|
||||
* 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;
|
||||
}
|
||||
|
||||
#disk {
|
||||
color: #94e2d5;
|
||||
}
|
||||
|
||||
#custom-keyboard,
|
||||
#memory {
|
||||
color: #d3869b;
|
||||
}
|
||||
|
||||
#network.disabled {
|
||||
color:#bf616a;
|
||||
}
|
||||
|
||||
#network{
|
||||
color:#a3be8c;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
color: #bf616a;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #04a5e5;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: #9ca0b0;
|
||||
}
|
||||
|
||||
#custom-light_dark,
|
||||
#temperature {
|
||||
color: #7287fd;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
color: #bf616a;
|
||||
}
|
||||
|
||||
#keyboard-state,
|
||||
#idle_inhibitor {
|
||||
color: #ebcb8b;
|
||||
}
|
||||
|
||||
#tray {
|
||||
}
|
||||
|
||||
#custom-swaync,
|
||||
#custom-menu {
|
||||
color: yellow;
|
||||
}
|
||||
#custom-power{
|
||||
color: #eba0ac;
|
||||
}
|
||||
|
||||
#window{
|
||||
border-style: hidden;
|
||||
}
|
||||
|
||||
#custom-lock,
|
||||
#bluetooth{
|
||||
color:#d08770;
|
||||
}
|
||||
|
||||
#custom-cava_mviz{
|
||||
color: @color2;
|
||||
}
|
||||
|
||||
#custom-weather{
|
||||
color:#d08770;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
background-color: #7f849c;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
247
waybar/colors/[Pywal] Simple.css
Executable file
247
waybar/colors/[Pywal] Simple.css
Executable file
@@ -0,0 +1,247 @@
|
||||
/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
/* pywal - Simple */
|
||||
|
||||
*{
|
||||
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"';
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
@import '../../.cache/wal/colors-waybar.css';
|
||||
|
||||
window#waybar {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#waybar.empty, #waybar.tiled, #waybar.floating {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
color: @color2;
|
||||
background: @color0;
|
||||
opacity: 0.8;
|
||||
border-radius: 10px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: @color15;
|
||||
}
|
||||
|
||||
/*-----module groups----*/
|
||||
.modules-right {
|
||||
background-color: @color0;
|
||||
border: 0.5px solid @color15;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
.modules-center {
|
||||
background-color: @color0;
|
||||
border: 0.5px solid @color15;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
.modules-left {
|
||||
background-color: @color0;
|
||||
border: 0.5px solid @color15;
|
||||
border-radius: 10px;
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
/*-----modules indv----*/
|
||||
|
||||
#workspaces button {
|
||||
color: @color2;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @foreground;
|
||||
background-color: @color2;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: @color4;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #11111b;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: @color4;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
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,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#pulseaudio-slider,
|
||||
#taskbar button,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-backlight,
|
||||
#custom-cava_mviz,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#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 {
|
||||
color: @color2;
|
||||
padding-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#mode {
|
||||
color: #cc3436;
|
||||
font-weight: bold;
|
||||
}
|
||||
#custom-power {
|
||||
/*background-color: rgba(0,119,179,0.6);*/
|
||||
/*border-radius: 50px;*/
|
||||
padding: 1px 3px;
|
||||
}
|
||||
/*-----Indicators----*/
|
||||
#idle_inhibitor.activated {
|
||||
color: #2dcc36;
|
||||
}
|
||||
#pulseaudio.muted {
|
||||
color: #cc3436;
|
||||
}
|
||||
#pulseaudio-microphone.muted {
|
||||
color: #cc3436;
|
||||
}
|
||||
#temperature.critical {
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
color: @foreground;
|
||||
background-color: @color2;
|
||||
border-radius: 30px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
border-radius: 15px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: #f53c3c;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
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: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
219
waybar/colors/[Transparent] Crystal Clear.css
Executable file
219
waybar/colors/[Transparent] Crystal Clear.css
Executable file
@@ -0,0 +1,219 @@
|
||||
/* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
/* ..........................................*/
|
||||
/* .......Crystal Clear....................... */
|
||||
/* ......................................... */
|
||||
/* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
*{
|
||||
font-family: "JetBrains Mono 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"';
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background:transparent;
|
||||
border-radius: 1px;
|
||||
color: whitesmoke;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.5;
|
||||
}
|
||||
window#waybar.empty {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: #1e1e2e;
|
||||
border-radius: 10px;
|
||||
border-width: 2px;
|
||||
border-style: solid;
|
||||
border-color: #11111b;
|
||||
color: #cba6f7;
|
||||
}
|
||||
|
||||
/*-----module groups----*/
|
||||
.modules-right {
|
||||
|
||||
}
|
||||
|
||||
.modules-center {
|
||||
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: #6E6A86;
|
||||
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);
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: whitesmoke;
|
||||
border-radius: 15px 15px 15px 15px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #d8dee9;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #11111b;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: whitesmoke;
|
||||
border-radius: 15px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#backlight,
|
||||
#battery,
|
||||
#bluetooth,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#idle_inhibitor,
|
||||
#keyboard-state,
|
||||
#memory,
|
||||
#mode,
|
||||
#mpris,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#taskbar,
|
||||
#temperature,
|
||||
#tray,
|
||||
#window,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#custom-cycle_wall,
|
||||
#custom-keybinds,
|
||||
#custom-keyboard,
|
||||
#custom-light_dark,
|
||||
#custom-lock,
|
||||
#custom-menu,
|
||||
#custom-power_vertical,
|
||||
#custom-power,
|
||||
#custom-swaync,
|
||||
#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-top: 3px;
|
||||
padding-bottom: 3px;
|
||||
padding-right: 6px;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
#temperature.critical {
|
||||
background-color: #ff0000;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
color: #000000;
|
||||
}
|
||||
}
|
||||
#taskbar button:hover {
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
background-color: #7f849c;
|
||||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
animation: gradient_f 20s ease-in infinite;
|
||||
transition: all 0.3s cubic-bezier(.55,-0.68,.48,1.682);
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: #f53c3c;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
#pulseaudio-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#pulseaudio-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
#pulseaudio-slider highlight {
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: wheat;
|
||||
}
|
||||
|
||||
#backlight-slider slider {
|
||||
min-width: 0px;
|
||||
min-height: 0px;
|
||||
opacity: 0;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#backlight-slider trough {
|
||||
min-width: 80px;
|
||||
min-height: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
#backlight-slider highlight {
|
||||
min-width: 10px;
|
||||
border-radius: 5px;
|
||||
background-color: wheat;
|
||||
}
|
||||
38
waybar/colors/catppuccin-themes/mocha.css
Executable file
38
waybar/colors/catppuccin-themes/mocha.css
Executable file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
*
|
||||
* 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;
|
||||
|
||||
38
waybar/config
Executable file
38
waybar/config
Executable file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
// "layer": "top", // Waybar at top layer
|
||||
|
||||
// "position": "bottom", // Waybar position (top|bottom|left|right)
|
||||
|
||||
"height": 30, // Waybar height (to be removed for auto height)
|
||||
// "width": 1280, // Waybar width
|
||||
|
||||
"spacing": 0, // Gaps between modules (4px)
|
||||
// Choose the order of the modules
|
||||
|
||||
// Load Modules
|
||||
"include": [
|
||||
"~/.config/ml4w/settings/waybar-quicklinks.json",
|
||||
"~/.config/waybar/modules.json"
|
||||
],
|
||||
"modules-left": [
|
||||
// "custom/appmenu",
|
||||
// "group/quicklinks",
|
||||
"hyprland/window"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
// "mpd",
|
||||
"pulseaudio",
|
||||
// "network",
|
||||
// "cpu",
|
||||
// "memory",
|
||||
// "keyboard-state",
|
||||
"battery",
|
||||
// "tray",
|
||||
"hyprland/language",
|
||||
"clock"
|
||||
// "custom/exit"
|
||||
]
|
||||
}
|
||||
218
waybar/modules.json
Executable file
218
waybar/modules.json
Executable file
@@ -0,0 +1,218 @@
|
||||
// __ __ _ _
|
||||
// | \/ | ___ __| |_ _| | ___ ___
|
||||
// | |\/| |/ _ \ / _` | | | | |/ _ \/ __|
|
||||
// | | | | (_) | (_| | |_| | | __/\__ \
|
||||
// |_| |_|\___/ \__,_|\__,_|_|\___||___/
|
||||
//
|
||||
//
|
||||
// by Stephan Raabe (2023)
|
||||
// -----------------------------------------------------
|
||||
//
|
||||
{
|
||||
// Workspaces
|
||||
"hyprland/workspaces" : {
|
||||
"on-click": "activate",
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{}",
|
||||
"format-icons": {
|
||||
"urgent": "",
|
||||
"active": "",
|
||||
"default": ""
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
}
|
||||
},
|
||||
|
||||
// Hyprland Window
|
||||
"hyprland/window": {
|
||||
"rewrite": {
|
||||
"(.*) - (.*) - Visual Studio Code": "$1 - VSCode",
|
||||
"(.*) — Zen Browser": "$1",
|
||||
"Alacritty": "Terminal"
|
||||
},
|
||||
"separate-outputs": true
|
||||
},
|
||||
|
||||
// Rofi Application Launcher
|
||||
"custom/appmenu": {
|
||||
"format": "Apps",
|
||||
"tooltip-format": "Left: Open the application launcher\nRight: Show all keybindings",
|
||||
"on-click": "rofi -show drun -replace",
|
||||
"on-click-right": "~/.config/ml4w/scripts/keybindings.sh",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// Power Menu
|
||||
"custom/exit": {
|
||||
"format": "",
|
||||
"tooltip-format": "Powermenu",
|
||||
"on-click": "~/.config/ml4w/scripts/wlogout.sh",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// Keyboard State
|
||||
"keyboard-state": {
|
||||
"numlock": true,
|
||||
"capslock": true,
|
||||
"format": "{name} {icon}",
|
||||
"format-icons": {
|
||||
"locked": "",
|
||||
"unlocked": ""
|
||||
}
|
||||
},
|
||||
|
||||
// System tray
|
||||
"tray": {
|
||||
// "icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
// Clock
|
||||
"clock": {
|
||||
"timezone": "Europe/Moscow",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt>{calendar}</tt>",
|
||||
"format": "{:%R | %d %b}",
|
||||
"format-alt": "{:%d.%m.%Y}"
|
||||
},
|
||||
|
||||
// System
|
||||
"custom/system": {
|
||||
"format": "",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
// CPU
|
||||
"cpu": {
|
||||
"format": "/ C {usage}% ",
|
||||
"on-click": "alacritty -e htop"
|
||||
},
|
||||
|
||||
// Memory
|
||||
"memory": {
|
||||
"format": "/ M {}% ",
|
||||
"on-click": "alacritty -e htop"
|
||||
},
|
||||
|
||||
// Harddisc space used
|
||||
"disk": {
|
||||
"interval": 30,
|
||||
"format": "D {percentage_used}% ",
|
||||
"path": "/",
|
||||
"on-click": "alacritty -e htop"
|
||||
},
|
||||
|
||||
"hyprland/language": {
|
||||
"format": "{short}",
|
||||
"format-alt": "{long}"
|
||||
},
|
||||
|
||||
// Group Hardware
|
||||
"group/hardware": {
|
||||
"orientation": "inherit",
|
||||
"drawer": {
|
||||
"transition-duration": 300,
|
||||
"children-class": "not-memory",
|
||||
"transition-left-to-right": false
|
||||
},
|
||||
"modules": [
|
||||
"custom/system",
|
||||
"disk",
|
||||
"cpu",
|
||||
"memory",
|
||||
"hyprland/language"
|
||||
]
|
||||
},
|
||||
|
||||
// Network
|
||||
"network": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": " {signalStrength}%",
|
||||
"format-ethernet": " {ipaddr}",
|
||||
"format-disconnected": "Not connected", //An empty format will hide the module.
|
||||
"tooltip-format": " {ifname} via {gwaddri}",
|
||||
"tooltip-format-wifi": " {essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": " {ifname} ({ipaddr}/{cidr})",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
"max-length": 50,
|
||||
"on-click": "alacritty -e nmtui"
|
||||
},
|
||||
|
||||
// Battery
|
||||
"battery": {
|
||||
"states": {
|
||||
// "good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-alt": "{icon} {time}",
|
||||
// "format-good": "", // An empty format will hide the module
|
||||
// "format-full": "",
|
||||
"format-icons": [" ", " ", " ", " ", " "]
|
||||
},
|
||||
|
||||
// Pulseaudio
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth-muted": " {icon} {format_source}",
|
||||
"format-muted": " {format_source}",
|
||||
"format-source": "{volume}% ",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", " ", " "]
|
||||
},
|
||||
"on-click": "pavucontrol",
|
||||
"on-click-right": "pactl set-sink-mute @DEFAULT_SINK@ toggle"
|
||||
},
|
||||
|
||||
// Bluetooth
|
||||
"bluetooth": {
|
||||
"format-disabled": "",
|
||||
"format-off": "",
|
||||
"interval": 30,
|
||||
"on-click": "blueman-manager",
|
||||
"format-no-controller": ""
|
||||
},
|
||||
|
||||
// Other
|
||||
"user": {
|
||||
"format": "{user}",
|
||||
"interval": 60,
|
||||
"icon": false,
|
||||
},
|
||||
|
||||
// Idle Inhibator
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"tooltip": true,
|
||||
"format-icons":{
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
},
|
||||
"on-click-right": "hyprlock"
|
||||
},
|
||||
|
||||
"custom/brightness": {
|
||||
"format": "{}%",
|
||||
"exec": "expr $(brightnessctl g) / 960",
|
||||
"on-scroll-up": "brightnessctl s $(expr $(brightnessctl g) + 960)",
|
||||
"on-scroll-down": "brightnessctl s $(expr $(brightnessctl g) - 960)",
|
||||
"interval": 1
|
||||
},
|
||||
|
||||
"custom/weather": {
|
||||
"exec": "curl -s 'wttr.in/Moscow?format=1'"
|
||||
}
|
||||
}
|
||||
4
waybar/scripts/locale.sh
Executable file
4
waybar/scripts/locale.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# Shows current locale (e.g., en_US.UTF-8)
|
||||
|
||||
echo $LANG | cut -d. -f1
|
||||
361
waybar/style.css
Executable file
361
waybar/style.css
Executable file
@@ -0,0 +1,361 @@
|
||||
/*
|
||||
* __ __ _ ____ _ _
|
||||
* \ \ / /_ _ _ _| |__ __ _ _ __ / ___|| |_ _ _| | ___
|
||||
* \ \ /\ / / _` | | | | '_ \ / _` | '__| \___ \| __| | | | |/ _ \
|
||||
* \ V V / (_| | |_| | |_) | (_| | | ___) | |_| |_| | | __/
|
||||
* \_/\_/ \__,_|\__, |_.__/ \__,_|_| |____/ \__|\__, |_|\___|
|
||||
* |___/ |___/
|
||||
*
|
||||
* by Stephan Raabe (2024)
|
||||
* -----------------------------------------------------
|
||||
*/
|
||||
|
||||
@define-color backgroundlight #170D1F;
|
||||
@define-color backgrounddark #170D1F;
|
||||
@define-color workspacesbackground1 #212233;
|
||||
@define-color workspacesbackground2 #170D1F;
|
||||
@define-color bordercolor #C7C8C2;
|
||||
@define-color textcolor1 #C7C8C2;
|
||||
@define-color textcolor2 #C7C8C2;
|
||||
@define-color textcolor3 #C7C8C2;
|
||||
@define-color iconcolor #FFFFFF;
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* General
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
* {
|
||||
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: rgba(0,0,0,0.2);
|
||||
border-bottom: 0px solid #ffffff;
|
||||
color: #FFFFFF;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Workspaces
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#workspaces {
|
||||
margin: 5px 1px 6px 1px;
|
||||
padding: 0px 1px;
|
||||
border: 0px;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
font-size: 16px;
|
||||
color: @textcolor1;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0px 5px;
|
||||
margin: 4px 3px;
|
||||
border-radius: 15px;
|
||||
border: 0px;
|
||||
color: @textcolor3;
|
||||
transition: all 0.3s ease-in-out;
|
||||
box-shadow: 0 0;
|
||||
text-shadow: 0 0;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground2;
|
||||
min-width: 40px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: @textcolor1;
|
||||
background: @workspacesbackground1;
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Tooltips
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
tooltip {
|
||||
border-radius: 10px;
|
||||
background-color: @backgroundlight;
|
||||
opacity:0.9;
|
||||
padding:20px;
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
tooltip label {
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Window
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#window {
|
||||
background: @backgroundlight;
|
||||
margin: 10px 15px 10px 10px;
|
||||
padding: 2px 10px 0px 10px;
|
||||
border-radius: 12px;
|
||||
color: @textcolor2;
|
||||
font-size: 16px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
background-color:transparent;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Taskbar
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#taskbar {
|
||||
background: @backgroundlight;
|
||||
margin: 6px 15px 6px 0px;
|
||||
padding:0px;
|
||||
border-radius: 15px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
border: 3px solid @backgroundlight;
|
||||
}
|
||||
|
||||
#taskbar button {
|
||||
margin:0;
|
||||
border-radius: 15px;
|
||||
padding: 0px 5px 0px 5px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Modules
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
.modules-left > widget:first-child > #workspaces {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.modules-right > widget:last-child > #workspaces {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Quicklinks
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-browser,
|
||||
#custom-filemanager,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#battery,
|
||||
#custom-appmenu,
|
||||
#clock {
|
||||
margin-right: 20px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
color: @iconcolor;
|
||||
padding: 4px 10px 2px 10px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#custom-quicklink1,
|
||||
#custom-quicklink2,
|
||||
#custom-quicklink3,
|
||||
#custom-quicklink4,
|
||||
#custom-quicklink5,
|
||||
#custom-quicklink6,
|
||||
#custom-quicklink7,
|
||||
#custom-quicklink8,
|
||||
#custom-quicklink9,
|
||||
#custom-quicklink10 {
|
||||
padding:0px;
|
||||
margin-right: 7px;
|
||||
font-size:20px;
|
||||
color: @workspacesbackground2;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Modules
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-appmenu {
|
||||
background-color: @backgrounddark;
|
||||
color: @textcolor1;
|
||||
border-radius: 15px;
|
||||
margin: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Custom Exit
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#custom-exit {
|
||||
margin: 2px 16px 0px 0px;
|
||||
padding:0px;
|
||||
font-size:20px;
|
||||
color: @iconcolor;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Hardware Group
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#disk,#memory,#cpu,#language {
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
font-size:16px;
|
||||
color:@iconcolor;
|
||||
}
|
||||
|
||||
#language {
|
||||
margin-right: 10px;
|
||||
|
||||
border-radius: 15px;
|
||||
margin: 10px 10px 10px 0;
|
||||
padding: 4px 10px 2px 10px;
|
||||
color:@textcolor1;
|
||||
background-color:@backgrounddark;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Clock
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#clock {
|
||||
background-color: @backgrounddark;
|
||||
font-size: 16px;
|
||||
color: @textcolor1;
|
||||
border-radius: 15px;
|
||||
margin: 10px 14px 10px 0px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Pulseaudio
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#pulseaudio {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
margin: 10px 10px 10px 0px;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
background-color: @backgrounddark;
|
||||
color: @textcolor1;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Network
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#network {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
margin: 10px 10px 10px 0px;
|
||||
}
|
||||
|
||||
#network.ethernet {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
#network.wifi {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Bluetooth
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#bluetooth, #bluetooth.on, #bluetooth.connected {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
margin: 10px 15px 10px 0px;
|
||||
}
|
||||
|
||||
#bluetooth.off {
|
||||
background-color: transparent;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Battery
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#battery {
|
||||
background-color: @backgroundlight;
|
||||
font-size: 16px;
|
||||
color: @textcolor2;
|
||||
border-radius: 15px;
|
||||
margin: 10px 15px 10px 0px;
|
||||
}
|
||||
|
||||
#battery.charging, #battery.plugged {
|
||||
color: @textcolor2;
|
||||
background-color: @backgroundlight;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: @backgroundlight;
|
||||
color: @textcolor2;
|
||||
}
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
background-color: #f53c3c;
|
||||
color: @textcolor3;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Tray
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
#tray {
|
||||
margin:0px 10px 0px 0px;
|
||||
}
|
||||
|
||||
#tray > .passive {
|
||||
-gtk-icon-effect: dim;
|
||||
}
|
||||
|
||||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* Other
|
||||
* ----------------------------------------------------- */
|
||||
|
||||
label:focus {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
background-color: #90b1b1;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #2980b9;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
background-color: #f53c3c;
|
||||
}
|
||||
|
||||
76
waybar/themes/[BOT & Left] SouthWest
Executable file
76
waybar/themes/[BOT & Left] SouthWest
Executable file
@@ -0,0 +1,76 @@
|
||||
/* ---- 💫 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": 2,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"cpu",
|
||||
"temperature",
|
||||
"memory",
|
||||
"disk",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
//"hyprland/window",
|
||||
"hyprland/workspaces#roman",
|
||||
],
|
||||
|
||||
"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": 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": [
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"custom/light_dark",
|
||||
],
|
||||
|
||||
}]
|
||||
76
waybar/themes/[BOT & Right] SouthEast
Executable file
76
waybar/themes/[BOT & Right] SouthEast
Executable file
@@ -0,0 +1,76 @@
|
||||
/* ---- 💫 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": 2,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"cpu",
|
||||
"temperature",
|
||||
"memory",
|
||||
"disk",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
//"hyprland/window",
|
||||
"hyprland/workspaces#roman",
|
||||
],
|
||||
|
||||
"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": [
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"custom/light_dark",
|
||||
],
|
||||
|
||||
}]
|
||||
176
waybar/themes/[BOT] Camellia
Executable file
176
waybar/themes/[BOT] Camellia
Executable file
@@ -0,0 +1,176 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............CAMELLIA.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "bottom",
|
||||
"spacing": 4,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
//"margin-top": 0,
|
||||
//"margin-bottom": 0,
|
||||
//"margin-left": 0,
|
||||
//"margin-right": 0,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces#cam",
|
||||
"custom/separator#line",
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray#cam",
|
||||
"wlr/taskbar"],
|
||||
|
||||
"modules-center": ["hyprland/window#cam"],
|
||||
|
||||
"modules-right": [
|
||||
"custom/backlight",
|
||||
"backlight/slider",
|
||||
"custom/speaker",
|
||||
"pulseaudio/slider",
|
||||
"battery#cam",
|
||||
"clock#cam",
|
||||
"network#cam"],
|
||||
|
||||
// Additional modules //
|
||||
|
||||
"hyprland/workspaces#cam": {
|
||||
"active-only":false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces":{
|
||||
"1": [],
|
||||
"2": [],
|
||||
"3": [],
|
||||
"4": [],
|
||||
"5": []
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "Uno",
|
||||
"2": "Due",
|
||||
"3": "Tre",
|
||||
"4": "Quattro",
|
||||
"5": "Cinque",
|
||||
"6":"Sei",
|
||||
"7":"Sette",
|
||||
"8":"Otto",
|
||||
"9":"Nove",
|
||||
"10":"Dieci"
|
||||
}
|
||||
},
|
||||
|
||||
"hyprland/window#cam": {
|
||||
"format": " {title}",
|
||||
"max-length": 50,
|
||||
"rewrite": {
|
||||
"(.*) — Mozilla Firefox": " $1",
|
||||
"(.*) - zsh": "> [$1]"
|
||||
},
|
||||
"separate-outputs": true
|
||||
},
|
||||
|
||||
"clock#cam": {
|
||||
"interval": 60,
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%A, %H:%M}",
|
||||
"max-length": 25,
|
||||
|
||||
},
|
||||
|
||||
"battery#cam": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{capacity}% {icon}",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w"
|
||||
},
|
||||
|
||||
"pulseaudio/slider": {
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"orientation": "horizontal"
|
||||
|
||||
},
|
||||
|
||||
"custom/speaker": {
|
||||
"exec": "echo '🔊'",
|
||||
"interval": 1,
|
||||
"format": "{}"
|
||||
},
|
||||
|
||||
"backlight/slider": {
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"orientation": "horizontal",
|
||||
"device": "intel_backlight"
|
||||
},
|
||||
|
||||
"custom/backlight": {
|
||||
"exec": "echo '✨'",
|
||||
"interval": 1,
|
||||
"format": "{}"
|
||||
},
|
||||
|
||||
"tray#cam": {
|
||||
//"icon-size": 16,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"network#cam": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": "{icon}",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ipaddr} {bandwidthUpBytes} {bandwidthDownBytes}",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"tooltip-format-wifi": "{essid} {icon} {signalStrength}%",
|
||||
"tooltip-format-ethernet": "{ifname} ",
|
||||
"tooltip-format-disconnected": " Disconnected",
|
||||
"max-length": 50,
|
||||
"format-icons": ["","","","",""]
|
||||
},
|
||||
|
||||
"wlr/taskbar": {
|
||||
"format": "{icon}",
|
||||
//"icon-size": 14,
|
||||
//"icon-theme": "Numix-Circle",
|
||||
"tooltip-format": "{title}",
|
||||
"on-click": "activate",
|
||||
"on-click-middle": "close",
|
||||
"ignore-list": [
|
||||
"kitty"
|
||||
],
|
||||
"app_ids-mapping": {
|
||||
"firefoxdeveloperedition": "firefox-developer-edition"
|
||||
},
|
||||
"rewrite": {
|
||||
"Firefox Web Browser": "Firefox",
|
||||
"Foot Server": "Terminal"
|
||||
}
|
||||
}
|
||||
}
|
||||
92
waybar/themes/[BOT] Chrysanthemum
Executable file
92
waybar/themes/[BOT] Chrysanthemum
Executable file
@@ -0,0 +1,92 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............CHRYSANTHEMUM.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "bottom",
|
||||
"spacing": 5,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"margin-left": 5,
|
||||
"margin-right": 5,
|
||||
|
||||
"modules-left": ["clock#gar", "mpris", "custom/swaync", "tray"],
|
||||
|
||||
"modules-center": ["hyprland/workspaces"],
|
||||
|
||||
"modules-right": ["pulseaudio#gar","backlight#gar", "battery#gar"],
|
||||
|
||||
// M O D U L E S //
|
||||
"clock#gar": {
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%a %d | %H:%M}",
|
||||
"format-alt": "{:%A, %d %B, %Y (%R)}"
|
||||
},
|
||||
|
||||
"hyprland/window#gar": {
|
||||
"format": "{}",
|
||||
"max-length": 60
|
||||
},
|
||||
|
||||
"tray#gar": {
|
||||
"icon-size": 15,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"pulseaudio#gar": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-bluetooth-muted": " {icon}",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pamixer --toggle-mute",
|
||||
"on-click-right": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"backlight#gar": {
|
||||
//"device": "intel_backlight",
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", ""]
|
||||
},
|
||||
|
||||
"battery#gar": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
}
|
||||
66
waybar/themes/[BOT] Default
Executable file
66
waybar/themes/[BOT] Default
Executable file
@@ -0,0 +1,66 @@
|
||||
/* ---- 💫 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-top": 6,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces#pacman",
|
||||
"custom/separator#dot-line",
|
||||
"cpu",
|
||||
"custom/separator#dot-line",
|
||||
"temperature",
|
||||
"custom/separator#dot-line",
|
||||
"memory",
|
||||
"custom/separator#dot-line",
|
||||
"custom/weather",
|
||||
"custom/separator#blank_3",
|
||||
"custom/cava_mviz",
|
||||
],
|
||||
|
||||
"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": [
|
||||
"network#speed",
|
||||
"custom/separator#dot-line",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"mpris",
|
||||
"custom/separator#dot-line",
|
||||
"bluetooth",
|
||||
"custom/separator#dot-line",
|
||||
"pulseaudio",
|
||||
"custom/separator#dot-line",
|
||||
"pulseaudio#microphone",
|
||||
"custom/separator#dot-line",
|
||||
"keyboard-state",
|
||||
"custom/separator#dot-line",
|
||||
"custom/keyboard",
|
||||
"custom/separator#dot-line",
|
||||
"custom/power",
|
||||
],
|
||||
}
|
||||
98
waybar/themes/[BOT] Gardenia
Executable file
98
waybar/themes/[BOT] Gardenia
Executable file
@@ -0,0 +1,98 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............GARDENIA.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "bottom",
|
||||
"spacing": 5,
|
||||
"fixed-center": false,
|
||||
"ipc": true,
|
||||
//"margin-top": 5,
|
||||
"margin-bottom": 5,
|
||||
"width": 768,
|
||||
|
||||
"modules-left": ["clock#gar", "mpris", "custom/swaync", "tray"],
|
||||
|
||||
"modules-center": ["hyprland/workspaces#kanji"],
|
||||
|
||||
"modules-right": ["pulseaudio#gar","backlight#gar", "battery#gar"],
|
||||
|
||||
|
||||
// M O D U L E S //
|
||||
|
||||
"clock#gar": {
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%a %d | %H:%M}",
|
||||
"format-alt": "{:%A, %d %B, %Y (%R)}"
|
||||
},
|
||||
|
||||
"hyprland/window#gar": {
|
||||
"format": "{}",
|
||||
"max-length": 60
|
||||
},
|
||||
|
||||
"tray#gar": {
|
||||
"icon-size": 15,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"pulseaudio#gar": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-bluetooth-muted": " {icon}",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pamixer --toggle-mute",
|
||||
"on-click-right": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"backlight#gar": {
|
||||
"device": "intel_backlight",
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", ""]
|
||||
},
|
||||
|
||||
"battery#gar": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
|
||||
}
|
||||
108
waybar/themes/[BOT] Peony
Executable file
108
waybar/themes/[BOT] Peony
Executable file
@@ -0,0 +1,108 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* ................PEONY.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "bottom",
|
||||
"spacing": 4,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
//"margin-top": 5,
|
||||
"margin-bottom": 5,
|
||||
"width": 1444,
|
||||
|
||||
"modules-left": ["hyprland/workspaces#roman", "mpris", "tray#peony"],
|
||||
|
||||
"modules-center": ["clock#peony"],
|
||||
|
||||
"modules-right": [
|
||||
"battery#peony",
|
||||
"custom/separator#blank",
|
||||
"backlight#peony",
|
||||
"custom/separator#blank",
|
||||
"pulseaudio",
|
||||
"custom/separator#blank",
|
||||
"temperature",
|
||||
"custom/separator#blank",
|
||||
"network#peony",
|
||||
"custom/swaync"],
|
||||
|
||||
|
||||
//M O D U L E S //
|
||||
|
||||
"clock#peony": {
|
||||
"interval": 60,
|
||||
"tooltip-format": "<big>{:%B %Y}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
//"format": "{:%B | %a %d, %Y | %I:%M %p}",
|
||||
"format": "{:%B | %a %d, %Y | %H:%M}",
|
||||
"format-alt": "{:%a %b %d, %G}",
|
||||
},
|
||||
|
||||
"wireplumber#peony": {
|
||||
"format": "{icon} {volume}",
|
||||
"format-muted": " Mute",
|
||||
"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",
|
||||
"format-icons": ["", "", "", ""],
|
||||
},
|
||||
|
||||
"backlight#peony": {
|
||||
"device": "intel_backlight",
|
||||
"format": "{percent}% {icon}",
|
||||
"format-icons": ["", "", "", "", "", "", "", "", ""],
|
||||
},
|
||||
|
||||
"network#peony": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": "{icon}",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ipaddr} {bandwidthUpBytes} {bandwidthDownBytes}",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"tooltip-format-wifi": "{essid} {icon} {signalStrength}%",
|
||||
"tooltip-format-ethernet": "{ifname} ",
|
||||
"tooltip-format-disconnected": " Disconnected",
|
||||
"max-length": 50,
|
||||
"format-icons": ["","","","",""]
|
||||
},
|
||||
|
||||
"battery#peony": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
|
||||
"tray#peony": {
|
||||
"icon-size": 17,
|
||||
"spacing": 8,
|
||||
}
|
||||
}
|
||||
47
waybar/themes/[BOT] Sleek
Executable file
47
waybar/themes/[BOT] Sleek
Executable file
@@ -0,0 +1,47 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
|
||||
// Sleek
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
"position": "bottom",
|
||||
"height": 14,
|
||||
"margin-left": 10,
|
||||
"margin-right": 10,
|
||||
"margin-bottom": 2,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"custom/separator#blank_2",
|
||||
"mpris",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"custom/swaync",
|
||||
"pulseaudio",
|
||||
"clock",
|
||||
"custom/power"
|
||||
],
|
||||
|
||||
|
||||
// Additional format / customize modules
|
||||
|
||||
"custom/power": {
|
||||
"format": " ",
|
||||
"icon-size": 20,
|
||||
"tooltip": false,
|
||||
},
|
||||
|
||||
"clock": {
|
||||
//"format": "{:%I:%M %p - %d/%b}", //for AM/PM
|
||||
"format": "{:%H:%M - %d/%b}", // 24H
|
||||
"tooltip": false
|
||||
},
|
||||
}
|
||||
37
waybar/themes/[Left] WestWing
Executable file
37
waybar/themes/[Left] WestWing
Executable file
@@ -0,0 +1,37 @@
|
||||
/* ---- 💫 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": [
|
||||
"mpris",
|
||||
"tray",
|
||||
"custom/swaync",
|
||||
"backlight#vertical",
|
||||
"pulseaudio#microphone_vertical",
|
||||
"pulseaudio#vertical",
|
||||
"custom/power_vertical",
|
||||
"custom/menu",
|
||||
],
|
||||
}
|
||||
37
waybar/themes/[Right] EastWing
Executable file
37
waybar/themes/[Right] EastWing
Executable file
@@ -0,0 +1,37 @@
|
||||
/* ---- 💫 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": [
|
||||
"mpris",
|
||||
"tray",
|
||||
"custom/swaync",
|
||||
"backlight#vertical",
|
||||
"pulseaudio#microphone_vertical",
|
||||
"pulseaudio#vertical",
|
||||
"custom/power_vertical",
|
||||
"custom/menu",
|
||||
],
|
||||
}
|
||||
80
waybar/themes/[TOP & BOT] SummitSplit
Executable file
80
waybar/themes/[TOP & BOT] SummitSplit
Executable file
@@ -0,0 +1,80 @@
|
||||
/* ---- 💫 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": 1,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"cpu",
|
||||
"temperature",
|
||||
"memory",
|
||||
"disk",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"idle_inhibitor",
|
||||
"hyprland/workspaces#4",
|
||||
"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": 5,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"height": 0,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
//"margin-bottom": 0,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"wlr/taskbar",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"clock",
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"hyprland/window",
|
||||
"tray",
|
||||
"custom/swaync",
|
||||
"mpris",
|
||||
"keyboard-state",
|
||||
"pulseaudio",
|
||||
//"wireplumber",
|
||||
"pulseaudio#microphone",
|
||||
"custom/power",
|
||||
],
|
||||
|
||||
}]
|
||||
72
waybar/themes/[TOP & Left] NorthWest
Executable file
72
waybar/themes/[TOP & Left] NorthWest
Executable file
@@ -0,0 +1,72 @@
|
||||
/* ---- 💫 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": 2,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"custom/separator#blank_2",
|
||||
"group/motherboard",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
//"hyprland/window",
|
||||
"hyprland/workspaces#pacman",
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"network",
|
||||
"bluetooth",
|
||||
"custom/weather",
|
||||
"custom/separator#blank_2",
|
||||
"group/audio",
|
||||
"custom/separator#blank_2",
|
||||
"keyboard-state",
|
||||
"custom/power",
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
"position": "left",
|
||||
"height": 650,
|
||||
"margin-top": 8,
|
||||
"margin-bottom": 8,
|
||||
"margin-left": 3,
|
||||
"spacing": 3,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
//"gtk-layer-shell": true,
|
||||
|
||||
"modules-left": [
|
||||
"custom/lock",
|
||||
"idle_inhibitor",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"clock#vertical",
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"custom/light_dark",
|
||||
],
|
||||
|
||||
}]
|
||||
73
waybar/themes/[TOP & Right] NorthEast
Executable file
73
waybar/themes/[TOP & Right] NorthEast
Executable file
@@ -0,0 +1,73 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
|
||||
// ### TOP and Right 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": 2,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"custom/separator#blank_2",
|
||||
"group/motherboard",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
//"hyprland/window",
|
||||
"hyprland/workspaces#pacman",
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"network",
|
||||
"bluetooth",
|
||||
"custom/weather",
|
||||
"custom/separator#blank_2",
|
||||
"group/audio",
|
||||
"custom/separator#blank_2",
|
||||
"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": [
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"custom/light_dark",
|
||||
],
|
||||
|
||||
}]
|
||||
178
waybar/themes/[TOP] Camellia
Executable file
178
waybar/themes/[TOP] Camellia
Executable file
@@ -0,0 +1,178 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............CAMELLIA.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 3,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
//"margin-top": 0,
|
||||
//"margin-bottom": 0,
|
||||
//"margin-left": 0,
|
||||
//"margin-right": 0,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces#cam",
|
||||
"custom/separator#line",
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray#cam",
|
||||
"wlr/taskbar"
|
||||
],
|
||||
|
||||
"modules-center": ["hyprland/window#cam"],
|
||||
|
||||
"modules-right": [
|
||||
"custom/backlight",
|
||||
"backlight/slider",
|
||||
"custom/speaker",
|
||||
"pulseaudio/slider",
|
||||
"battery#cam",
|
||||
"clock#cam",
|
||||
"network#cam"
|
||||
],
|
||||
|
||||
// Additional modules //
|
||||
|
||||
"hyprland/workspaces#cam": {
|
||||
"active-only":false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces":{
|
||||
"1": [],
|
||||
"2": [],
|
||||
"3": [],
|
||||
"4": [],
|
||||
"5": []
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "Uno",
|
||||
"2": "Due",
|
||||
"3": "Tre",
|
||||
"4": "Quattro",
|
||||
"5": "Cinque",
|
||||
"6":"Sei",
|
||||
"7":"Sette",
|
||||
"8":"Otto",
|
||||
"9":"Nove",
|
||||
"10":"Dieci"
|
||||
}
|
||||
},
|
||||
|
||||
"hyprland/window#cam": {
|
||||
"format": " {title}",
|
||||
"max-length": 50,
|
||||
"rewrite": {
|
||||
"(.*) — Mozilla Firefox": " $1",
|
||||
"(.*) - zsh": "> [$1]"
|
||||
},
|
||||
"separate-outputs": true
|
||||
},
|
||||
|
||||
"clock#cam": {
|
||||
"interval": 60,
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%A, %H:%M}",
|
||||
"max-length": 25,
|
||||
|
||||
},
|
||||
|
||||
"battery#cam": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{capacity}% {icon}",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w"
|
||||
},
|
||||
|
||||
"pulseaudio/slider": {
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"orientation": "horizontal",
|
||||
|
||||
},
|
||||
|
||||
"custom/speaker": {
|
||||
"exec": "echo '🔊'",
|
||||
"interval": 1,
|
||||
"format": "{}"
|
||||
},
|
||||
|
||||
"backlight/slider": {
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"orientation": "horizontal",
|
||||
//"device": "intel_backlight"
|
||||
},
|
||||
|
||||
"custom/backlight": {
|
||||
"exec": "echo '✨'",
|
||||
"interval": 1,
|
||||
"format": "{}"
|
||||
},
|
||||
|
||||
"tray#cam": {
|
||||
//"icon-size": 16,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"network#cam": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": "{icon}",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ipaddr} {bandwidthUpBytes} {bandwidthDownBytes}",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"tooltip-format-wifi": "{essid} {icon} {signalStrength}%",
|
||||
"tooltip-format-ethernet": "{ifname} ",
|
||||
"tooltip-format-disconnected": " Disconnected",
|
||||
"max-length": 50,
|
||||
"format-icons": ["","","","",""]
|
||||
},
|
||||
|
||||
"wlr/taskbar": {
|
||||
"format": "{icon}",
|
||||
//"icon-size": 14,
|
||||
//"icon-theme": "Numix-Circle",
|
||||
"tooltip-format": "{title}",
|
||||
"on-click": "activate",
|
||||
"on-click-middle": "close",
|
||||
"ignore-list": [
|
||||
"kitty"
|
||||
],
|
||||
"app_ids-mapping": {
|
||||
"firefoxdeveloperedition": "firefox-developer-edition"
|
||||
},
|
||||
"rewrite": {
|
||||
"Firefox Web Browser": "Firefox",
|
||||
"Foot Server": "Terminal"
|
||||
}
|
||||
}
|
||||
}
|
||||
94
waybar/themes/[TOP] Chrysanthemum
Executable file
94
waybar/themes/[TOP] Chrysanthemum
Executable file
@@ -0,0 +1,94 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............CHRYSANTHEMUM.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 5,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"margin-left": 5,
|
||||
"margin-right": 5,
|
||||
"margin-top": 0,
|
||||
|
||||
"modules-left": ["clock#gar", "mpris", "tray", "custom/swaync"],
|
||||
|
||||
"modules-center": ["hyprland/workspaces"],
|
||||
|
||||
"modules-right": ["pulseaudio#gar","backlight#gar", "battery#gar"],
|
||||
|
||||
// M O D U L E S //
|
||||
|
||||
"clock#gar": {
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%a %d | %H:%M}",
|
||||
"format-alt": "{:%A, %d %B, %Y (%R)}"
|
||||
},
|
||||
|
||||
"hyprland/window#gar": {
|
||||
"format": "{}",
|
||||
"max-length": 60
|
||||
},
|
||||
|
||||
"tray#gar": {
|
||||
"icon-size": 15,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"pulseaudio#gar": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-bluetooth-muted": " {icon}",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pamixer --toggle-mute",
|
||||
"on-click-right": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"backlight#gar": {
|
||||
//"device": "intel_backlight",
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", ""]
|
||||
},
|
||||
|
||||
"battery#gar": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
}
|
||||
66
waybar/themes/[TOP] Default
Executable file
66
waybar/themes/[TOP] Default
Executable file
@@ -0,0 +1,66 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
|
||||
// ### DEFAULT - Top ### //
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 3,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"margin-top": 3,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces#pacman",
|
||||
"custom/separator#dot-line",
|
||||
"cpu",
|
||||
"custom/separator#dot-line",
|
||||
"temperature",
|
||||
"custom/separator#dot-line",
|
||||
"memory",
|
||||
"custom/separator#dot-line",
|
||||
"custom/weather",
|
||||
"custom/separator#blank_3",
|
||||
"custom/cava_mviz",
|
||||
],
|
||||
|
||||
"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": [
|
||||
"network#speed",
|
||||
"custom/separator#dot-line",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
"mpris",
|
||||
"custom/separator#dot-line",
|
||||
"bluetooth",
|
||||
"custom/separator#dot-line",
|
||||
"pulseaudio",
|
||||
"custom/separator#dot-line",
|
||||
"pulseaudio#microphone",
|
||||
"custom/separator#dot-line",
|
||||
"keyboard-state",
|
||||
"custom/separator#dot-line",
|
||||
"custom/keyboard",
|
||||
"custom/separator#dot-line",
|
||||
"custom/power",
|
||||
],
|
||||
}
|
||||
97
waybar/themes/[TOP] Gardenia
Executable file
97
waybar/themes/[TOP] Gardenia
Executable file
@@ -0,0 +1,97 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* .............GARDENIA.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 5,
|
||||
"fixed-center": false,
|
||||
"ipc": true,
|
||||
"margin-top": 5,
|
||||
//"margin-bottom": 5,
|
||||
"width": 768,
|
||||
|
||||
"modules-left": ["clock#gar", "mpris", "tray", "custom/swaync"],
|
||||
|
||||
"modules-center": ["hyprland/workspaces#kanji"],
|
||||
|
||||
"modules-right": ["pulseaudio#gar","backlight#gar", "battery#gar"],
|
||||
|
||||
|
||||
// M O D U L E S //
|
||||
|
||||
"clock#gar": {
|
||||
//"format": "{:%A, %I:%M %P}",
|
||||
"format": "{:%a %d | %H:%M}",
|
||||
"format-alt": "{:%A, %d %B, %Y (%R)}"
|
||||
},
|
||||
|
||||
"hyprland/window#gar": {
|
||||
"format": "{}",
|
||||
"max-length": 60
|
||||
},
|
||||
|
||||
"tray#gar": {
|
||||
"icon-size": 15,
|
||||
"spacing": 10
|
||||
},
|
||||
|
||||
"pulseaudio#gar": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-bluetooth-muted": " {icon}",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pamixer --toggle-mute",
|
||||
"on-click-right": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"backlight#gar": {
|
||||
"device": "intel_backlight",
|
||||
"format": "{icon} {percent}%",
|
||||
"format-icons": ["", ""]
|
||||
},
|
||||
|
||||
"battery#gar": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
|
||||
}
|
||||
41
waybar/themes/[TOP] Minimal - Long
Executable file
41
waybar/themes/[TOP] Minimal - Long
Executable file
@@ -0,0 +1,41 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
|
||||
// ### Minimal - Long ### //
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 6,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"margin-top": 3,
|
||||
"margin-left": 8,
|
||||
"margin-right": 8,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"custom/separator#blank_2",
|
||||
"hyprland/workspaces#pacman",
|
||||
"custom/separator#blank_2",
|
||||
"mpris",
|
||||
"custom/swaync",
|
||||
"tray",
|
||||
],
|
||||
"modules-center": [
|
||||
"clock",
|
||||
],
|
||||
"modules-right": [
|
||||
"group/motherboard",
|
||||
"custom/separator#blank_2",
|
||||
"group/laptop",
|
||||
"custom/separator#blank_2",
|
||||
"group/audio",
|
||||
"custom/separator#blank_2",
|
||||
"custom/power",
|
||||
],
|
||||
|
||||
}
|
||||
32
waybar/themes/[TOP] Minimal - Short
Executable file
32
waybar/themes/[TOP] Minimal - Short
Executable file
@@ -0,0 +1,32 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
|
||||
// ### Minimal -SHORT ### //
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"width": 1050,
|
||||
"margin-top": 3,
|
||||
|
||||
"modules-left": [
|
||||
"clock",
|
||||
"custom/weather",
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"hyprland/workspaces#roman"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"custom/menu",
|
||||
"tray",
|
||||
"custom/swaync",
|
||||
"mpris",
|
||||
"network",
|
||||
"bluetooth",
|
||||
"backlight",
|
||||
"pulseaudio",
|
||||
"battery",
|
||||
"custom/power"],
|
||||
}
|
||||
49
waybar/themes/[TOP] Nova
Executable file
49
waybar/themes/[TOP] Nova
Executable file
@@ -0,0 +1,49 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
// Sleek
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 12,
|
||||
"margin-left": 10,
|
||||
"margin-right": 10,
|
||||
"margin-top": 2,
|
||||
|
||||
"modules-left": [
|
||||
// "custom/weather",
|
||||
// "custom/separator#blank",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"hyprland/workspaces#roman"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
// "tray",
|
||||
// "custom/separator#blank",
|
||||
"mpris",
|
||||
"custom/separator#blank",
|
||||
// "group/motherboard",
|
||||
// "custom/separator#blank",
|
||||
// "group/laptop",
|
||||
// "custom/separator#blank",
|
||||
// "group/audio",
|
||||
// "custom/separator#blank",
|
||||
"hyprland/language",
|
||||
"custom/separator#blank",
|
||||
"clock",
|
||||
"custom/separator#blank",
|
||||
"custom/power_vertical",
|
||||
],
|
||||
|
||||
|
||||
// Additional format / customize modules
|
||||
|
||||
"clock": {
|
||||
//"format": "{:%I:%M %p - %d/%b}", //for AM/PM
|
||||
"format": "{:%H:%M - %b %d}", // 24H
|
||||
"tooltip": true
|
||||
},
|
||||
}
|
||||
101
waybar/themes/[TOP] Peony
Executable file
101
waybar/themes/[TOP] Peony
Executable file
@@ -0,0 +1,101 @@
|
||||
//* ----------- 💫 https://github.com/JaKooLit 💫 -------- */
|
||||
//* ............................................*/
|
||||
//* ................PEONY.......................*/
|
||||
//* ............................................*/
|
||||
//* --- 👍 designed by https://github.com/Krautt 👍 --- */
|
||||
|
||||
{
|
||||
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
//"mode": "dock",
|
||||
"exclusive": true,
|
||||
"passthrough": false,
|
||||
"position": "top",
|
||||
"spacing": 4,
|
||||
"fixed-center": true,
|
||||
"ipc": true,
|
||||
"margin-top": 5,
|
||||
//"margin-bottom": 5,
|
||||
"width": 1444,
|
||||
|
||||
"modules-left": ["hyprland/workspaces#roman", "mpris", "custom/swaync", "tray#peony"],
|
||||
|
||||
"modules-center": ["clock#peony"],
|
||||
|
||||
"modules-right": [
|
||||
"battery#peony",
|
||||
"custom/separator#blank",
|
||||
"backlight#peony",
|
||||
"custom/separator#blank",
|
||||
"pulseaudio",
|
||||
"custom/separator#blank",
|
||||
"temperature",
|
||||
"custom/separator#blank",
|
||||
"network#peony"],
|
||||
|
||||
|
||||
//M O D U L E S //
|
||||
|
||||
"clock#peony": {
|
||||
"interval": 60,
|
||||
"tooltip-format": "<big>{:%B %Y}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
//"format": "{:%B | %a %d, %Y | %I:%M %p}",
|
||||
"format": "{:%B | %a %d, %Y | %H:%M}",
|
||||
"format-alt": "{:%a %b %d, %G}",
|
||||
},
|
||||
|
||||
"wireplumber#peony": {
|
||||
"format": "{icon} {volume}",
|
||||
"format-muted": " Mute",
|
||||
"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",
|
||||
"format-icons": ["", "", "", ""],
|
||||
},
|
||||
|
||||
"network#peony": {
|
||||
"format": "{ifname}",
|
||||
"format-wifi": "{icon}",
|
||||
"format-ethernet": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ipaddr} {bandwidthUpBytes} {bandwidthDownBytes}",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"tooltip-format-wifi": "{essid} {icon} {signalStrength}%",
|
||||
"tooltip-format-ethernet": "{ifname} ",
|
||||
"tooltip-format-disconnected": " Disconnected",
|
||||
"max-length": 50,
|
||||
"format-icons": ["","","","",""]
|
||||
},
|
||||
|
||||
"battery#peony": {
|
||||
"interval": 60,
|
||||
"align": 0,
|
||||
"rotate": 0,
|
||||
//"bat": "BAT1",
|
||||
//"adapter": "ACAD",
|
||||
"full-at": 100,
|
||||
"design-capacity": false,
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-charging": " {capacity}%",
|
||||
"format-plugged": " {capacity}%",
|
||||
"format-full": "{icon} Full",
|
||||
"format-alt": "{icon} {time}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"format-time": "{H}h {M}min",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{timeTo} {power}w",
|
||||
"on-click-right": "~/.config/hypr/scripts/wlogout.sh",
|
||||
},
|
||||
|
||||
"tray#peony": {
|
||||
"icon-size": 17,
|
||||
"spacing": 8,
|
||||
}
|
||||
}
|
||||
51
waybar/themes/[TOP] Sleek
Executable file
51
waybar/themes/[TOP] Sleek
Executable file
@@ -0,0 +1,51 @@
|
||||
/* ---- 💫 https://github.com/JaKooLit 💫 ---- */
|
||||
// Sleek
|
||||
|
||||
{
|
||||
"include": "~/.config/waybar/modules",
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 14,
|
||||
"margin-left": 10,
|
||||
"margin-right": 10,
|
||||
"margin-top": 2,
|
||||
|
||||
"modules-left": [
|
||||
"custom/menu",
|
||||
"custom/separator#blank_2",
|
||||
"clock",
|
||||
"custom/separator#blank_2",
|
||||
"hyprland/window"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"custom/swaync",
|
||||
"custom/separator#blank",
|
||||
"tray",
|
||||
"custom/separator#blank",
|
||||
"mpris",
|
||||
"custom/separator#blank",
|
||||
"pulseaudio",
|
||||
"custom/separator#blank",
|
||||
"custom/power",
|
||||
],
|
||||
|
||||
|
||||
// Additional format / customize modules
|
||||
|
||||
"custom/power": {
|
||||
"format": " ",
|
||||
"icon-size": 20,
|
||||
"tooltip": false,
|
||||
},
|
||||
|
||||
"clock": {
|
||||
//"format": "{:%I:%M %p - %d/%b}", //for AM/PM
|
||||
"format": "{:%H:%M - %d/%b}", // 24H
|
||||
"tooltip": false
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user