dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

commit 8a6836c89f4ac78cbc87e57d405723ff6e56f30a
parent 91008af5060c5dbca5247091011a0b19564f6ae7
Author: regexghost <dev@regexghost.com>
Date:   Fri, 19 Jun 2026 01:52:27 +0100

fixed program openers for kshrc (setsid) + changed to the current programs I use

Diffstat:
Mdotfiles/Image_Viewer-Substitution-sxiv-.kshrc | 6+++---
Mdotfiles/PDF_Viewer-Substitution-zathura-.kshrc | 2+-
Ddotfiles/Video_Player-Substitution-mpv-.kshrc | 6------
Adotfiles/Video_Player-Substitution-vlc-.kshrc | 6++++++
4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dotfiles/Image_Viewer-Substitution-sxiv-.kshrc b/dotfiles/Image_Viewer-Substitution-sxiv-.kshrc @@ -1,12 +1,12 @@ #### Start Substitute - Image_Viewer -# Open images in gwenview +# Open images in sxiv # The alias is called "rs" as I originally used Xfce with Ristretto rs () { toOpen=$@ if [[ "$toOpen" == "" ]]; then - gwenview . & disown + setsid sxiv . & else - gwenview "$@" & disown + setsid sxiv "$@" & fi } #### End Substitute diff --git a/dotfiles/PDF_Viewer-Substitution-zathura-.kshrc b/dotfiles/PDF_Viewer-Substitution-zathura-.kshrc @@ -2,7 +2,7 @@ # Open pdf files in Zathura pdf () { for arg; do - zathura "$arg" & disown + setsid zathura "$arg" & done } #### End Substitute diff --git a/dotfiles/Video_Player-Substitution-mpv-.kshrc b/dotfiles/Video_Player-Substitution-mpv-.kshrc @@ -1,6 +0,0 @@ -#### Start Substitute - Video_Player -# Open video(s) with mpv -mp () { - /usr/bin/mpv --really-quiet --save-position-on-quit "$@" & disown -} -#### End Substitute diff --git a/dotfiles/Video_Player-Substitution-vlc-.kshrc b/dotfiles/Video_Player-Substitution-vlc-.kshrc @@ -0,0 +1,6 @@ +#### Start Substitute - Video_Player +# Open video(s) with vlc +mp () { + setsid /usr/bin/vlc "$@" 2> /dev/null & +} +#### End Substitute