i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add custom confirm command

+11
+11
fish/.config/fish/functions/confirm.fish
··· 1 + function confirm 2 + set message (string escape $argv) 3 + 4 + if test -z $message 5 + set message "Continue?" 6 + end 7 + 8 + if read -p "printf '%s [Y/n] ' $message" | grep -Eqv '^[yY](es?)?$' 9 + return 1 10 + end 11 + end