From a153022b7d457466db9140c62dc5564f9de7a3af Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 5 Nov 2023 14:02:06 +0900 Subject: changes for new Hyprland-Dots --- config/hypr/scripts/ClipManager.sh | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'config/hypr/scripts/ClipManager.sh') diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index a171b39c..8c4a1213 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -1,14 +1,10 @@ #!/bin/bash +# +# Clipboard Manager -# WOFI STYLES -CONFIG="$HOME/.config/wofi/WofiBig/config" -STYLE="$HOME/.config/wofi/style.css" -COLORS="$HOME/.config/wofi/colors" - -if [[ ! $(pidof wofi) ]]; then - cliphist list | wofi --show dmenu --prompt 'Search...' \ - --conf ${CONFIG} --style ${STYLE} --color ${COLORS} \ - --width=600 --height=400 | cliphist decode | wl-copy +if [[ ! $(pidof rofi) ]]; then + #cliphist list | rofi -dmenu -config ~/.config/rofi/config-cliphist.rasi | cliphist decode | wl-copy + cliphist list | rofi -dmenu | cliphist decode | wl-copy else - pkill wofi -fi \ No newline at end of file + pkill rofi +fi -- cgit v1.2.3 From c6c01a8accf7a28a2c837cb7937f8f5f805433ff Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 6 Nov 2023 22:30:46 +0900 Subject: small tweak --- config/hypr/scripts/ClipManager.sh | 3 +-- config/hypr/scripts/KeyHints.sh | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'config/hypr/scripts/ClipManager.sh') diff --git a/config/hypr/scripts/ClipManager.sh b/config/hypr/scripts/ClipManager.sh index 8c4a1213..eb717eaa 100755 --- a/config/hypr/scripts/ClipManager.sh +++ b/config/hypr/scripts/ClipManager.sh @@ -3,8 +3,7 @@ # Clipboard Manager if [[ ! $(pidof rofi) ]]; then - #cliphist list | rofi -dmenu -config ~/.config/rofi/config-cliphist.rasi | cliphist decode | wl-copy - cliphist list | rofi -dmenu | cliphist decode | wl-copy + cliphist list | rofi -dmenu -config ~/.config/rofi/config-long.rasi | cliphist decode | wl-copy else pkill rofi fi diff --git a/config/hypr/scripts/KeyHints.sh b/config/hypr/scripts/KeyHints.sh index 4d9b9ed1..cb87ad3a 100755 --- a/config/hypr/scripts/KeyHints.sh +++ b/config/hypr/scripts/KeyHints.sh @@ -24,7 +24,6 @@ yad --width=1000 --height=900 \ " Shift Print" "screenshot region" "(grim + slurp)" \ " Shift S" "screenshot region" "(swappy)" \ "CTRL ALT P" "power-menu" "(wlogout)" \ -"CTRL ALT L" "screenlock" "(swaylock)" \ "CTRL ALT Del" "Hyprland Exit" "(SAVE YOUR WORK!!!)" \ " F" "Fullscreen" "Toggles to full screen" \ " Spacebar" "Toggle Dwindle | Master Layout" "Hyprland Layout" \ -- cgit v1.2.3