From 78bced8de90cc65b897f7f9b7c7987bddc87f51c Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 26 Nov 2023 12:54:31 +0100 Subject: use nvf from anywhere --- config/essentials/zsh/functions.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/essentials/zsh/functions.zsh b/config/essentials/zsh/functions.zsh index 8bf6c43..98cca08 100644 --- a/config/essentials/zsh/functions.zsh +++ b/config/essentials/zsh/functions.zsh @@ -14,7 +14,7 @@ nvf() { if test ! -f "$match" then logn "resetting cache..." - match="$(goo | tee "$cache" | grep -m 1 "$1$" 2> /dev/null)" + match="$(goo f "$HOME" | tee "$cache" | grep -m 1 "$1$" 2> /dev/null)" # # Alternative: # match="$(goo | grep -m 1 "$1" 2> /dev/null | tee -a | "$cache")" fi -- cgit v1.2.3 From c4891479907e73bd667cd855c52a70f9acf7dc00 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Sun, 26 Nov 2023 12:55:25 +0100 Subject: changed hyprland to a more minimal config --- config/wayland/hypr/hyprland.conf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config/wayland/hypr/hyprland.conf b/config/wayland/hypr/hyprland.conf index 302ae33..eb232c9 100644 --- a/config/wayland/hypr/hyprland.conf +++ b/config/wayland/hypr/hyprland.conf @@ -23,8 +23,8 @@ input { } general { - gaps_in = 1 - gaps_out = 3 + gaps_in = 0 + gaps_out = 0 border_size = 2 col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg col.inactive_border = rgba(595959aa) @@ -46,20 +46,20 @@ decoration { enabled = 1 size = 6 } - dim_inactive = true + dim_inactive = false dim_strength = 0.08 - active_opacity = 0.98 - inactive_opacity = 0.92 + active_opacity = 1.00 + inactive_opacity = 0.97 - drop_shadow = yes + drop_shadow = no shadow_range = 4 shadow_render_power = 3 col.shadow = rgba(1a1a1aee) } animations { - enabled = yes + enabled = no bezier = myBezier, 0.05, 0.9, 0.1, 1.05 -- cgit v1.2.3 From f989900f49b186154db323797f8636d44f7d8c1f Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 27 Nov 2023 23:46:10 +0100 Subject: added notification --- bin/menuscripts/mpass-otp | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/menuscripts/mpass-otp b/bin/menuscripts/mpass-otp index b60f953..e771f9f 100755 --- a/bin/menuscripts/mpass-otp +++ b/bin/menuscripts/mpass-otp @@ -4,3 +4,4 @@ pass="$(find "$PASSWORD_STORE_DIR"/keys/otp -name "*.gpg" -printf '%f\n' | commander -c)" [ "$pass" ] || exit 1 pass otp -c keys/otp/"$pass" +notify-send -t 1000 "mpass" "copied $pass" -- cgit v1.2.3 From cd812215aa953ed95f14827eb420bdc654e71aa7 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Mon, 27 Nov 2023 23:46:29 +0100 Subject: use fzf option instead of command --- config/essentials/zsh/aliases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/essentials/zsh/aliases.sh b/config/essentials/zsh/aliases.sh index 3d23cf4..9c8f7f6 100644 --- a/config/essentials/zsh/aliases.sh +++ b/config/essentials/zsh/aliases.sh @@ -279,7 +279,7 @@ alias scr='edit_in_dir ~/proj/personal/scripts/' alias fil='edit_in_dir ~/docs/filios/' alias fzps='ps aux | tail +2 | fzf | tee /dev/stderr | awk '\''{print $2}'\'' | clipp' alias asf='alias | fzf' -alias fzh="tac $HISTFILE | fzf | tee /dev/stderr | clipp" +alias fzh="fzf --tac < $HISTFILE | tee /dev/stderr | clipp" alias ffwin='hyprctl clients -j | jq '\''.[].pid'\'' | fzf --preview "hyprctl clients -j | jq '\''.[] | select(.pid == {}) | {class, title, workspace, xwayland}'\''"' alias pff='find ${PASSWORD_STORE_DIR:=~/src/password-store/} -name "*.gpg" | sed -e "s@$PASSWORD_STORE_DIR/@@" -e '\''s/\.gpg$//'\'' | fzf | xargs pass show -c' alias fzps='fzf --print0 | xargs -0I{}' -- cgit v1.2.3