diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2022-03-14 17:21:26 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2022-03-14 17:21:26 +0400 |
| commit | 39c0c8b0b71faf31464f49b0cfcdc81886f3121a (patch) | |
| tree | c7ea72b7576a9f11758d8e4475720c3c406f79c2 | |
| parent | 97b7e5b9191ad507fdb071857c5d05accf407dda (diff) | |
Added LANG variable to .profile
- Fixed aligning in mpd.conf
- Removed cowsay from .zshrc
| -rw-r--r-- | .config/mpd/mpd.conf | 2 | ||||
| -rw-r--r-- | .profile | 1 | ||||
| -rw-r--r-- | .zshrc | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf index 57998ac..2bcbcac 100644 --- a/.config/mpd/mpd.conf +++ b/.config/mpd/mpd.conf @@ -2,4 +2,4 @@ music_directory "~/Music" db_file "~/Music/mpd/database" playlist_directory "~/Music/mpd/playlists" pid_file "~/.config/mpd/mpd.pid" -auto_update "yes" +auto_update "yes" @@ -3,6 +3,7 @@ if [ -d "$HOME/.local/bin" ] ; then PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | paste -s -d ':' -)" fi +export LANG="en_US.UTF-8" export SHELL="/bin/zsh" export EDITOR="vim" @@ -54,5 +54,3 @@ set_prompt() { PROMPT='%T $UCOLOR%n$STOP@$PURPLE%m$STOP:$BLUE%~$STOP${vcs_info_msg_0_}'$'\n''$END ' } set_prompt - -fortune -s | cowsay |