This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/setbg

22 lines
752 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
######################################################################
2021-02-14 19:07:45 +01:00
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
# @file : setbg
# @license : GPLv3
2021-02-14 19:07:45 +01:00
# @created : Wednesday May 20, 2020 18:23:50 CEST
# @description : set the wallpaper
######################################################################
2020-05-06 03:20:19 +02:00
# If given an argument
2021-07-12 17:53:03 +02:00
# if $1 is a jpg file, set it as a wallpaper
2020-05-06 03:20:19 +02:00
# if $1 is a directory, choose a randomized image in it, set it as wallpaper
wall="$XDG_STATE_HOME/wall.jpg"
[ -f "$1" ] && cp $1 "$wall" && dunstify -u "low" "Wallpaper changed"
2020-05-06 03:20:19 +02:00
[ -d "$1" ] && cp "$(find "$1"/*.jpg -type f | shuf -n 1)" "$" && dunstify -u "low" "Random wallpaper chosen"
2020-05-06 03:20:19 +02:00
xwallpaper --zoom "$wall"