This commit is contained in:
2025-04-29 13:39:02 -05:00
commit 9cbb583982
2257 changed files with 77258 additions and 0 deletions

87
modules/waybar/config Normal file
View File

@@ -0,0 +1,87 @@
{
"layer": "top",
"margin": "5, 5, 5, 5",
"modules-left": ["hyprland/workspaces"],
"modules-center": ["clock"],
"modules-right": ["mpris", "cava", "network", "wireplumber", "tray"],
"battery": {
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""]
},
"clock": {
"format-alt": "{:%a, %d. %b %H:%M}"
},
"cava": {
"bars": 14,
"bar_delimiter": 0,
"format-icons" : ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█" ],
},
"network": {
"format": "{ifname}",
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "󰈁",
"format-disconnected": "", //An empty format will hide the module.
"tooltip-format": "{ifname} via {gwaddr} 󰊗",
"tooltip-format-wifi": "{essid} ({signalStrength}%) ",
"tooltip-format-ethernet": "{ifname} ",
"tooltip-format-disconnected": "Disconnected",
"max-length": 50
},
"privacy": {
"icon-spacing": 4,
"icon-size": 18,
"transition-duration": 250,
"modules": [
{
"type": "screenshare",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-out",
"tooltip": true,
"tooltip-icon-size": 24
},
{
"type": "audio-in",
"tooltip": true,
"tooltip-icon-size": 24
}
]
},
"mpris": {
"format": "{player_icon}",
"format-paused": "{status_icon}",
"player-icons": {
"default": "▶",
"mpv": "🎵"
},
"status-icons": {
"paused": "⏸"
},
},
"wireplumber": {
"format": "{volume}%",
"format-muted": "󰝟",
"on-click": "pavucontrol",
"scroll-step": 0.8,
"max-volume": 100,
"tooltip": true,
"tooltip-format": "{volume}% volume on device {node_name}"
},
"hyprland/workspaces": {
"active-only": false,
"format": "{icon}",
"format-icons": {
"active": "",
"default": "",
}
}
}

View File

@@ -0,0 +1,23 @@
/*
* Variant: Rosé Pine
* Maintainer: DankChoir
*/
@define-color base #191724;
@define-color surface #1f1d2e;
@define-color overlay #26233a;
@define-color muted #6e6a86;
@define-color subtle #908caa;
@define-color text #e0def4;
@define-color love #eb6f92;
@define-color gold #f6c177;
@define-color rose #ebbcba;
@define-color pine #31748f;
@define-color foam #9ccfd8;
@define-color iris #c4a7e7;
@define-color highlightLow #21202e;
@define-color highlightMed #403d52;
@define-color highlightHigh #524f67;

93
modules/waybar/style.css Normal file
View File

@@ -0,0 +1,93 @@
* {
font-family: "Roboto";
font-size: 17px;
border-radius: 10px;
}
window#waybar {
background-color: #282828;
color: #ebdbb2;
margin: 0 4px;
}
window > box {
background-color: transparent;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
margin-right: 5px;
}
#network {
padding-left: 4px;
padding-right: 2px;
color: #458588;
}
#cava {
color: #b8bb26;
margin-left: 5px;
}
#tray {
margin-right: 5px;
margin-left: 5px;
}
#workspaces.button {
color: #ebdbb2;
}
#workspaces.button.focused {
color: #a89984;
background-color: #ebdbb2;
}
#clock {
padding: 0 5px;
margin-left: 5px;
margin-right: 5px;
}
#mpris {
padding-left: 5px;
}
.modules-center {
background: #3c3836;
box-shadow: 0px 0px 5px 0px #101010;
}
.modules-right {
background: #3c3836;
box-shadow: 0px 0px 5px 0px #101010;
}
.modules-left {
background: #3c3836;
box-shadow: 0px 0px 5px 0px #101010;
}
#wireplumber {
padding-left: 5px;
}
#pulseaudio-slider slider {
min-height: 0px;
min-width: 0px;
opacity: 0;
background-image: none;
border: none;
box-shadow: none;
}
#pulseaudio-slider trough {
min-height: 5px;
min-width: 80px;
border-radius: 5px;
background-color: #282828;
}
#pulseaudio-slider highlight {
min-width: 10px;
border-radius: 5px;
background-color: #98971a;
}