From b0df64a038152e78071453475f5022b6847f81fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 10 Aug 2018 10:45:18 +0200 Subject: x11-themes/background-lnxpcs: make backgrounds full hd --- x11-themes/background-lnxpcs/files/i3background | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'x11-themes/background-lnxpcs/files/i3background') diff --git a/x11-themes/background-lnxpcs/files/i3background b/x11-themes/background-lnxpcs/files/i3background index f55f8e7..cf51581 100755 --- a/x11-themes/background-lnxpcs/files/i3background +++ b/x11-themes/background-lnxpcs/files/i3background @@ -1,20 +1,17 @@ #!/bin/sh BACKS="/usr/share/backgrounds" -# Set background + if [ -n "$DISPLAY" ]; then - # Only current one feh --randomize --no-fehbg --bg-fill "$BACKS" + if ! crontab -l 2>/dev/null | grep -q i3background; then + TCRN="$(mktemp)" + crontab -l 2>/dev/null > "$TCRN" + echo "* * * * * i3background" >> "$TCRN" + crontab "$TCRN" + rm "$TCRN" + fi else - # All instances for socket in $(find /run/user/$(id -u)/i3 /tmp/i3-$(id -un).* -name ipc-socket\* 2>/dev/null); do - i3-msg -s $socket "exec feh --randomize --no-fehbg --bg-fill '$BACKS'" + i3-msg -s $socket "exec $0" done fi -# Set cron -if ! crontab -l 2>/dev/null | grep -q i3background; then - TCRN="$(mktemp)" - crontab -l 2>/dev/null > "$TCRN" - echo "* * * * * i3background" >> "$TCRN" - crontab "$TCRN" - rm "$TCRN" -fi -- cgit v1.2.3