wmstartup: Pipe things where they should be piped
This commit is contained in:
parent
782b8bdd28
commit
2823159845
@ -59,14 +59,14 @@ done
|
|||||||
# Wallpaper management
|
# Wallpaper management
|
||||||
# Note that this MUST happen before the compositor starts, otherwise xsetroot
|
# Note that this MUST happen before the compositor starts, otherwise xsetroot
|
||||||
# will not apply properly
|
# will not apply properly
|
||||||
if which xfdesktop 2&> /dev/null; then
|
if which xfdesktop > /dev/null 2>&1; then
|
||||||
printf " [INFO] Starting xfdesktop\n"
|
printf " [INFO] Starting xfdesktop\n"
|
||||||
xfdesktop&
|
xfdesktop&
|
||||||
elif which feh 2&> /dev/null; then
|
elif which feh > /dev/null 2>&1; then
|
||||||
printf " [INFO] Setting wallpaper with feh\n"
|
printf " [INFO] Setting wallpaper with feh\n"
|
||||||
printf " [WARN] This solution may cause problems on multi-monitor systems\n"
|
printf " [WARN] This solution may cause problems on multi-monitor systems\n"
|
||||||
feh --randomize --bg-fill ~/Pictures/Wallpapers/.active &
|
feh --randomize --bg-fill ~/Pictures/Wallpapers/.active &
|
||||||
elif which xsetroot 2&> /dev/null; then
|
elif which xsetroot > /dev/null 2>&1; then
|
||||||
printf " [INFO] Setting root window color\n"
|
printf " [INFO] Setting root window color\n"
|
||||||
xsetroot -solid "#282828"
|
xsetroot -solid "#282828"
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user