Inital Comit Upload Config Files

This commit is contained in:
2026-03-17 00:32:42 +01:00
commit 343af5e9d2
4 changed files with 321 additions and 0 deletions

92
config.jsonc Normal file
View File

@@ -0,0 +1,92 @@
{
"layer": "top",
"position": "top",
"height": 42,
"spacing": 6,
"modules-left": [
"hyprland/workspaces"
],
"modules-center": [
"clock"
],
"modules-right": [
"pulseaudio",
"network",
"custom/serverstatus",
"cpu",
"memory",
"temperature",
"tray",
"custom/notifications"
],
"hyprland/workspaces": {
"disable-scroll": true,
"all-outputs": true,
"format": "{name}"
},
"clock": {
"format": " {:%H:%M}",
"tooltip-format": " {:%A, %d. %B %Y}"
},
"cpu": {
"format": " {usage}%",
"tooltip": true
},
"memory": {
"format": " {}%",
"tooltip": true
},
"temperature": {
"hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",
"critical-threshold": 80,
"format": " {temperatureC}°C",
"format-critical": " {temperatureC}°C",
"tooltip": true
},
"network": {
"format-wifi": " {signalStrength}%",
"format-ethernet": "󰈀 Ethernet",
"format-disconnected": "󰖪 Offline",
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
"tooltip-format-ethernet": "Kabel verbunden",
"tooltip-format-disconnected": "Keine Verbindung"
},
"pulseaudio": {
"format": "{icon} {volume}%",
"format-muted": " muted",
"format-icons": {
"default": ["", "", ""]
}
},
"tray": {
"icon-size": 16,
"spacing": 8
},
"custom/notifications": {
"exec": "~/.config/waybar/scripts/notifications.sh",
"interval": 2,
"return-type": "json",
"on-click": "swaync-client -t",
"escape": true
},
"custom/serverstatus": {
"exec": "/home/pascal/.config/waybar/scripts/server-status.sh",
"interval": 10,
"return-type": "json",
"tooltip": true,
"on-click": "bash /home/pascal/.config/hypr/scripts/homelab/homelab-menu.sh"
}
}