FOND d'écran: adaptation pour Sway
This commit is contained in:
@ -6,11 +6,19 @@
|
||||
|
||||
directory="$HOME/wallpapers"
|
||||
minutes=15
|
||||
PROGRAM=`which feh`
|
||||
|
||||
# Some tests
|
||||
if [ -z "`which feh`" ]; then
|
||||
if [[ "$XDG_SESSION_TYPE" -eq "wayland" ]]; then
|
||||
PROGRAM=`which swaymsg`
|
||||
if [ -z "${PROGRAM}" ]; then
|
||||
echo "This script needs the swaymsg program."
|
||||
exit 1
|
||||
fi
|
||||
wayland=1
|
||||
elif [ -z "${PROGRAM}" ]; then
|
||||
echo "This script needs the feh program. Install it."
|
||||
i exit 1
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d '$directory' ]; then
|
||||
@ -40,7 +48,11 @@ while true; do
|
||||
|
||||
# Change background
|
||||
file="${array_files["$NUMBER"]}"
|
||||
feh --bg-fill "$directory/$file"
|
||||
if [[ -n wayland ]]; then
|
||||
$PROGRAM output "*" bg "$directory/$file" fill
|
||||
else
|
||||
feh --bg-fill "$directory/$file"
|
||||
fi
|
||||
|
||||
# Wait some times
|
||||
sleep $seconds
|
||||
|
Reference in New Issue
Block a user