diff options
| author | Kiran George <kirangeorge1995@gmail.com> | 2024-04-24 22:19:05 +0530 |
|---|---|---|
| committer | Kiran George <kirangeorge1995@gmail.com> | 2024-05-04 11:00:00 +0530 |
| commit | dc9f0cd58454b4cb33a704b11e4cc8a7c6594e67 (patch) | |
| tree | 02aff524a96c620f2f603dbb45f7017256981148 /config/hypr | |
| parent | 425df5f3a17a72ba41973dedf0673bd8dd607385 (diff) | |
Added ags overview widget
Updated search iscon for overview search result suggested action
Removed excluded site from overview web search
Updated calculator icon for overview
Updated overview search action icon spacing
Added initial pywal integration to overview search and updated seach icon
Diffstat (limited to 'config/hypr')
| -rw-r--r-- | config/hypr/UserConfigs/Startup_Apps.conf | 1 | ||||
| -rw-r--r-- | config/hypr/configs/Keybinds.conf | 1 | ||||
| -rwxr-xr-x | config/hypr/scripts/Refresh.sh | 7 |
3 files changed, 8 insertions, 1 deletions
diff --git a/config/hypr/UserConfigs/Startup_Apps.conf b/config/hypr/UserConfigs/Startup_Apps.conf index ee387d8f..c6b96ee5 100644 --- a/config/hypr/UserConfigs/Startup_Apps.conf +++ b/config/hypr/UserConfigs/Startup_Apps.conf @@ -25,6 +25,7 @@ exec-once = nm-applet --indicator & exec-once = swaync & #exec-once = blueman-applet & #exec-once = rog-control-center & +exec-once = ags & #clipboard manager diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 1946cc27..1cc8e2af 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -30,6 +30,7 @@ bind = $mainMod ALT, L, exec, $scriptsDir/ChangeLayout.sh # Toggle Master or Dwi bind = $mainMod ALT, V, exec, $scriptsDir/ClipManager.sh # Clipboard Manager bind = $mainMod SHIFT, N, exec, swaync-client -t -sw # swayNC panel bind = SHIFT, ALT_L, exec, $scriptsDir/SwitchKeyboardLayout.sh # Switch Keyboard Layout +bind = $mainMod, A, exec, ags -t 'overview' # FEATURES / EXTRAS (UserScripts) bind = $mainMod, E, exec, $UserScripts/QuickEdit.sh # Quick Edit Hyprland Settings 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 |
