aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/.config/fuzzel/fuzzel.ini2
-rwxr-xr-xhome/.config/sway/display-toggle.sh10
2 files changed, 6 insertions, 6 deletions
diff --git a/home/.config/fuzzel/fuzzel.ini b/home/.config/fuzzel/fuzzel.ini
index 164ce7d..36830df 100644
--- a/home/.config/fuzzel/fuzzel.ini
+++ b/home/.config/fuzzel/fuzzel.ini
@@ -1,6 +1,6 @@
[main]
font=mono:size=8
-width=600
+width=60
lines=15
[colors]
diff --git a/home/.config/sway/display-toggle.sh b/home/.config/sway/display-toggle.sh
index c2d2447..24569fc 100755
--- a/home/.config/sway/display-toggle.sh
+++ b/home/.config/sway/display-toggle.sh
@@ -23,15 +23,15 @@ fi
LAPTOP_WIDTH=$(swaymsg -t get_outputs -r | jq -r ".[] | select(.name == \"$LAPTOP\") | .current_mode.width")
[ -z "$LAPTOP_WIDTH" ] && LAPTOP_WIDTH=1920
-# On init, go straight to mirror; otherwise cycle
+# On init, go straight to laptop-off; otherwise cycle
if [ "$1" = "init" ]; then
- NEXT="mirror"
+ NEXT="laptop-off"
else
- CURRENT=$(cat "$STATE_FILE" 2>/dev/null || echo "mirror")
+ CURRENT=$(cat "$STATE_FILE" 2>/dev/null || echo "laptop-off")
case "$CURRENT" in
- mirror) NEXT="laptop-off" ;;
laptop-off) NEXT="side-by-side" ;;
- *) NEXT="mirror" ;;
+ side-by-side) NEXT="mirror" ;;
+ *) NEXT="laptop-off" ;;
esac
fi