diff options
author | Raymaekers Luca <luca@spacehb.net> | 2025-03-17 16:14:00 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-03-17 16:14:00 +0100 |
commit | 0416eae424bf4f97a346ba78015bea93b3f60db9 (patch) | |
tree | 823cc6bb215b276e68d3af4005d71d3cd6b0f5f8 | |
parent | 40d5d1f8ef400d1c5cb9b8500ae13d9a456f6c67 (diff) | |
parent | 6d18189f7f1a97eb879cb55d35ab41fecb74b07b (diff) |
Merge branch 'main' of db:dotfiles
-rwxr-xr-x | bin/extra/myts | 8 | ||||
-rwxr-xr-x | bin/extra/trl | 10 | ||||
-rw-r--r-- | config/common/mpd/mpd.conf | 7 | ||||
-rw-r--r-- | config/essentials/zsh/.zshrc | 7 |
4 files changed, 20 insertions, 12 deletions
diff --git a/bin/extra/myts b/bin/extra/myts index aea4842..97a889d 100755 --- a/bin/extra/myts +++ b/bin/extra/myts @@ -33,7 +33,7 @@ fi q="$@" if [ -z "$q" ]; then - >&2 printf 'Usage: %s query\n' "$0" + >&2 printf 'Usage: %s [-nm] query\n' "$0" exit 1 fi @@ -56,10 +56,10 @@ rm -f "$tsv" "$json" if [ "$toMPDFlag" ]; then >&2 printf 'Adding to mpd..\n' - mpc add "$(yt-dlp --prefer-insecure -g -f140 "$url")" + mpc --no-resume-playback add "$(yt-dlp --prefer-insecure -g -f140 "$url")" elif [ "$noVideoFlag" ]; then - mpv --no-video "$url" + mpv --no-resume-playback --no-video "$url" else - mpv "$url" + mpv --no-resume-playback "$url" fi >&2 printf 'Done.\n' diff --git a/bin/extra/trl b/bin/extra/trl index 957d0fb..4a27f6a 100755 --- a/bin/extra/trl +++ b/bin/extra/trl @@ -1,7 +1,15 @@ #!/bin/sh # Translate words using http://context.reverso.net and scraping the answers -# with 'pup' and 'curl'. + +for dependency in pup curl fzf +do + if ! command -v "$dependency" > /dev/null + then + >&2 printf '"%s" (dependency) could not be found.\n' "$dependency" + exit 1 + fi +done # returns available languages languages () { diff --git a/config/common/mpd/mpd.conf b/config/common/mpd/mpd.conf index f9e7f9e..40ece39 100644 --- a/config/common/mpd/mpd.conf +++ b/config/common/mpd/mpd.conf @@ -1,4 +1,4 @@ -music_directory "/media/manthe/music" +music_directory "~/music" playlist_directory "~/.config/mpd/playlists" db_file "~/.config/mpd/database" pid_file "~/.config/mpd/pid" @@ -7,9 +7,10 @@ auto_update "yes" restore_paused "yes" # bind_to_address "/run/user/1000/mpd/socket" # port "6600" + audio_output { - type "pulse" - name "pulse audio" + type "alsa" + name "ALSA sound card" } audio_output { diff --git a/config/essentials/zsh/.zshrc b/config/essentials/zsh/.zshrc index 49633cb..01898de 100644 --- a/config/essentials/zsh/.zshrc +++ b/config/essentials/zsh/.zshrc @@ -2,7 +2,7 @@ if { [ "$TTY" = "/dev/tty1" ] || [ "$TTY" = "/dev/tty8" ]; } && [ "$(id -u)" -ne 0 ]; then eval "$(keychain --dir "$XDG_CONFIG_HOME/keychain" --eval --quiet --agents ssh,gpg)" - keychain --dir "$XDG_CONFIG_HOME/keychain" --quiet --agents gpg 3A626DD20A32EB2E5DD9CE71CFD9ABC97158CD5D #FILTERED + keychain --dir "$XDG_CONFIG_HOME/keychain" --quiet --agents gpg IDENTITY #FILTERED exec startx > /dev/null 2>&1 exit fi @@ -139,6 +139,5 @@ setopt notify # zprof -# PATH="$PATH:$HOME/proj/chatty/" -PATH="$PATH:$HOME/proj/metac/misc/" -PATH="$PATH:$HOME/proj/metac/build/" +PATH="$PATH:$HOME/proj/metac/build" +PATH="$PATH:$HOME/proj/metac/misc" |