From af4938c6c34df2d5adb5b990b5912eabd833eb71 Mon Sep 17 00:00:00 2001 From: fanyx Date: Fri, 28 Jan 2022 14:08:27 +0100 Subject: [PATCH] Added mpd --- .config/sv/mpd/run | 4 ++++ .config/sv/mpdas/run | 2 ++ .void.bashrc | 4 ++++ 3 files changed, 10 insertions(+) create mode 100755 .config/sv/mpd/run create mode 100755 .config/sv/mpdas/run 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