summaryrefslogtreecommitdiff
path: root/.local/bin
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-08-08 21:07:31 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-08-08 21:07:31 -0400
commit3a4ed65e66a20b9e15e93f4f73cf8496b493c633 (patch)
tree7727e660ad50c5771abe5ea44e69d60bfd4e681c /.local/bin
parent22f84522b2c0a50a38de3323fcf7edf9fa702723 (diff)
Massive step towards wayland migration
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/dropdowntoggle2
-rwxr-xr-x.local/bin/makewall7
2 files changed, 4 insertions, 5 deletions
diff --git a/.local/bin/dropdowntoggle b/.local/bin/dropdowntoggle
index 11f5521..e1f98fb 100755
--- a/.local/bin/dropdowntoggle
+++ b/.local/bin/dropdowntoggle
@@ -24,7 +24,7 @@ case "$TERMINAL" in
;;
*foot)
classflag="-a"
- titleflag="-T"
+ titleflag="--title"
cmdflag="-e"
esac
diff --git a/.local/bin/makewall b/.local/bin/makewall
index 9edd3c2..991fa11 100755
--- a/.local/bin/makewall
+++ b/.local/bin/makewall
@@ -1,12 +1,11 @@
#!/bin/sh
-# NOTE: (for wayland migration)
-# wlr-randr --json | jq -r '.[] | select(.enabled) | .name'
-
wallDir="$XDG_CONFIG_HOME/wallpapers"
+# Reset any existing wallpapers
+killall swaybg
+
# Acquire the list of connected displays
-# displays=$(xrandr | grep " connected" | sed 's/^\([a-Z,0-9,-]*\).*/\1/')
displays="$(wlr-randr --json | jq -r '.[] | select(.enabled) | .name')"
echo "$displays"