diff --git a/config/mpd/mpd.conf b/config/mpd/mpd.conf index 679ebd1..b086d5e 100644 --- a/config/mpd/mpd.conf +++ b/config/mpd/mpd.conf @@ -13,14 +13,6 @@ audio_output { max_clients "0" } -audio_output { - type "httpd" - name "HQ HTTP Stream" - encoder "wave" # optional, vorbis or lame - port "6681" - max_clients "0" -} - audio_output { type "pulse" name "mpd" diff --git a/deploy.sh b/deploy.sh index ba475ae..1d80f9d 100755 --- a/deploy.sh +++ b/deploy.sh @@ -85,10 +85,6 @@ load () { mkdir -p ~/.urxvt/ext/ cp /tmp/urxvt-resize-font/resize-font ~/.urxvt/ext/ - cd slock - ./deploy.sh - cd - - echo "Copied configurations!" else diff --git a/slock/config.h b/slock/config.h deleted file mode 100644 index ba25888..0000000 --- a/slock/config.h +++ /dev/null @@ -1,12 +0,0 @@ -/* user and group to drop privileges to */ -static const char *user = "nobody"; -static const char *group = "nogroup"; - -static const char *colorname[NUMCOLS] = { - [INIT] = "#191919", /* after initialization */ - [INPUT] = "#282a2e", /* during input */ - [FAILED] = "#cc6666", /* wrong password */ -}; - -/* treat a cleared input like a wrong password (color) */ -static const int failonclear = 1; diff --git a/slock/deploy.sh b/slock/deploy.sh deleted file mode 100755 index 6ee800a..0000000 --- a/slock/deploy.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -pkgver=1.5 - -[ -d "~/.local/src" ]mkdir -p ~/.local/src - -curl -o ~/.local/src/slock-$pkgver.tar.gz https://dl.suckless.org/tools/slock-$pkgver.tar.gz -tar -C ~/.local/src/ -xvf ~/local/src/slock-$pkgver.tar.gz - -srcdir=~/.local/src/slock-$pkgver - cp config.h $srcdir -make -C $srcdir - -doas make -C $srcdir install PREFIX=/usr