updated scripts

This commit is contained in:
liph
2026-04-30 13:13:42 +00:00
parent 3992fb9464
commit fd8e28ed14
60 changed files with 2770 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Save as ~/.config/niri/scripts/fix-bitwarden.sh
# Make executable: chmod +x ~/.config/niri/scripts/fix-bitwarden.sh
niri msg -j event-stream | jq --unbuffered -r '
select(.WindowOpenedOrChanged) |
.WindowOpenedOrChanged.window |
select(
(.title? | match("Extension:.*LibreWolf")) and
.is_floating == false
) |
.id
' | while read id; do
niri msg action toggle-window-floating --id="$id"
niri msg action set-window-height 50%
niri msg action set-window-width 20%
done