add : waybar kickstart config colurful and gruvbox only
This commit is contained in:
87
configs/waybar_l/Kickstarter/Colurful_GruvBox/config.jsonc
Normal file
87
configs/waybar_l/Kickstarter/Colurful_GruvBox/config.jsonc
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"layer": "top",
|
||||
"spacing": 0,
|
||||
"height": 0,
|
||||
"margin-top": 8,
|
||||
"margin-right": 8,
|
||||
"margin-bottom": 0,
|
||||
"margin-left": 8,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"clock"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"idle_inhibitor",
|
||||
"custom/swww",
|
||||
"network",
|
||||
"battery",
|
||||
"pulseaudio"
|
||||
],
|
||||
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": " ",
|
||||
"deactivated": " "
|
||||
}
|
||||
},
|
||||
|
||||
"custom/swww": {
|
||||
"format": " ",
|
||||
"on-click": "bash ~/.local/bin/random-wall"
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"spacing": 10,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%I:%M %p - %a, %d %b %Y}",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format-wifi" : " {bandwidthDownBits}",
|
||||
"format-ethernet": " {bandwidthDownBits}",
|
||||
"format-disconnected" : " No Network",
|
||||
"interval": 5,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"scroll-step": 5,
|
||||
"max-volume": 150,
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-icons": [" ", " ", " "],
|
||||
"nospacing": 1,
|
||||
"format-muted": " ",
|
||||
"on-click": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"battery": {
|
||||
"format": "{icon} {capacity}%",
|
||||
"interval": 5,
|
||||
"states": {
|
||||
"warning": 20,
|
||||
"critical": 10
|
||||
},
|
||||
|
||||
"format-icons": [" ", " ", " ", " ", " "],
|
||||
"tooltip": false
|
||||
}
|
||||
}
|
||||
105
configs/waybar_l/Kickstarter/Colurful_GruvBox/style.css
Normal file
105
configs/waybar_l/Kickstarter/Colurful_GruvBox/style.css
Normal file
@@ -0,0 +1,105 @@
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
min-height: 0;
|
||||
font-family: CaskaydiaCove Nerd Font;
|
||||
font-weight: Bold;
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(29, 32, 33, 1.000000);
|
||||
border: 2px solid rgba(48, 53, 54, 1.000000);
|
||||
}
|
||||
|
||||
#battery,
|
||||
#network,
|
||||
#clock,
|
||||
#tray,
|
||||
#idle_inhibitor,
|
||||
#custom-swww,
|
||||
#pulseaudio {
|
||||
margin: 4px;
|
||||
padding: 4px 8px;
|
||||
border-radius: 8;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background-color: #303536;
|
||||
margin: 4px;
|
||||
border: 2px solid #434a4c;
|
||||
border-radius: 8;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
all: initial;
|
||||
min-width: 0;
|
||||
box-shadow: inset 0 -3px transparent;
|
||||
padding: 4px 8px;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #E78A4E;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
/*background-color: #e78a4e;*/
|
||||
color: #FF1E0F;
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: #a9b665;
|
||||
border: 2px solid #b7c37f;
|
||||
color: #1d2021;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #d3869b;
|
||||
border: 2px solid #dfa5b4;
|
||||
color: #1d2021;
|
||||
}
|
||||
|
||||
#clock {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: #e78a4e;
|
||||
border: 2px solid #eca474;
|
||||
color: #1d2021;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
background-color: #d8a657;
|
||||
border: 2px solid #dfb777;
|
||||
color: #1d2021;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
background-color: #2995F8;
|
||||
border: 2px solid #599FF0;
|
||||
color: #1d2021;
|
||||
}
|
||||
|
||||
#custom-swww {
|
||||
background-color: #057656;
|
||||
border: 2px solid #7BC39E;
|
||||
color: #1d2021;
|
||||
padding: 1px 5px;
|
||||
}
|
||||
|
||||
#battery.warning,
|
||||
#battery.critical,
|
||||
#battery.urgent {
|
||||
color: #1d2021;
|
||||
background-color: #ea6962;
|
||||
border: 2px solid #303536;
|
||||
}
|
||||
87
configs/waybar_l/Kickstarter/Gruvbox_Only/config.jsonc
Normal file
87
configs/waybar_l/Kickstarter/Gruvbox_Only/config.jsonc
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"layer": "top",
|
||||
"spacing": 0,
|
||||
"height": 0,
|
||||
"margin-top": 8,
|
||||
"margin-right": 8,
|
||||
"margin-bottom": 0,
|
||||
"margin-left": 8,
|
||||
|
||||
"modules-left": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
|
||||
"modules-center": [
|
||||
"clock"
|
||||
],
|
||||
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"idle_inhibitor",
|
||||
"custom/swww",
|
||||
"network",
|
||||
"battery",
|
||||
"pulseaudio"
|
||||
],
|
||||
|
||||
"sway/workspaces": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": true,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": " ",
|
||||
"deactivated": " "
|
||||
}
|
||||
},
|
||||
|
||||
"custom/swww": {
|
||||
"format": " ",
|
||||
"on-click": "bash ~/.local/bin/random-wall"
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"spacing": 10,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%I:%M %p - %a, %d %b %Y}",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format-wifi" : " {bandwidthDownBits}",
|
||||
"format-ethernet": " {bandwidthDownBits}",
|
||||
"format-disconnected" : " No Network",
|
||||
"interval": 5,
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"pulseaudio": {
|
||||
"scroll-step": 5,
|
||||
"max-volume": 150,
|
||||
"format": "{icon} {volume}%",
|
||||
"format-bluetooth": "{icon} {volume}%",
|
||||
"format-icons": [" ", " ", " "],
|
||||
"nospacing": 1,
|
||||
"format-muted": " ",
|
||||
"on-click": "pavucontrol",
|
||||
"tooltip": false
|
||||
},
|
||||
|
||||
"battery": {
|
||||
"format": "{icon} {capacity}%",
|
||||
"interval": 5,
|
||||
"states": {
|
||||
"warning": 20,
|
||||
"critical": 10
|
||||
},
|
||||
|
||||
"format-icons": [" ", " ", " ", " ", " "],
|
||||
"tooltip": false
|
||||
}
|
||||
}
|
||||
105
configs/waybar_l/Kickstarter/Gruvbox_Only/style.css
Normal file
105
configs/waybar_l/Kickstarter/Gruvbox_Only/style.css
Normal file
@@ -0,0 +1,105 @@
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
min-height: 0;
|
||||
font-family: CaskaydiaCove Nerd Font;
|
||||
font-weight: Bold;
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: rgba(29, 32, 33, 1.000000);
|
||||
border: 2px solid rgba(48, 53, 54, 1.000000);
|
||||
}
|
||||
|
||||
#battery,
|
||||
#network,
|
||||
#clock,
|
||||
#tray,
|
||||
#idle_inhibitor,
|
||||
#custom-swww,
|
||||
#pulseaudio {
|
||||
margin: 4px;
|
||||
padding: 4px 8px;
|
||||
border-radius: 8;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background-color: #303536;
|
||||
margin: 4px;
|
||||
border: 2px solid #434a4c;
|
||||
border-radius: 8;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
all: initial;
|
||||
min-width: 0;
|
||||
box-shadow: inset 0 -3px transparent;
|
||||
padding: 4px 8px;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
color: #d4be98;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #E78A4E;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
/*background-color: #e78a4e;*/
|
||||
color: #FF1E0F;
|
||||
}
|
||||
|
||||
#battery {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#network {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#clock {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#tray {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#idle_inhibitor {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
}
|
||||
|
||||
#custom-swww {
|
||||
background-color: #303536;
|
||||
border: 2px solid #434a4c;
|
||||
color: #c7ab7a;
|
||||
padding: 1px 5px;
|
||||
}
|
||||
|
||||
#battery.warning,
|
||||
#battery.critical,
|
||||
#battery.urgent {
|
||||
color: #c7ab7a;
|
||||
background-color: #ea6962;
|
||||
border: 2px solid #303536;
|
||||
}
|
||||
Reference in New Issue
Block a user