[Linux] Update wallpaper service

This commit is contained in:
Ivan Malison 2016-10-27 14:45:46 -07:00
parent e597cbc013
commit cfbb2e6602
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
3 changed files with 17 additions and 17 deletions

View File

@ -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

View File

@ -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

View 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
}