feat: initial commit

This commit is contained in:
oxypomme
2025-06-02 10:36:41 +02:00
commit e45db90e8b
16 changed files with 1087 additions and 0 deletions

162
.config/waybar/config Normal file
View File

@@ -0,0 +1,162 @@
{
"layer": "top",
"position": "top",
"modules-left": [
"sway/workspaces",
"custom/right-arrow-dark"
],
"modules-center": [
"custom/left-arrow-dark",
"clock#1",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"clock#2",
"custom/right-arrow-dark",
"custom/right-arrow-light",
"clock#3",
"custom/right-arrow-dark"
],
"modules-right": [
"custom/left-arrow-dark",
"pulseaudio",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"memory",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"cpu",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"battery",
"power-profiles-daemon",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"disk",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"custom/notifications",
"custom/left-arrow-light",
"custom/left-arrow-dark",
"tray"
],
"custom/left-arrow-dark": {
"format": "",
"tooltip": false
},
"custom/left-arrow-light": {
"format": "",
"tooltip": false
},
"custom/right-arrow-dark": {
"format": "",
"tooltip": false
},
"custom/right-arrow-light": {
"format": "",
"tooltip": false
},
"sway/workspaces": {
"disable-scroll": true,
"format": "{name}"
},
"custom/notifications": {
"escape": true,
"exec": "swaync-client -swb",
"exec-if": "which swaync-client",
"format": "{icon}",
"format-icons": {
"none": "󰅺",
"notification": "󰡟"
},
"on-click": "sleep 0.1 && swaync-client -t -sw",
"return-type": "json",
"tooltip": false
},
"clock#1": {
"format": "{:%a}",
"tooltip": false
},
"clock#2": {
"format": "{:%H:%M}",
"tooltip": false
},
"clock#3": {
"format": "{:%d/%m}",
"tooltip-format": "<tt>{calendar}</tt>",
"calendar": {
"mode" : "month",
"weeks-pos" : "right",
"format": {
"months": "<span color='#ffead3'><b>{}</b></span>",
"days": "<span color='#ecc6d9'><b>{}</b></span>",
"weeks": "<span color='#99ffdd'><b>W{}</b></span>",
"weekdays": "<span color='#ffcc66'><b>{}</b></span>",
"today": "<span color='#ff6699'><b><u>{}</u></b></span>"
}
}
},
"pulseaudio": {
"format": "{icon} {volume:2}%",
"format-bluetooth": "{icon} {volume}%",
"format-muted": "MUTE",
"format-icons": {
"headphones": "",
"default": [
"",
""
]
},
"scroll-step": 5,
"on-click": "pamixer -t",
"on-click-right": "pavucontrol"
},
"memory": {
"interval": 5,
"format": " {}%"
},
"cpu": {
"interval": 5,
"format": " {usage}%"
},
"battery": {
"states": {
"good": 95,
"warning": 30,
"critical": 15
},
"format": "{icon} {capacity}%",
"format-charging": "{icon} {capacity}% 󰚥",
"format-icons": [
"",
"",
"",
"",
""
]
},
"power-profiles-daemon": {
"hide-empty-text": true,
"format": "{icon}",
"format-icons": {
"unknown": "",
"balanced": "",
"performance": "",
"power-saver": "",
}
},
"disk": {
"interval": 5,
"format": " {percentage_used:2}%",
"path": "/"
},
"tray": {
"icon-size": 12,
"spacing": 10
}
}

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

@@ -0,0 +1,110 @@
@define-color nord0 #2e3440;
@define-color nord1 #3b4252;
@define-color nord2 #434c5e;
@define-color nord3 #4c566a;
@define-color nord4 #d8dee9;
@define-color nord5 #e5e9f0;
@define-color nord6 #eceff4;
@define-color nord7 #8fbcbb;
@define-color nord8 #88c0d0;
@define-color nord9 #81a1c1;
@define-color nord10 #5e81ac;
@define-color nord11 #bf616a;
@define-color nord12 #d08770;
@define-color nord13 #ebcb8b;
@define-color nord14 #a3be8c;
@define-color nord15 #b48ead;
* {
min-width: 0;
min-height: 0;
font-size: 13px;
font-family: FiraCode Nerd Font Propo;
}
window#waybar {
background: @nord1;
color: @nord4;
}
#custom-right-arrow-dark,
#custom-left-arrow-dark {
font-family: monospace;
font-size: 16px;
color: @nord0;
}
#custom-right-arrow-light,
#custom-left-arrow-light {
font-family: monospace;
font-size: 16px;
color: @nord1;
background: @nord0;
}
#custom-notifications,
#workspaces,
#clock.1,
#clock.2,
#clock.3,
#pulseaudio,
#memory,
#cpu,
#battery,
#power-profiles-daemon,
#disk,
#tray {
background: @nord0;
}
#workspaces button {
padding: 0 4px;
color: @nord4;
}
#workspaces button.focused {
color: @nord8;
}
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: @nord4;
color: @nord1;
border: @nord0;
}
#pulseaudio {
color: @nord10;
}
#memory {
color: @nord14;
}
#cpu {
color: @nord15;
}
#battery, #power-profiles-daemon {
color: @nord13;
}
#disk {
color: @nord12;
}
#custom-notifications {
padding: 0 6px;
}
#tray,
#clock,
#pulseaudio,
#memory,
#cpu,
#battery,
#disk {
padding: 0 10px;
}
#power-profiles-daemon {
padding-right: 10px;
}