diff options
| author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 | 
|---|---|---|
| committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-06-16 16:16:11 +0200 | 
| commit | 2dab2233ef9cb54a3878e0120016d542045c7ee8 (patch) | |
| tree | 13f3f086adbe5edca4b0c6d3527bd040a50f627a /bin/guiscripts/setbg | |
| parent | 2a9d0908651ac236855fa515e14a83bada3ad7f9 (diff) | |
checkpoint
Diffstat (limited to 'bin/guiscripts/setbg')
| -rwxr-xr-x | bin/guiscripts/setbg | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/guiscripts/setbg b/bin/guiscripts/setbg new file mode 100755 index 0000000..a4109ab --- /dev/null +++ b/bin/guiscripts/setbg @@ -0,0 +1,5 @@ +#!/bin/sh +cd "$HOME/pics/wallpapers" || exit 1 +bg="$(find . -type f -printf '%f\n' | sed 's@^\./@@' | dmenu -c -x)" +[ "$bg" ] || exit 1 +feh --no-fehbg --bg-scale "$bg"  | 
