initial repo

This commit is contained in:
2025-04-30 15:58:06 -05:00
commit 6626b61de7
81 changed files with 14917 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
{
"layer": "top",
"position": "top",
"height": 26,
"spacing": 3,
"modules-left": ["hyprland/workspaces"],
"modules-center": ["clock"],
"modules-right": ["wireplumber", "group/bat", "group/net"],
"group/bat": {
"orientation": "horizontal",
"modules": ["battery"]
},
"group/net": {
"orientation": "horizontal",
"modules": ["network", "bluetooth"]
},
"hyprland/workspaces": {
"format": "{name}",
"sort-by-number": true,
"persistent-workspaces": {
}
},
"clock": {
"format": "{:%d.%m.%Y | %H:%M:%S}",
"interval": 1
},
"wireplumber": {
"format": "\udb81\udd7e {volume}%",
"max-volume": 100,
"scroll-step": 5
},
"battery": {
"bat": "BAT0",
"interval": 60,
"format": "{icon} {capacity}%",
"format-icons": ["\uf244", "\uf243", "\uf242", "\uf241", "\uf240"],
},
"network": {
"format": "",
"format-ethernet": "\udb83\udc9d ",
"format-wifi": "{icon} ",
"format-disconnected": "\udb83\udc9c ",
"format-icons": ["\udb82\udd2f", "\udb82\udd1f", "\udb82\udd22", "\udb82\udd25", "\udb82\udd28"],
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
"tooltip-format-ethernet": "{ifname}",
"tooltip-format-disconnected": "Disconnected",
},
"bluetooth": {
"format": "\udb80\udcaf",
"format-disabled": "\udb80\udcb2",
"format-connected": "\udb80\udcb1",
"tooltip-format": "{controller_alias}\t{controller_address}",
"tooltip-format-connected": "{controller_alias}\t{controller_address}\n\n{device_enumerate}",
"tooltip-format-enumerate-connected": "{device_alias}\t{device_address}"
},
}
+43
View File
@@ -0,0 +1,43 @@
@define-color foreground #eff0f1;
@define-color foreground-inactive #7f8c8d;
@define-color background #232629;
@define-color background-alt #31363b;
* {
font-family: Mononoki Nerd Font;
font-size: 14px;
padding: 0;
margin: 0;
}
#waybar {
color: @foreground;
background-color: @background;
}
#workspaces button {
color: @foreground-inactive;
padding-left: 2px;
padding-right: 2px;
}
#workspaces button.active {
color: @foreground;
background-color: @background-alt;
border-radius: 2px;
}
#wireplumber,
#bat,
#net {
background-color: @background-alt;
border-radius: 3px;
padding-left: 0.5em;
padding-right: 0.5em;
margin-left: 0.3em;
}
#battery,
#network {
margin-right: 0.8em;
}