diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-07-22 01:41:29 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:35 -0700 |
| commit | 91e9e32cbc77ea39eb5b3d96b5f773791cd897e1 (patch) | |
| tree | 1314186f9a05e0ddca05f09bb4c62b5d36c6783c /config/hypr/configs | |
| parent | adb7cc61d65ca1ade2fa992dd3973aa0f154f472 (diff) | |
In LUA mode background image in rofi not updated
Update scripts to makes sure they read current background image
Signed-off-by: Don Williams <don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/configs/system_keybinds.lua
modified: config/hypr/scripts/Animations.sh
modified: config/hypr/scripts/ChangeStarshipPrompt.sh
modified: config/hypr/scripts/ClipManager.sh
modified: config/hypr/scripts/Ghostty_themes.sh
modified: config/hypr/scripts/HyprLayoutModule.sh
modified: config/hypr/scripts/HyprlockWallpaperSelect.sh
modified: config/hypr/scripts/JavaManager.sh
modified: config/hypr/scripts/KeyBinds.sh
modified: config/hypr/scripts/Kitty_themes.sh
modified: config/hypr/scripts/Kool_Quick_Settings.sh
modified: config/hypr/scripts/MonitorProfiles.sh
modified: config/hypr/scripts/RofiEmoji.sh
modified: config/hypr/scripts/RofiSearch.sh
modified: config/hypr/scripts/RofiThemeSelector.sh
modified: config/hypr/scripts/ThemeChanger.sh
modified: config/hypr/scripts/WallpaperEffects.sh
modified: config/hypr/scripts/WallpaperSelect.sh
modified: config/hypr/scripts/WaybarLayout.sh
modified: config/hypr/scripts/WaybarStyles.sh
modified: config/hypr/scripts/ZshChangeTheme.sh
modified: config/hypr/scripts/rofi-emacs-keybinds
modified: config/hypr/scripts/rofi-ssh-menu.sh
modified: config/hypr/scripts/sddm_wallpaper.sh
Diffstat (limited to 'config/hypr/configs')
| -rw-r--r-- | config/hypr/configs/system_keybinds.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config/hypr/configs/system_keybinds.lua b/config/hypr/configs/system_keybinds.lua index af0a3d17..79407eac 100644 --- a/config/hypr/configs/system_keybinds.lua +++ b/config/hypr/configs/system_keybinds.lua @@ -234,7 +234,7 @@ end bind( "SUPER", "D", - exec_cmd("pkill rofi || true && rofi -show drun -modi drun, filebrowser, run, window"), + exec_cmd("pkill rofi || true; $HOME/.config/hypr/scripts/RofiFocusedWallpaperLink.sh >/dev/null 2>&1 || true; rofi -show drun -modi drun, filebrowser,run,window"), { description = "app launcher" } ) bind("SUPER", "B", exec_cmd('xdg-open "https://"'), { description = "open default browser" }) @@ -262,7 +262,12 @@ bind("SUPER", "H", exec_cmd("$HOME/.config/hypr/scripts/KeyHints.sh"), { descrip bind("SUPER ALT", "R", exec_cmd("$HOME/.config/hypr/scripts/Refresh.sh"), { description = "refresh bar and menus" }) bind("SUPER ALT", "E", exec_cmd("$HOME/.config/hypr/scripts/RofiEmoji.sh"), { description = "emoji menu" }) bind("SUPER", "S", exec_cmd("$HOME/.config/hypr/scripts/RofiSearch.sh"), { description = "web search" }) -bind("SUPER CTRL", "S", exec_cmd("rofi -show window"), { description = "window switcher" }) +bind( + "SUPER CTRL", + "S", + exec_cmd("$HOME/.config/hypr/scripts/RofiFocusedWallpaperLink.sh >/dev/null 2>&1 || true; rofi -show window"), + { description = "window switcher" } +) bind("SUPER ALT", "O", exec_cmd("$HOME/.config/hypr/scripts/ChangeBlur.sh"), { description = "toggle blur" }) bind("SUPER SHIFT", "G", exec_cmd("$HOME/.config/hypr/scripts/GameMode.sh"), { description = "toggle game mode" }) bind( |
