diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2025-03-30 01:00:51 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2025-03-30 01:00:51 -0400 |
commit | f4c4550e327d9090c82a735d39d104d0bedb602d (patch) | |
tree | fcfa762512155c132a66d3adbb56067ca2d5d61b /.local/bin/makewall.bak | |
parent | 43dbb32d741e11f8e06341f515944ec757d4578f (diff) |
Loads of laptop shit
Diffstat (limited to '.local/bin/makewall.bak')
-rwxr-xr-x | .local/bin/makewall.bak | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.local/bin/makewall.bak b/.local/bin/makewall.bak new file mode 100755 index 0000000..b098dff --- /dev/null +++ b/.local/bin/makewall.bak @@ -0,0 +1,30 @@ +#!/bin/sh + +wallDir="${XDG_CONFIG_HOME:-$HOME}/wallpapers" + +# Acquire the list of connected displays +displays="$(wlr-randr --json | jq -r '.[] | select(.enabled) | .name')" +echo "$displays" + +# If there is a wallpaper with a filename matching the display +# name, set it as the wallpaper for that display. +# ex: DP-1.jpg and DP-1.png are both valid filenames +# Otherwise, set the wallpaper to the default wallpaper +# (default.png or default.jpg) +setDisplay() { + case $(ls $wallDir) in + *"$1"*) + wall=$(ls $wallDir | grep "$1" | head -n 1) + ;; + *) + wall=$(ls $wallDir | grep "default" | head -n 1) + ;; + esac + swaybg --output $1 -m fill --image $wallDir/$wall & +} + +# Set the wallpaper for each display +killall swaybg >/dev/null 2>&1 +for display in $displays; do + setDisplay $display +done |