diff options
| author | Ja.KooLit <jimmielovejay@gmail.com> | 2023-11-29 12:26:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-29 12:26:07 +0900 |
| commit | 2a73fd775779a771f8060e22d9ed2ebe1894c8f4 (patch) | |
| tree | a5175cbda99e0bb61bace7e811aee125699c7c8a /config/hypr/scripts | |
| parent | d365d1e3238fea5408279025f2b404b0420b35de (diff) | |
| parent | 9434d00294fac4b891acc793aeda9cfe561b96c2 (diff) | |
Merge pull request #42 from JaKooLit/v2.1.11
V2.1.11
Diffstat (limited to 'config/hypr/scripts')
| -rwxr-xr-x | config/hypr/scripts/Refresh.sh | 4 | ||||
| -rwxr-xr-x | config/hypr/scripts/WallpaperRandom.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/hypr/scripts/Refresh.sh b/config/hypr/scripts/Refresh.sh index b5e705d3..cd399b0c 100755 --- a/config/hypr/scripts/Refresh.sh +++ b/config/hypr/scripts/Refresh.sh @@ -6,7 +6,7 @@ SCRIPTSDIR=$HOME/.config/hypr/scripts _ps=(waybar rofi) for _prs in "${_ps[@]}"; do if pidof "${_prs}" >/dev/null; then - pkill "${_prs}" + killall "${_prs}" fi done @@ -14,7 +14,7 @@ done waybar & # Relaunch dunst with pywal-borders -${SCRIPTSDIR}/PywalDunst.sh +${SCRIPTSDIR}/PywalDunst.sh & ## trying to figure out how to restart Rainbow borders #sleep 1 diff --git a/config/hypr/scripts/WallpaperRandom.sh b/config/hypr/scripts/WallpaperRandom.sh index 4184fca6..e0f8ee7d 100755 --- a/config/hypr/scripts/WallpaperRandom.sh +++ b/config/hypr/scripts/WallpaperRandom.sh @@ -29,7 +29,7 @@ while true; do done \ | sort -n | cut -d':' -f2- \ | while read -r img; do - swww img "$img" && $pywal_script && $pywal_refresh + swww img "$img" & $pywal_script & $pywal_refresh sleep $INTERVAL done |
