diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2024-07-15 13:46:42 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2024-07-15 13:46:42 -0400 |
| commit | 628ed4dc995f3c09e33c24a01c817c18b1a268af (patch) | |
| tree | e5459b11a6aa310f03deed2218d38b7ef6499b4d /.config | |
| parent | a9cde940c2a956f98b6a5cd8496d24fe7de58e64 (diff) | |
| parent | 779ef2f5feb3221a1e29262234fafa13c4db5ab7 (diff) | |
| download | eibhear-628ed4dc995f3c09e33c24a01c817c18b1a268af.tar.gz eibhear-628ed4dc995f3c09e33c24a01c817c18b1a268af.tar.zst eibhear-628ed4dc995f3c09e33c24a01c817c18b1a268af.zip | |
Merge branch 'master' of github.com:LukeSmithxyz/voidrice
Diffstat (limited to '.config')
| -rw-r--r-- | .config/mpd/mpd.conf | 6 | ||||
| -rw-r--r-- | .config/shell/aliasrc | 5 | ||||
| -rw-r--r-- | .config/zsh/.zshrc | 1 |
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" |
