00: cleanup config
This commit is contained in:
-120
@@ -1,120 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "main",
|
||||
"layer": "bottom",
|
||||
"position": "top",
|
||||
"height": 40,
|
||||
"spacing": 0,
|
||||
"output": "DP-1",
|
||||
"reload_style_on_change": true,
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"custom/gpu",
|
||||
"temperature"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"wireplumber",
|
||||
"network#ethernet",
|
||||
"clock",
|
||||
"custom/poweroff"
|
||||
],
|
||||
"clock": {
|
||||
"interval": 1,
|
||||
"format": "<b>{:%I:%M:%S %p}</b>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"interval": 5,
|
||||
"tooltip": false
|
||||
},
|
||||
"disk": {
|
||||
"format": " {percentage_used}%",
|
||||
"tooltip-format": "{used} / {total} used"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%",
|
||||
"tooltip-format": "{used:0.1f}G / {total:0.1f}G used"
|
||||
},
|
||||
"temperature": {
|
||||
"format": "{icon} {temperatureC}°C ",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"hwmon-path": "/sys/class/thermal/thermal_zone2/temp",
|
||||
"critical-threshold": 80,
|
||||
"interval": 5
|
||||
},
|
||||
"network#ethernet": {
|
||||
"interface": "enp*",
|
||||
"format-ethernet": "",
|
||||
"format-wifi": "",
|
||||
"format-linked": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname}: {ipaddr}/{cidr}",
|
||||
"on-click": "nm-connection-editor"
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "{icon}",
|
||||
"sort-by-number": true,
|
||||
"all-outputs": true,
|
||||
"disable-scroll": true,
|
||||
"active-only": false,
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
"persistent": "",
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": [ ],
|
||||
"2": [ ],
|
||||
"3": [ ],
|
||||
"4": [ ],
|
||||
"5": [ ]
|
||||
}
|
||||
|
||||
},
|
||||
"wireplumber": {
|
||||
"format": " {volume}%",
|
||||
"format-muted": " 0%",
|
||||
"on-click": "pavucontrol",
|
||||
"on-click-right": "helvum",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 5
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"custom/appmenu": {
|
||||
"format": "",
|
||||
"on-click": "pkill -x rofi || rofi -show drun"
|
||||
},
|
||||
"custom/gpu": {
|
||||
"format": " {}%",
|
||||
"interval": 5,
|
||||
"tooltip": false,
|
||||
"exec": "nvidia-smi --query | grep Gpu | tail -1 | awk '{print $3}'"
|
||||
},
|
||||
"custom/poweroff": {
|
||||
"tooltip": false,
|
||||
"format": " ",
|
||||
"on-click": "pgrep poweroff.sh || $HOME/.config/waybar/scripts/poweroff.sh"
|
||||
},
|
||||
}
|
||||
]
|
||||
@@ -1,82 +0,0 @@
|
||||
@import "mocha.css";
|
||||
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
min-height: 0;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
font-family: "Hack Nerd Font";
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: alpha(@crust, 0.3);
|
||||
border-radius: 0px;
|
||||
border-bottom: 0px solid @overlay0;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @peach;
|
||||
border-radius: 8px;
|
||||
margin: 4px 2px;
|
||||
padding: 0px 8px;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: alpha(@peach, 0.2);
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-center,
|
||||
.modules-right {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.modules-right {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#memory,
|
||||
#temperature,
|
||||
#tray,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#network,
|
||||
#custom-appmenu,
|
||||
#custom-gpu,
|
||||
#custom-poweroff,
|
||||
#custom-weather {
|
||||
background-color: transparent;
|
||||
border-radius: 10px;
|
||||
border: 0px;
|
||||
margin-left: 6px;
|
||||
margin-right: 6px;
|
||||
color: @peach;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
#network {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#custom-appmenu,
|
||||
#workspaces label,
|
||||
#network {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
||||
#clock {
|
||||
min-width: 80px;
|
||||
}
|
||||
Executable
+38
@@ -0,0 +1,38 @@
|
||||
/* foreground */
|
||||
@define-color fg #3c3836;
|
||||
@define-color fg0 #282828;
|
||||
@define-color fg1 #3c3836;
|
||||
@define-color fg2 #504945;
|
||||
@define-color fg3 #665c54;
|
||||
@define-color fg4 #7c6f64;
|
||||
|
||||
/* background */
|
||||
@define-color bg #fbf1c7;
|
||||
@define-color bg0 #fbf1c7;
|
||||
@define-color bg0_h #f9f5d7;
|
||||
@define-color bg0_s #f2e5bc;
|
||||
@define-color bg1 #ebdbb2;
|
||||
@define-color bg2 #d5c4a1;
|
||||
@define-color bg3 #bdae93;
|
||||
@define-color bg4 #a89984;
|
||||
|
||||
/* colors */
|
||||
@define-color gray #7c6f64;
|
||||
@define-color red #cc241d;
|
||||
@define-color green #98971a;
|
||||
@define-color yellow #d79921;
|
||||
@define-color blue #458588;
|
||||
@define-color purple #b16286;
|
||||
@define-color aqua #689d6a;
|
||||
@define-color orange #d65d0e;
|
||||
@define-color peach #fe640b;
|
||||
|
||||
/* alternates */
|
||||
@define-color alt_gray #928374;
|
||||
@define-color alt_red #9d0006;
|
||||
@define-color alt_green #79740e;
|
||||
@define-color alt_yellow #b57614;
|
||||
@define-color alt_blue #076678;
|
||||
@define-color alt_purple #8f3f71;
|
||||
@define-color alt_aqua #427b58;
|
||||
@define-color alt_orange #af3a03;
|
||||
+12
-15
@@ -2,26 +2,24 @@
|
||||
{
|
||||
"name": "main",
|
||||
"layer": "bottom",
|
||||
"position": "bottom",
|
||||
"position": "top",
|
||||
"height": 40,
|
||||
"spacing": 0,
|
||||
"output": "DP-1",
|
||||
"reload_style_on_change": true,
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"hyprland/workspaces",
|
||||
"wlr/taskbar"
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"temperature",
|
||||
"custom/gpu-usage"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"wireplumber",
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"custom/gpu",
|
||||
"temperature",
|
||||
"network#ethernet",
|
||||
"clock",
|
||||
"custom/poweroff"
|
||||
@@ -111,14 +109,13 @@
|
||||
"spacing": 10
|
||||
},
|
||||
"custom/appmenu": {
|
||||
"format": " Start",
|
||||
"format": "",
|
||||
"on-click": "pkill -x rofi || rofi -show drun"
|
||||
},
|
||||
"custom/gpu": {
|
||||
"format": " {}%",
|
||||
"interval": 5,
|
||||
"tooltip": false,
|
||||
"exec": "nvidia-smi --query | grep Gpu | tail -1 | awk '{print $3}'"
|
||||
"custom/gpu-usage": {
|
||||
"format": " {text}",
|
||||
"exec": "gpu-usage-waybar",
|
||||
"return-type": "json"
|
||||
},
|
||||
"custom/poweroff": {
|
||||
"tooltip": false,
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
/*
|
||||
*
|
||||
* Catppuccin Mocha palette
|
||||
* Maintainer: rubyowo
|
||||
*
|
||||
*/
|
||||
|
||||
@define-color base #1e1e2e;
|
||||
@define-color mantle #181825;
|
||||
@define-color crust #11111b;
|
||||
|
||||
@define-color text #cdd6f4;
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color sky #89dceb;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color peach #fab387;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color red #f38ba8;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color rosewater #f5e0dc;
|
||||
+10
-21
@@ -1,8 +1,7 @@
|
||||
@import "mocha.css";
|
||||
@import "colorscheme.css";
|
||||
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
min-height: 0;
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
@@ -10,25 +9,20 @@
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: #D9CFC2;
|
||||
border-radius: 0px;
|
||||
background-color: @bg0;
|
||||
border-bottom: 0px solid @overlay0;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: black;
|
||||
border-radius: 0px;
|
||||
margin: 0px 0px;
|
||||
color: @gray;
|
||||
border: 1px solid @bg0;
|
||||
margin: 0px 2px;
|
||||
padding: 0px 8px;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
border: 2px solid #EAE5DE;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
border: 2px solid grey;
|
||||
border: 1px solid @yellow;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
@@ -47,7 +41,6 @@ window#waybar {
|
||||
|
||||
.modules-right {
|
||||
padding-right: 0px;
|
||||
border: 2px solid #EAE5DE;
|
||||
}
|
||||
|
||||
#clock,
|
||||
@@ -61,24 +54,21 @@ window#waybar {
|
||||
#network,
|
||||
#taskbar,
|
||||
#custom-appmenu,
|
||||
#custom-gpu,
|
||||
#custom-gpu-usage,
|
||||
#custom-poweroff,
|
||||
#custom-weather {
|
||||
border-radius: 0px;
|
||||
border: 0px;
|
||||
margin-left: 6px;
|
||||
margin-right: 6px;
|
||||
color: black;
|
||||
color: @gray;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
#taskbar button {
|
||||
color: black;
|
||||
border: 1px solid #EAE5DE;
|
||||
color: @gray;
|
||||
}
|
||||
|
||||
#taskbar button.active {
|
||||
border: 1px solid grey;
|
||||
border: 1px solid @yellow;
|
||||
}
|
||||
|
||||
#network {
|
||||
@@ -88,7 +78,6 @@ window#waybar {
|
||||
|
||||
#custom-appmenu {
|
||||
padding: 0px 4px;
|
||||
border: 2px solid #EAE5DE;
|
||||
}
|
||||
|
||||
#custom-appmenu,
|
||||
|
||||
-129
@@ -1,129 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "main",
|
||||
"layer": "bottom",
|
||||
"position": "bottom",
|
||||
"height": 40,
|
||||
"spacing": 0,
|
||||
"output": "DP-1",
|
||||
"reload_style_on_change": true,
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"wlr/taskbar"
|
||||
],
|
||||
"modules-center": [
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"custom/gpu",
|
||||
"temperature",
|
||||
"wireplumber",
|
||||
"network#ethernet",
|
||||
"clock",
|
||||
"custom/poweroff"
|
||||
],
|
||||
"clock": {
|
||||
"interval": 1,
|
||||
"format": "<b>{:%I:%M:%S %p}</b>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"interval": 5,
|
||||
"tooltip": false
|
||||
},
|
||||
"disk": {
|
||||
"format": " {percentage_used}%",
|
||||
"tooltip-format": "{used} / {total} used"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%",
|
||||
"tooltip-format": "{used:0.1f}G / {total:0.1f}G used"
|
||||
},
|
||||
"wlr/taskbar": {
|
||||
"format": "{name}",
|
||||
"tooltip-format": "{title}",
|
||||
"on-click": "activate",
|
||||
"on-click-right": "close",
|
||||
"ignore-list": [
|
||||
"Wayland to X Recording bridge — Xwayland Video Bridge"
|
||||
]
|
||||
},
|
||||
"temperature": {
|
||||
"format": "{icon} {temperatureC}°C ",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"hwmon-path": "/sys/class/thermal/thermal_zone2/temp",
|
||||
"critical-threshold": 80,
|
||||
"interval": 5
|
||||
},
|
||||
"network#ethernet": {
|
||||
"interface": "enp*",
|
||||
"format-ethernet": "",
|
||||
"format-wifi": "",
|
||||
"format-linked": "",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname}: {ipaddr}/{cidr}",
|
||||
"on-click": "nm-connection-editor"
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "{icon}",
|
||||
"sort-by-number": true,
|
||||
"all-outputs": true,
|
||||
"disable-scroll": true,
|
||||
"active-only": false,
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
"persistent": "",
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": [ ],
|
||||
"2": [ ],
|
||||
"3": [ ],
|
||||
"4": [ ],
|
||||
"5": [ ]
|
||||
}
|
||||
|
||||
},
|
||||
"wireplumber": {
|
||||
"format": " {volume}%",
|
||||
"format-muted": " 0%",
|
||||
"on-click": "pavucontrol",
|
||||
"on-click-right": "helvum",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 5
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"custom/appmenu": {
|
||||
"format": " start",
|
||||
"on-click": "pkill -x rofi || rofi -show drun"
|
||||
},
|
||||
"custom/gpu": {
|
||||
"format": " {}%",
|
||||
"interval": 5,
|
||||
"tooltip": false,
|
||||
"exec": "nvidia-smi --query | grep Gpu | tail -1 | awk '{print $3}'"
|
||||
},
|
||||
"custom/poweroff": {
|
||||
"tooltip": false,
|
||||
"format": " ",
|
||||
"on-click": "pgrep poweroff.sh || $HOME/.config/waybar/scripts/poweroff.sh"
|
||||
},
|
||||
}
|
||||
]
|
||||
@@ -1,84 +0,0 @@
|
||||
@import "mocha.css";
|
||||
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
min-height: 0;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
font-family: "Hack Nerd Font";
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
border-radius: 0px;
|
||||
border-bottom: 0px solid @overlay0;
|
||||
background: rgb(0, 78, 214);
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
border-radius: 8px;
|
||||
margin: 4px 2px;
|
||||
padding: 0px 8px;
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-center,
|
||||
.modules-right {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.modules-right {
|
||||
padding-right: 0px;
|
||||
background: rgb(63, 149, 235);
|
||||
}
|
||||
|
||||
#custom-appmenu {
|
||||
background: rgb(0, 141, 0);
|
||||
padding: 0px 12px;
|
||||
border-top-right-radius: 13px;
|
||||
border-bottom-right-radius: 13px;
|
||||
border-right: solid 3px #088;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#memory,
|
||||
#temperature,
|
||||
#tray,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#network,
|
||||
#custom-gpu,
|
||||
#custom-poweroff,
|
||||
#custom-weather {
|
||||
margin-left: 4px;
|
||||
margin-right: 2px;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
#network {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#custom-appmenu,
|
||||
#workspaces label,
|
||||
#network {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
||||
#clock {
|
||||
min-width: 80px;
|
||||
}
|
||||
Reference in New Issue
Block a user