From c26d3a64b0e562af997d453396db62087f57f167 Mon Sep 17 00:00:00 2001 From: fbachus Date: Fri, 21 Feb 2025 17:19:16 +0100 Subject: [PATCH] fix: clipboard-manager now successfully changes clipboard entries --- .config/hypr/apps.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/hypr/apps.conf b/.config/hypr/apps.conf index a7b305d..272e084 100644 --- a/.config/hypr/apps.conf +++ b/.config/hypr/apps.conf @@ -8,4 +8,4 @@ $appLauncher = tofi-drun | xargs hyprctl dispatch exec -- $lockscreen = hyprlock --immediate $lockscreen_timeout = hyprlock $nextcloud = nextcloud --background -$clipboard-manager = cliphist list | awk '{gsub("\t", " "); print}' | tofi --width=800 --font-size=14 --font-features="" --background-color=191A1CE0 | cliphist decode | wl-copy +$clipboard-manager = cliphist list | awk '{gsub("\t", " "); print}'\ | tofi --width=800 --font-size=14 --font-features="" --background-color=191A1CE0 | awk '{print $1}' | tr -d '\n' | cliphist decode | wl-copy