diff options
| author | Ja.KooLit <jimmielovejay@gmail.com> | 2024-05-04 15:42:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-04 15:42:48 +0900 |
| commit | 1127bae8815e1b60b637d0c88832bddae7cc5a1a (patch) | |
| tree | 2501119e4914f79535e5bd1e12d64fc6754337c6 /config/hypr/scripts/Refresh.sh | |
| parent | 5e304d31a220a64338e5cb84e397d1a102855260 (diff) | |
| parent | dc9f0cd58454b4cb33a704b11e4cc8a7c6594e67 (diff) | |
Merge pull request #231 from SherLock707/dev_overview
Added ags overview widget
Diffstat (limited to 'config/hypr/scripts/Refresh.sh')
| -rwxr-xr-x | config/hypr/scripts/Refresh.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/hypr/scripts/Refresh.sh b/config/hypr/scripts/Refresh.sh index 15516dff..bf806e01 100755 --- a/config/hypr/scripts/Refresh.sh +++ b/config/hypr/scripts/Refresh.sh @@ -15,13 +15,15 @@ file_exists() { } # Kill already running processes -_ps=(waybar rofi swaync) +_ps=(waybar rofi swaync ags) for _prs in "${_ps[@]}"; do if pidof "${_prs}" >/dev/null; then pkill "${_prs}" fi done +ags -q + sleep 0.3 # Relaunch waybar waybar & @@ -30,6 +32,9 @@ waybar & sleep 0.5 swaync > /dev/null 2>&1 & +# relaunch ags +ags & + # Relaunching rainbow borders if the script exists sleep 1 if file_exists "${UserScripts}/RainbowBorders.sh"; then |
