AutoYADM commit: 2025-03-08 14:00:03

This commit is contained in:
Daniel Fichtinger 2025-03-08 14:00:03 -05:00
parent 1ce3f8223b
commit e0ea6ad4a8
3 changed files with 18 additions and 9 deletions

View file

@ -707,8 +707,8 @@ binds {
// Mod+Shift+Space { switch-layout "prev"; } // Mod+Shift+Space { switch-layout "prev"; }
// reload waybar // reload waybar
Mod+Shift+W { Mod+Shift+W {
// spawn "systemctl" "--user" "restart" "waybar" spawn "systemctl" "--user" "restart" "waybar"
spawn "killall" "-SIGUSR2" "waybar" // spawn "killall" "-SIGUSR2" "waybar"
} }
Mod+S { Mod+S {
screenshot screenshot

View file

@ -124,6 +124,7 @@
{ {
"layer": "top", "layer": "top",
"name": "leftbar", "name": "leftbar",
"width": 16,
"position": "left", "position": "left",
"modules-left": [ "modules-left": [
"niri/workspaces" "niri/workspaces"

View file

@ -20,16 +20,23 @@
padding: 0; padding: 0;
} }
.leftbar {
min-width: 0;
/* font-size: 9px; */
}
window#waybar { window#waybar {
background: @bg; background: @bg;
padding: 0; padding: 0;
margin: 0; margin: 0;
/* width: 16px; */
} }
window.leftbar#waybar { window.leftbar#waybar {
background-color: transparent; background-color: transparent;
padding: 0; /* padding: 0; */
margin: 0; /* margin: 0; */
/* min-width: 16px; */
/* max-width: 16px; */ /* max-width: 16px; */
} }
@ -57,19 +64,20 @@ tooltip {
#workspaces { #workspaces {
background-color: transparent; background-color: transparent;
/* background-color: @bg; */ /* background-color: @bg; */
margin: 0; /* margin: 0; */
padding: 2px 4px; /* padding: 2px 4px; */
} }
#workspaces button { #workspaces button {
all: initial; all: initial;
min-width: 0; min-width: 0;
box-shadow: none; box-shadow: none;
padding: 0px 4px; /* padding: 0px 4px; */
color: @fg; color: @fg;
min-height: 16px; /* min-height: 16px; */
/* width: 16px; */
/* Sets a smaller minimum height */ /* Sets a smaller minimum height */
margin: 2px 0; /* margin: 2px 0; */
/* line-height: 16px; */ /* line-height: 16px; */
} }