diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-02-13 12:56:57 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-02-13 12:56:57 +0900 |
| commit | a4c48b0ea0b2b1d474d503fb8d924d190762e999 (patch) | |
| tree | ea3304df1e7df98e173270461b3c90a43cba4b6c /config/hypr/scripts/ClipManager.sh | |
| parent | dd46262fdfaabebb6fd2213a9baec91dd4244086 (diff) | |
Improvements on the rofi.
Utilized message function for additional informations when script is used in conjunction with rofi
Diffstat (limited to 'config/hypr/scripts/ClipManager.sh')
| -rwxr-xr-x | config/hypr/scripts/ClipManager.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index 642adb82..1f82c616 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -4,7 +4,7 @@ # Variables rofi_theme="~/.config/rofi/config-clipboard.rasi" - +msg='👀 **note** CTRL DEL = cliphist del (entry) or ALT DEL - cliphist wipe (all)' # Actions: # CTRL Del to delete an entry # ALT Del to wipe clipboard contents @@ -19,7 +19,8 @@ while true; do rofi -i -dmenu \ -kb-custom-1 "Control-Delete" \ -kb-custom-2 "Alt-Delete" \ - -config $rofi_theme < <(cliphist list) + -config $rofi_theme < <(cliphist list) \ + -mesg "$msg" ) case "$?" in |
