[Linux] Update wallpaper service
This commit is contained in:
parent
e597cbc013
commit
cfbb2e6602
@ -1,10 +1,8 @@
|
||||
[Unit]
|
||||
Description=wallpaper
|
||||
Requires=compton.service
|
||||
After=compton.service
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/env wallpaper.sh
|
||||
ExecStop=/usr/bin/pkill wallpaper.sh
|
||||
|
||||
|
@ -1,16 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
WALLPAPER_DIR="$HOME/Pictures/wallpaper/"
|
||||
|
||||
random_paper() {
|
||||
find "$WALLPAPER_DIR"use -type l | shuf -n1
|
||||
}
|
||||
|
||||
wallpaper() {
|
||||
while true; do
|
||||
feh --bg-center $(random_paper) --bg-scale "$WALLPAPER_DIR"transparent1x1.png
|
||||
sleep 10m
|
||||
done
|
||||
}
|
||||
#!/usr/bin/env zsh
|
||||
|
||||
wallpaper
|
||||
|
15
dotfiles/lib/shellenv/wallpaper.sh
Normal file
15
dotfiles/lib/shellenv/wallpaper.sh
Normal file
@ -0,0 +1,15 @@
|
||||
WALLPAPER_DIR="$HOME/Pictures/wallpaper/"
|
||||
|
||||
random_paper() {
|
||||
find "$WALLPAPER_DIR"use -type l | shuf -n1
|
||||
}
|
||||
|
||||
wallpaper() {
|
||||
feh --bg-center $(random_paper) --bg-scale "$WALLPAPER_DIR"transparent1x1.png
|
||||
}
|
||||
|
||||
wallpaper_timer() {
|
||||
while true; do
|
||||
sleep 10m
|
||||
done
|
||||
}
|
Loading…
Reference in New Issue
Block a user