initial commit

This commit is contained in:
smayzy
2025-02-25 21:21:43 +01:00
parent 5017c1f945
commit 4e9928a2e4
14 changed files with 925 additions and 0 deletions
+161
View File
@@ -0,0 +1,161 @@
// -*- mode: json -*-
{
"layer": "top",
"modules-left": [
"custom/launcher",
"custom/right-arrow-dark",
"custom/right-arrow-light",
"network",
"custom/right-arrow-dark",
"custom/right-arrow-light",
"hyprland/workspaces",
"custom/right-arrow-dark"
],
"modules-center": [
"custom/left-arrow-dark",
"clock#1",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"clock#2",
"custom/right-arrow-dark",
"custom/right-arrow-light",
"clock#3",
"custom/right-arrow-dark"
],
"modules-right": [
"custom/left-arrow-dark",
"custom/updates",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"cpu",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"memory",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"pulseaudio",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"backlight",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"battery",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"disk",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"tray",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"custom/power"
],
"custom/left-arrow-dark": {
"format": "",
"tooltip": false
},
"custom/left-arrow-light": {
"format": "",
"tooltip": false
},
"custom/right-arrow-dark": {
"format": "",
"tooltip": false
},
"custom/right-arrow-light": {
"format": "",
"tooltip": false
},
"backlight": {
"tooltip": false,
"format": " {}%",
"interval":1
},
"network": {
"tooltip": false,
"format-wifi": " {essid}",
"format-ethernet": ""
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 20
},
"format": "{icon} {capacity}%",
"format-charging": " {capacity}%",
"format-plugged": " {capacity}%",
"format-alt": "{time} {icon}",
"format-icons": ["", "", "", "", ""],
"interval":1
},
"hyprland/workspaces": {
"disable-scroll": true,
"format": "{name}"
},
"clock#1": {
"format": "{:%a}",
"tooltip": false
},
"clock#2": {
"format": "{:%I:%M %p}",
"tooltip": false
},
"clock#3": {
"format": "{:%d-%m}",
"tooltip": false
},
"pulseaudio": {
"format": "{icon} {volume:2}%",
"format-bluetooth": "{icon} {volume}%",
"format-muted": "MUTE",
"format-icons": {
"headphones": "",
"default": [
"",
""
]
},
"scroll-step": 5,
"on-click": "pamixer -t",
"on-click-right": "pavucontrol"
},
"memory": {
"interval": 5,
"format": " {}%"
},
"cpu": {
"interval": 5,
"format": " {usage}%"
},
"disk": {
"interval": 5,
"format": " {percentage_used:2}%",
"path": "/"
},
"tray": {
"icon-size": 20
},
"custom/launcher":{
"format": "  ",
"on-click": "wofi --show drun",
"on-click-right": "killall wofi"
},
"custom/power":{
"format": "  ",
"on-click": "wlogout"
},
"custom/updates":{
"format": " {} Update(s) ",
"exec": "checkupdates | wc -l",
"interval": 15
}
}
+99
View File
@@ -0,0 +1,99 @@
* {
font-size: 15px;
font-family: monospace;
}
window#waybar {
background: #292b2e;
color: #fdf6e3;
}
#custom-right-arrow-dark,
#custom-left-arrow-dark {
color: #1a1a1a;
}
#custom-right-arrow-light,
#custom-left-arrow-light {
color: #292b2e;
background: #1a1a1a;
}
#custom-updates {
color: #F3881F;
background: #1a1a1a;
}
#custom-power {
color: #ff8080;
background: #1a1a1a;
}
#custom-launcher,
#workspaces,
#clock.1,
#clock.2,
#clock.3,
#pulseaudio,
#battery,
#backlight,
#network,
#memory,
#cpu,
#disk,
#tray {
background: #1a1a1a;
}
#battery.charging, #battery.plugged {
color: #00ff00;
}
#battery.critical:not(.charging) {
color: #FF0000;
}
#workspaces button {
padding: 0 2px;
color: #fdf6e3;
}
#workspaces button.focused {
color: #268bd2;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button:hover {
background: #1a1a1a;
border: #1a1a1a;
padding: 0 3px;
}
#battery {
color: #b5e8e0;
}
#backlight {
color: #ffff80;
}
#pulseaudio {
color: #268bd2;
}
#memory {
color: #2aa198;
}
#cpu {
color: #6c71c4;
}
#disk {
color: #b58900;
}
#clock,
#pulseaudio,
#backlight,
#battery,
#memory,
#cpu,
#tray,
#network,
#disk {
padding: 0 10px;
}