Compare commits

..

2 Commits

Author SHA1 Message Date
4f77f73860 feat(waybar): delete autohide dock 2026-03-28 19:50:59 +01:00
b76e27d466 feat(waybar): add autohide dock 2026-03-28 19:50:28 +01:00
2 changed files with 34 additions and 0 deletions

26
waybar/config-dock.jsonc Normal file
View File

@@ -0,0 +1,26 @@
{
"layer": "overlay",
"position": "bottom",
"exclusive": false,
"passthrough": false,
"height": 56,
"margin-top": 0,
"margin-bottom": 8,
"margin-left": 0,
"margin-right": 0,
"modules-left": [],
"modules-center": [
"custom/launcher",
"hyprland/workspaces"
],
"modules-right": [],
"custom/launcher": {
"format": "",
"on-click": "wofi --show drun"
},
"hyprland/workspaces": {
"format": "{icon}",
"on-click": "activate",
"sort-by-number": true
}
}

8
waybar/style-dock.css Normal file
View File

@@ -0,0 +1,8 @@
window#waybar {
margin-bottom: -80px;
transition: margin 0.3s ease;
}
window#waybar.visible {
margin-bottom: 10px;
}