DSK: Updates and code cleanup

This commit is contained in:
Salt 2018-11-22 02:46:45 -06:00
parent 71fe350344
commit 41b8b8286a
3 changed files with 3 additions and 3 deletions

2
.bin

@ -1 +1 @@
Subproject commit 03b31b1da6c8ea901ef51616bb82ba783d0b321e
Subproject commit 77c254531a34a2cb833ed38d2e9592ac005a0893

View File

@ -1,3 +1,3 @@
#! /usr/bin/env bash
which nitrogen > /dev/null 2>&1 || exit 0
command -v nitrogen > /dev/null 2>&1 || exit 0
exec nitrogen --restore

View File

@ -1,5 +1,5 @@
#! /usr/bin/env bash
[ -r ~/.Xresources ] && xrdb ~/.Xresources
for file in $XDG_CONFIG_HOME/xrdb/*.xresources; do
for file in "$XDG_CONFIG_HOME"/xrdb/*.xresources; do
[ -r "$file" ] && xrdb -merge "$file"
done