From 2fbcc75ebf266fcadd411c973bc0d189d15dba63 Mon Sep 17 00:00:00 2001 From: 299792458ms <152849182+299792458ms@users.noreply.github.com> Date: Tue, 22 Oct 2024 20:03:30 +0000 Subject: [PATCH] Useful Utilities/Clipboard Managers: add fuzzel display info for cliphist/clipman (#813) Co-authored-by: Mihai Fufezan --- pages/Useful Utilities/Clipboard-Managers.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pages/Useful Utilities/Clipboard-Managers.md b/pages/Useful Utilities/Clipboard-Managers.md index da8c7bd..88c098b 100644 --- a/pages/Useful Utilities/Clipboard-Managers.md +++ b/pages/Useful Utilities/Clipboard-Managers.md @@ -67,7 +67,7 @@ exec-once = wl-paste --type image --watch cliphist store # Stores only image dat Note that any of the above lines can be disabled based on your needs. -To bind `cliphist` to a hotkey and display it under `rofi` or `dmenu` or `wofi`, +To bind `cliphist` to a hotkey and display it under `rofi`, `dmenu`, `wofi` or `fuzzel`, you can edit it in `hyprland.conf`. ### For `rofi` users @@ -88,6 +88,12 @@ bind = SUPER, V, exec, cliphist list | dmenu | cliphist decode | wl-copy bind = SUPER, V, exec, cliphist list | wofi --dmenu | cliphist decode | wl-copy ``` +### For `fuzzel` users + +```ìni +bind = SUPER, V, exec, cliphist list | fuzzel --dmenu | cliphist decode | wl-copy +``` + The binds above allow `SUPER + V` to be used to access the clipboard history. For further info, please refer to the repository mentioned above. @@ -128,6 +134,12 @@ bind = SUPER, V, exec, clipman pick -t dmenu bind = SUPER, V, exec, clipman pick -t wofi ``` +### For `fuzzel` users + +```ìni +bind = SUPER, V, exec, clipman pick -t STDOUT | fuzzel --dmenu | wl-copy +``` + ...and so on. For further information, please refer to the repository mentioned above.