From 98273d18482b784abf846decc832e7b73329da94 Mon Sep 17 00:00:00 2001 From: Adam <24621027+WhiteDopeOnPunk@users.noreply.github.com> Date: Mon, 1 Jan 2024 03:37:37 -0500 Subject: [PATCH] async after wal --- bin/doorsbg | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/bin/doorsbg b/bin/doorsbg index 501c416..8068706 100755 --- a/bin/doorsbg +++ b/bin/doorsbg @@ -4,12 +4,11 @@ # not by itself though it should work regardless # Pick a random wallpaper and save a copy -# Leave these &&s to prevent a race wal -i ~/Pictures/Wallpapers && cp $(awk {print} ~/.cache/wal/wal) ~/.cache/wal/bg && # Update themes for other stuff it it exists -[[ -x "$(command -v pywalfox)" ]] && pywalfox update -[[ -x "$(command -v pywal-discord)" ]] && pywal-discord -[[ -x "$(command -v beautifuldiscord)" ]] && beautifuldiscord --css ~/.config/BetterDiscord/themes -[[ -x "$(command -v wal-telegram )" ]] && wal-telegram -g +[[ -x "$(command -v pywalfox)" ]] && pywalfox update & +[[ -x "$(command -v pywal-discord)" ]] && pywal-discord & +[[ -x "$(command -v beautifuldiscord)" ]] && beautifuldiscord --css ~/.config/BetterDiscord/themes & +[[ -x "$(command -v wal-telegram )" ]] && wal-telegram -g &