wip:waybar
This commit is contained in:
parent
8d786e37a7
commit
e0b15d993b
3 changed files with 128 additions and 8 deletions
|
|
@ -39,6 +39,7 @@
|
||||||
krita
|
krita
|
||||||
gpustat
|
gpustat
|
||||||
librewolf
|
librewolf
|
||||||
|
pamixer
|
||||||
];
|
];
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,86 @@
|
||||||
{
|
{
|
||||||
// Bar Options
|
// Bar Options
|
||||||
"layer": "top",
|
|
||||||
"output": "DP-3",
|
"output": "DP-3",
|
||||||
"position": "left",
|
"position": "left",
|
||||||
"margin": "5px",
|
"margin-left": 8,
|
||||||
|
"margin-top": 8,
|
||||||
|
"margin-bottom": 8,
|
||||||
|
// TODO: Remove
|
||||||
|
"reload_style_on_change": true,
|
||||||
// Placing Modules
|
// Placing Modules
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
|
"clock",
|
||||||
|
"custom/cpu-label",
|
||||||
|
"cpu",
|
||||||
|
"custom/memory-label",
|
||||||
|
"memory",
|
||||||
|
"custom/disk-label",
|
||||||
|
"disk"
|
||||||
|
],
|
||||||
|
"modules-center": [
|
||||||
"niri/workspaces"
|
"niri/workspaces"
|
||||||
],
|
],
|
||||||
"modules-center": [],
|
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"clock"
|
"wireplumber",
|
||||||
|
"tray"
|
||||||
],
|
],
|
||||||
// Module Configuration
|
// Module Configuration
|
||||||
"niri/workspaces": {
|
"niri/workspaces": {
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"active": "",
|
"active": "",
|
||||||
"default": ""
|
"default": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"clock": {
|
||||||
|
"interval": 60,
|
||||||
|
"format": "{:%H\n%M}",
|
||||||
|
"format-alt": "<span color='#d369af'>{:%d\n%m}</span>",
|
||||||
|
"tooltip": false,
|
||||||
|
"justify": "center"
|
||||||
|
},
|
||||||
|
"custom/cpu-label": {
|
||||||
|
"format": "CPU",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"cpu": {
|
||||||
|
"interval": "30",
|
||||||
|
"format": "{usage}%",
|
||||||
|
"max-length": 2
|
||||||
|
},
|
||||||
|
"custom/memory-label": {
|
||||||
|
"format": "MEM",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"memory": {
|
||||||
|
"interval": "30",
|
||||||
|
"format": "{percentage}%",
|
||||||
|
"max-length": 2
|
||||||
|
},
|
||||||
|
"custom/disk-label": {
|
||||||
|
"format": "SSD",
|
||||||
|
"tooltip": false
|
||||||
|
},
|
||||||
|
"disk": {
|
||||||
|
"interval": "30",
|
||||||
|
"format": "{percentage_used}%",
|
||||||
|
"max-length": 2
|
||||||
|
},
|
||||||
|
"wireplumber": {
|
||||||
|
"on-click": "pamixer -t",
|
||||||
|
"on-click-right": "pwvucontrol",
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-muted": "",
|
||||||
|
"format-icons": {
|
||||||
|
"default": [
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
""
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tray": {
|
||||||
|
"icon-size": 14,
|
||||||
|
"spacing": 18
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,60 @@
|
||||||
* {
|
* {
|
||||||
font-family: "VictorMono Nerd Font";
|
font-family: "VictorMono Nerd Font Propo";
|
||||||
font-size: 12;
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
tooltip,
|
||||||
|
#tray menu {
|
||||||
|
background: rgba(15, 11, 12, 0.9);
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 2px solid #572454;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background-color: rgba(15, 11, 12, 0.999);
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 2px 10px;
|
||||||
|
margin: 0;
|
||||||
|
color: #d369af;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
font-size: 15px;
|
||||||
|
padding: 8px 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#custom-cpu-label,
|
||||||
|
#custom-memory-label,
|
||||||
|
#custom-disk-label {
|
||||||
|
color: #572454;
|
||||||
|
padding-top: 6px;
|
||||||
|
border-top: 1px solid #572454;
|
||||||
|
}
|
||||||
|
|
||||||
|
#disk {
|
||||||
|
border-bottom: 1px solid #572454;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu,
|
||||||
|
#memory,
|
||||||
|
#disk {
|
||||||
|
color: #d369af;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#wireplumber {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
margin: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue