summaryrefslogtreecommitdiffstats
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/mpd/mpd.conf6
-rw-r--r--.config/shell/aliasrc5
-rw-r--r--.config/zsh/.zshrc1
3 files changed, 5 insertions, 7 deletions
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf
index bf329d6..1cc2cc8 100644
--- a/.config/mpd/mpd.conf
+++ b/.config/mpd/mpd.conf
@@ -7,10 +7,8 @@ restore_paused "yes"
max_output_buffer_size "16384"
audio_output {
- type "pulse"
- name "pulse"
- #type "alsa"
- #name "ALSA"
+ type "pipewire"
+ name "PipeWire Sound Server"
}
audio_output {
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc
index 09f9a32..75327bf 100644
--- a/.config/shell/aliasrc
+++ b/.config/shell/aliasrc
@@ -16,7 +16,7 @@ done; unset command
se() {
choice="$(find ~/.local/bin -mindepth 1 -printf '%P\n' | fzf)"
[ -f "$HOME/.local/bin/$choice" ] && $EDITOR "$HOME/.local/bin/$choice"
- ;}
+ }
# Verbosity and settings that you pretty much just always are going to want.
alias \
@@ -57,5 +57,4 @@ alias \
alias \
lf="lfub" \
magit="nvim -c MagitOnly" \
- ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" \
- weath="less -S ${XDG_CACHE_HOME:-$HOME/.cache}/weatherreport" \
+ ref="shortcuts >/dev/null; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutenvrc ; source ${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc"
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
index 8af5d13..ff7d4ae 100644
--- a/.config/zsh/.zshrc
+++ b/.config/zsh/.zshrc
@@ -15,6 +15,7 @@ setopt inc_append_history
# Load aliases and shortcuts if existent.
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc"
+[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutenvrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutenvrc"
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc"
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/zshnameddirrc"