23 lines
770 B
Bash
Executable File
23 lines
770 B
Bash
Executable File
#!/bin/sh
|
|
|
|
######################################################################
|
|
# @author : swytch
|
|
# @file : setbg
|
|
# @license : MIT
|
|
# @created : Wednesday May 20, 2020 18:23:50 CEST
|
|
#
|
|
# @description : set the wallpaper
|
|
# @dependencies : `xwallpaper`
|
|
######################################################################
|
|
|
|
|
|
# If given an argument
|
|
# if $1 is a png file, set it as a wallpaper
|
|
# if $1 is a directory, choose a randomized image in it, set it as wallpaper
|
|
|
|
[ -f "$1" ] && cp $1 "$XDG_CONFIG_HOME/wall.png" && dunstify -u "low" "Wallpaper changed"
|
|
|
|
[ -d "$1" ] && cp "$(find "$1"/*.png -type f | shuf -n 1)" "$XDG_CONFIG_HOME/wall.png" && dunstify -u "low" "Random wallpaper chosen"
|
|
|
|
xwallpaper --zoom "$XDG_CONFIG_HOME/wall.png"
|