diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-06-20 23:01:09 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-06-20 23:01:09 +0200 |
| commit | 581865ee0c8b8aea872f053d804a41fb5f416b17 (patch) | |
| tree | 9a2f99ea48c31629a5c3c42b0454483982cdbfed /xwallpaper-random-notify | |
| parent | c5d101ab2c9db3b1a001cb56953cb90b24f8fdcf (diff) | |
| download | scripts-581865ee0c8b8aea872f053d804a41fb5f416b17.tar.gz scripts-581865ee0c8b8aea872f053d804a41fb5f416b17.zip | |
Various shellcheck fixes (www.shellcheck.net)
Diffstat (limited to '')
| -rwxr-xr-x | xwallpaper-random-notify | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xwallpaper-random-notify b/xwallpaper-random-notify index 6ab3d56..1d9e2bf 100755 --- a/xwallpaper-random-notify +++ b/xwallpaper-random-notify | |||
| @@ -10,8 +10,8 @@ folder=~/pictures/wallpapers | |||
| 10 | pic=$(ls $folder | sort -R | head -1) | 10 | pic=$(ls $folder | sort -R | head -1) |
| 11 | 11 | ||
| 12 | # Alternative: use feh | 12 | # Alternative: use feh |
| 13 | #feh --bg-fill --no-fehbg $folder/$pic | 13 | #feh --bg-fill --no-fehbg "$folder"/"$pic" |
| 14 | xwallpaper --zoom $folder/$pic | 14 | xwallpaper --zoom "$folder"/"$pic" |
| 15 | 15 | ||
| 16 | # Uncomment to notify | 16 | # Uncomment to notify |
| 17 | #$notify "Background of the day" $pic | 17 | #$notify "Background of the day" "$pic" |
