initial commit

This commit is contained in:
Mikkel Harboe Arp Henriksen
2025-06-12 21:52:57 +02:00
parent 4a8d5f6aa6
commit 986a86ee50
8 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
{
// Generelle indstillinger for Waybar
"layer": "top",
"position": "top",
"height": 30,
"spacing": 4,
// Moduler placeret til venstre
"modules-left": [
"custom/atlantis-logo",
"hyprland/workspaces"
],
// Modul i midten
"modules-center": [
"clock"
],
// Moduler placeret til højre
"modules-right": [
"pulseaudio",
"network",
"battery",
"tray"
],
// --- Individuel modulkonfiguration ---
"custom/atlantis-logo": {
"format": "ﯓ", // Erstat med et tegn fra din Lantean-skrifttype
"tooltip": false,
"on-click": "wofi --show drun" // Åbner app-menu ved klik
},
"hyprland/workspaces": {
"format": "{icon}",
"format-icons": {
"default": "", // En hul cirkel for inaktiv
"active": "" // En fyldt cirkel for aktiv
},
"on-scroll-up": "hyprctl dispatch workspace e+1",
"on-scroll-down": "hyprctl dispatch workspace e-1"
},
"clock": {
"format": " {:%H:%M:%S}",
"tooltip-format": "<big>{:%A, %d. %B %Y}</big>",
"format-alt": " {:%d/%m-%Y}"
},
"pulseaudio": {
"format": "{volume}% {icon}",
"format-muted": " Muted",
"format-icons": {
"default": ["", ""]
},
"on-click": "pavucontrol"
},
"network": {
"format-wifi": "{essid} ",
"format-ethernet": "{ifname} ",
"format-disconnected": "󰌙",
"tooltip-format-wifi": "Signal: {signalStrength}% @ {frequency}MHz",
"on-click": "nm-connection-editor"
},
"battery": {
"states": {
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-icons": ["", "", "", "", ""]
},
"tray": {
"icon-size": 18,
"spacing": 10
}
}