# HG changeset patch # User jasonwryan # Date 1701975495 -46800 # Fri Dec 08 07:58:15 2023 +1300 # Node ID 7e91a57168877e673824d120a4b4748ad5f4060a # Parent 4748d1d9341e7610796ac475f569ea7ec34629ac Moved to nsxiv diff --git a/.config/sxiv/exec/image-info b/.config/nsxiv/exec/image-info rename from .config/sxiv/exec/image-info rename to .config/nsxiv/exec/image-info diff --git a/.config/sxiv/exec/key-handler b/.config/nsxiv/exec/key-handler rename from .config/sxiv/exec/key-handler rename to .config/nsxiv/exec/key-handler diff --git a/.mutt/mailcap b/.mutt/mailcap --- a/.mutt/mailcap +++ b/.mutt/mailcap @@ -2,7 +2,7 @@ text/html; $HOME/Scripts/run_browser %s &>/dev/null; nametemplate=%s.html; test=test -n "$DISPLAY"; needsterminal; text/html; w3m -I %{charset} -T text/html; copiousoutput; text/calendar; $HOME/Scripts/ical_filter.pl; copiousoutput; -image/*; sxiv %s &>/dev/null +image/*; nsxiv %s &>/dev/null video/*; mpv %s audio/*; mpv %s text/*; "${EDITOR-vi}" %s diff --git a/.mutt/muttrc b/.mutt/muttrc --- a/.mutt/muttrc +++ b/.mutt/muttrc @@ -94,7 +94,7 @@ # boxes mailboxes +JWR/INBOX +JWR/Sent -mailboxes +Gmail/INBOX +Gmail/Sent Mail +mailboxes +Gmail/INBOX +Gmail/Sent mailboxes +Miromiro/INBOX Miromiro/Sent mailboxes +Fastmail/INBOX +Fastmail/Sent diff --git a/.zsh/functions.zsh b/.zsh/functions.zsh --- a/.zsh/functions.zsh +++ b/.zsh/functions.zsh @@ -65,7 +65,7 @@ auction() { date -d "+ $@" '+%F %T'; } # scan dir for thumbs -sx() { sxiv -trq "$@" 2>/dev/null ;} +sx() { nsxiv -trq "$@" 2>/dev/null ;} # Follow copied and moved files to destination directory cpf() { cp "$@" && goto "$_"; }