Set wallpaper in .update_x not .start_desktop_apps
* Setting a wallpaper isn't really starting a desktop app anyway
This commit is contained in:
parent
d0e69683b5
commit
6686a4d495
2 changed files with 5 additions and 1 deletions
|
|
@ -3,7 +3,6 @@
|
|||
## Start desktop apps based on WM
|
||||
|
||||
# Start common apps
|
||||
feh --bg-fill "$HOME/.wallpaper"
|
||||
compton --backend xrender --xrender-sync --xrender-sync-fence &
|
||||
sleep 1s
|
||||
x0vncserver -display :0 -passwordfile $HOME/.vnc/passwd -AlwaysShared &
|
||||
|
|
|
|||
|
|
@ -91,6 +91,11 @@ xset -dpms
|
|||
xrdb -merge $HOME/.Xresources
|
||||
echo "Done"
|
||||
|
||||
# Set wallpaper
|
||||
echo -n "Setting wallpaper... "
|
||||
feh --bg-fill "$HOME/.wallpaper"
|
||||
echo "Done"
|
||||
|
||||
# Start desktop apps for i3
|
||||
if fgrep -q "i3" /proc/cmdline; then
|
||||
i3-msg exec $HOME/.start_desktop_apps
|
||||
|
|
|
|||
Loading…
Reference in a new issue