From 4f183f2aa83af08c6c36bd982e2726fb1ac25d4c Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 29 Apr 2018 02:00:39 -0400 Subject: [rc/wp] migrate my little wallpaper changer script to literate setup --- wp/.local/bin/wp | 15 --------------- wp/.local/bin/wp-auto | 48 ------------------------------------------------ 2 files changed, 63 deletions(-) delete mode 100755 wp/.local/bin/wp delete mode 100755 wp/.local/bin/wp-auto (limited to 'wp/.local/bin') diff --git a/wp/.local/bin/wp b/wp/.local/bin/wp deleted file mode 100755 index 9bfbd51..0000000 --- a/wp/.local/bin/wp +++ /dev/null @@ -1,15 +0,0 @@ -#! /bin/bash - -export DISPLAY=:0 - -case "$1" in - "day") - feh --bg-scale $HOME/usr/pics/island_day_by_arsenixc-d6ctqon.jpg - ;; - "night") - feh --bg-scale $HOME/usr/pics/island_night_by_arsenixc-d6cz757.jpg - ;; - *) - echo $"Usage: $0 {day|night}" - exit 1 -esac diff --git a/wp/.local/bin/wp-auto b/wp/.local/bin/wp-auto deleted file mode 100755 index d5eeb12..0000000 --- a/wp/.local/bin/wp-auto +++ /dev/null @@ -1,48 +0,0 @@ -#! /bin/bash - -SED=$(which sed) -ROFI=$(which rofi) - -export DISPLAY=:0 -HOUR=$(date +%H) - -if [ -z "${SED}" ] -then - echo "Did not find 'sed', script cannot continue." - exit 1 -fi -if [ -z "${ROFI}" ] -then - echo "Did not find rofi, there is no point to continue." - exit 1 -fi - -### -# Create if not exists, then removes #include of .theme file (if present) and add the selected theme to the end. -# Repeated calls should leave the config clean-ish -### -function set_theme() -{ - CDIR="${HOME}/.config/rofi/" - if [ ! -d "${CDIR}" ] - then - mkdir -p ${CDIR} - fi - if [ -f "${CDIR}/config" ] - then - ${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config" - fi - echo "rofi.theme: ${1}" >> "${CDIR}/config" - -} - -if [ "$HOUR" -gt "19" ] || [ "$HOUR" -lt "7" ] - then - feh --bg-scale $HOME/usr/pics/island_night_by_arsenixc-d6cz757.jpg - xrdb -merge $HOME/.Xresources.d/gruvbox-dark.xresources - set_theme "/usr/share/rofi/themes//gruvbox-dark.rasi" - else - feh --bg-scale $HOME/usr/pics/island_day_by_arsenixc-d6ctqon.jpg - xrdb -merge $HOME/.Xresources.d/gruvbox-light.xresources - set_theme "/usr/share/rofi/themes//gruvbox-light.rasi" -fi -- cgit v1.2.3-60-g2f50