AutoYADM commit: 2025-05-18 17:53:40

This commit is contained in:
Daniel Fichtinger 2025-05-18 17:53:40 -04:00
parent a3cfd3cf86
commit 8b89dc909d
2 changed files with 7 additions and 5 deletions

View file

@ -7,9 +7,10 @@ define-command fish -params 1.. -docstring %{
vars=$( vars=$(
printf %s "$1" | grep -o 'kak_\w*' | sort -u | tr '\n' ' ' printf %s "$1" | grep -o 'kak_\w*' | sort -u | tr '\n' ' '
) )
notify-send "$vars" notify-send "$1"
args='"$@"' args='"$1"'
printf %s "eval %sh{ fish -c $args # $vars} " printf %s "eval %sh{ fish -c \"eval $1\" # $vars } " >/tmp/fish-test
printf %s "eval %sh{ fish -c \"eval $1\" # $vars } "
} }
} }

View file

@ -3,7 +3,8 @@ colorscheme ashen
require-module fishr require-module fishr
fish %{ fish %{
echo "notify-send $kak_buffile" notify-send $kak_buffile
notify-send "$kak_buffile"
} }
set-option global ashen_dynamic_cursor true set-option global ashen_dynamic_cursor true