2 weeks no ISO and im losing my mind — README finally accurate, WM configs so i3cels stop coping, dconf wallpaper actually points to a file that exists. someone sedate me

This commit is contained in:
2026-07-28 20:34:39 +02:00
parent 4b7fd8835b
commit 26071fd05d
28 changed files with 1541 additions and 34 deletions
@@ -0,0 +1,70 @@
{
"layer": "top",
"position": "top",
"spacing": 12,
"modules-left": ["sway/workspaces", "sway/mode", "sway/window"],
"modules-center": ["clock"],
"modules-right": ["cpu", "memory", "pulseaudio", "network", "battery", "tray"],
"sway/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"format": "{icon}",
"format-icons": {
"1": "1", "2": "2", "3": "3", "4": "4",
"5": "5", "6": "6", "7": "7", "8": "8",
"9": "9", "10": "0"
}
},
"sway/window": {
"format": "{}",
"max-length": 80
},
"clock": {
"format": "{:%H:%M}",
"format-alt": "{:%a %b %d}",
"tooltip-format": "{:%Y-%m-%d}",
"interval": 30
},
"cpu": {
"interval": 5,
"format": " {usage}%",
"states": { "warning": 70, "critical": 90 }
},
"memory": {
"interval": 5,
"format": " {percentage}%",
"states": { "warning": 70, "critical": 90 }
},
"pulseaudio": {
"format": "{icon} {volume}%",
"format-muted": " muted",
"format-icons": { "default": ["", "", ""] },
"on-click": "pavucontrol",
"scroll-step": 5
},
"network": {
"format-wifi": " {essid}",
"format-ethernet": " eth",
"format-disconnected": " Off",
"interval": 5
},
"battery": {
"format": "{icon} {capacity}%",
"format-charging": " {capacity}%",
"format-icons": ["", "", "", "", ""],
"states": { "warning": 30, "critical": 15 }
},
"tray": {
"icon-size": 16,
"spacing": 8
}
}
@@ -0,0 +1,88 @@
@define-color bg #20252B;
@define-color bg-alt #2A3038;
@define-color fg #E3E2E6;
@define-color blue #4A9EFF;
@define-color cyan #00D4FF;
@define-color green #50FA7B;
@define-color orange #FFB86C;
@define-color red #FF5555;
* {
border: none;
border-radius: 0;
min-height: 0;
margin: 2px;
padding: 0;
font-family: "JetBrains Mono Nerd Font", sans-serif;
font-size: 13px;
}
#waybar {
background: rgba(32, 37, 43, 0.85);
color: @fg;
padding: 4px 8px;
}
#workspaces {
margin: 0 4px;
}
#workspaces button {
border-radius: 8px;
padding: 2px 8px;
margin: 2px;
background: transparent;
color: @fg;
}
#workspaces button.focused {
background: @blue;
color: @bg;
font-weight: bold;
}
#workspaces button.urgent {
background: @red;
color: @fg;
}
#clock,
#cpu,
#memory,
#pulseaudio,
#network,
#battery,
#tray {
padding: 0 10px;
margin: 2px 2px;
border-radius: 6px;
background: @bg-alt;
}
#clock {
color: @blue;
font-weight: bold;
}
#cpu { color: @cyan; }
#cpu.warning { color: @orange; }
#cpu.critical { color: @red; }
#memory { color: @green; }
#memory.warning { color: @orange; }
#memory.critical { color: @red; }
#pulseaudio { color: @fg; }
#pulseaudio.muted { color: @orange; }
#network { color: @cyan; }
#network.disconnected { color: @red; }
#battery { color: @fg; }
#battery.warning { color: @orange; }
#battery.critical { color: @red; }
#battery.charging { color: @green; }
#tray {
background: transparent;
}