diff --git a/.config/sv/mpd/run b/.config/sv/mpd/run new file mode 100755 index 0000000..0309afe --- /dev/null +++ b/.config/sv/mpd/run @@ -0,0 +1,4 @@ +#!/bin/sh +[ -r conf ] && . ./conf +# install -d -m 0755 -o mpd -g mpd /run/mpd +exec mpd --no-daemon ${OPTS:-} diff --git a/.config/sv/mpdas/run b/.config/sv/mpdas/run new file mode 100755 index 0000000..a6e206a --- /dev/null +++ b/.config/sv/mpdas/run @@ -0,0 +1,2 @@ +#!/bin/sh +exec mpdas diff --git a/.void.bashrc b/.void.bashrc index a237b08..a6cd9aa 100644 --- a/.void.bashrc +++ b/.void.bashrc @@ -59,3 +59,7 @@ export SVDIR="/home/hendrik/sv" export HOME="/home/hendrik" export EDITOR="vim" + +# BEGIN_KITTY_SHELL_INTEGRATION +if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi +# END_KITTY_SHELL_INTEGRATION