initial config

This commit is contained in:
matiss
2026-04-20 15:08:47 +00:00
commit 8f4daf76b8
27 changed files with 1458 additions and 0 deletions

115
config/waybar/config.jsonc Normal file
View File

@@ -0,0 +1,115 @@
// ══════════════════════════════════════════
// WAYBAR CONFIGURATION — Gruvbox Dark
// ══════════════════════════════════════════
{
"layer": "top",
"position": "top",
"height": 36,
"spacing": 4,
"margin-top": 4,
"margin-left": 8,
"margin-right": 8,
// Module layout
"modules-left": [
"hyprland/workspaces",
"hyprland/window"
],
"modules-center": [
"clock"
],
"modules-right": [
"tray",
"pulseaudio",
"network",
"bluetooth",
"battery",
"custom/power"
],
// ── Workspaces ────────────────────────
"hyprland/workspaces": {
"format": "{icon}",
"format-icons": {
"1": "1",
"2": "2",
"3": "3",
"4": "4",
"5": "5",
"6": "6",
"7": "7",
"8": "8",
"9": "9",
"10": "0"
},
"on-click": "activate",
"sort-by-number": true,
"active-only": false
},
// ── Window Title ──────────────────────
"hyprland/window": {
"format": "{}",
"max-length": 40,
"separate-outputs": true
},
// ── Clock ─────────────────────────────
"clock": {
"format": "{:%H:%M}",
"format-alt": "{:%A, %B %d, %Y %H:%M}",
"tooltip-format": "<tt><small>{calendar}</small></tt>"
},
// ── Audio ─────────────────────────────
"pulseaudio": {
"format": "{icon} {volume}%",
"format-muted": " muted",
"format-icons": {
"default": ["", "", ""]
},
"on-click": "pavucontrol"
},
// ── Network ───────────────────────────
"network": {
"format-wifi": " {signalStrength}%",
"format-ethernet": " {ipaddr}",
"format-disconnected": " off",
"tooltip-format-wifi": "{essid} ({signalStrength}%)\n{ipaddr}",
"on-click": "nm-connection-editor"
},
// ── Bluetooth ─────────────────────────
"bluetooth": {
"format": " {status}",
"format-connected": " {device_alias}",
"format-disabled": "",
"on-click": "blueman-manager"
},
// ── Battery ───────────────────────────
"battery": {
"states": {
"warning": 30,
"critical": 15
},
"format": "{icon} {capacity}%",
"format-charging": " {capacity}%",
"format-plugged": " {capacity}%",
"format-icons": ["", "", "", "", ""]
},
// ── System Tray ───────────────────────
"tray": {
"icon-size": 16,
"spacing": 8
},
// ── Power Button ──────────────────────
"custom/power": {
"format": "",
"on-click": "hyprlock",
"tooltip": false
}
}

150
config/waybar/style.css Normal file
View File

@@ -0,0 +1,150 @@
/* ══════════════════════════════════════════
* WAYBAR STYLES — Gruvbox Dark
* ══════════════════════════════════════════
* Gruvbox palette:
* bg0_h = #1d2021 (hardest dark)
* bg0 = #282828 (dark background)
* bg1 = #3c3836
* bg2 = #504945
* fg = #ebdbb2 (light foreground)
* yellow = #d79921
* green = #b8bb26
* red = #cc241d
* aqua = #689d6a
* orange = #d65d0e
* blue = #458588
* ══════════════════════════════════════════ */
* {
font-family: "JetBrainsMono Nerd Font", monospace;
font-size: 13px;
min-height: 0;
border: none;
border-radius: 0;
}
window#waybar {
background: rgba(29, 32, 33, 0.92);
color: #ebdbb2;
border-radius: 10px;
}
/* ── Module defaults ─────────────────── */
#workspaces,
#window,
#clock,
#pulseaudio,
#network,
#bluetooth,
#battery,
#tray,
#custom-power {
padding: 0 10px;
margin: 4px 2px;
border-radius: 6px;
background: transparent;
}
/* ── Workspaces ──────────────────────── */
#workspaces button {
color: #a89984;
padding: 0 6px;
margin: 2px;
border-radius: 4px;
background: transparent;
transition: all 0.2s ease;
}
#workspaces button.active {
color: #1d2021;
background: #d79921;
font-weight: bold;
}
#workspaces button:hover {
color: #ebdbb2;
background: #504945;
}
/* ── Window Title ────────────────────── */
#window {
color: #a89984;
font-style: italic;
}
/* ── Clock ───────────────────────────── */
#clock {
color: #ebdbb2;
font-weight: bold;
}
/* ── Audio ───────────────────────────── */
#pulseaudio {
color: #b8bb26;
}
#pulseaudio.muted {
color: #928374;
}
/* ── Network ─────────────────────────── */
#network {
color: #83a598;
}
#network.disconnected {
color: #cc241d;
}
/* ── Bluetooth ───────────────────────── */
#bluetooth {
color: #458588;
}
/* ── Battery ─────────────────────────── */
#battery {
color: #b8bb26;
}
#battery.charging {
color: #d79921;
}
#battery.warning:not(.charging) {
color: #d65d0e;
}
#battery.critical:not(.charging) {
color: #cc241d;
animation: blink 1s steps(2) infinite;
}
@keyframes blink {
to { color: #ebdbb2; }
}
/* ── System Tray ─────────────────────── */
#tray > .passive {
-gtk-icon-effect: dim;
}
/* ── Power Button ────────────────────── */
#custom-power {
color: #cc241d;
padding: 0 8px;
}
#custom-power:hover {
color: #fb4934;
}
/* ── Tooltips ────────────────────────── */
tooltip {
background: #282828;
border: 1px solid #504945;
border-radius: 6px;
}
tooltip label {
color: #ebdbb2;
}