diff --git a/bspwmrc b/bspwmrc index b02c211..c0f2745 100755 --- a/bspwmrc +++ b/bspwmrc @@ -1,13 +1,20 @@ #!/bin/sh +# Set keyboard layout to it just in case setxkbmap it +# Dont show ugly X shaped cursor xsetroot -cursor_name left_ptr +# Start lemonbar sh ~/.config/bspwm/lemonbar.sh & +# Start mpd +mpd +# Set up desktops on monitors bspc monitor DVI-I-0 -d 1 2 bspc monitor HDMI-0 -d 3 4 +# Set up bspwm theme bspc config border_width 2 bspc window_gap 24 bspc config -m DVI-I-0 top_padding 36 @@ -18,4 +25,5 @@ bspc config borderless_monocle true bspc config gapless monocle true bspc config focus_follows_pointer true +# Show desktop background feh --no--fehbg --bg-center ~/Pictures/background.png diff --git a/install b/install index f593d00..577f77a 100755 --- a/install +++ b/install @@ -34,4 +34,10 @@ cp .tmux.conf ~/ cp .gitconfig ~/ +# MPD + +mkdir -p ~/.config/mpd/playlists/ +mkdir -p ~/Music/ +cp mpd.conf ~/.config/mpd/ + echo "Run install-prezto with ZSH to install prezto" diff --git a/lemonbar.sh b/lemonbar.sh index f681601..625b3ca 100755 --- a/lemonbar.sh +++ b/lemonbar.sh @@ -1,5 +1,5 @@ buildClock() { - echo -n $(date "+%A, %e %B | %k:%M:%S") + echo -n $(date "+%A, %e %B, %k:%M:%S") } getVolume() { diff --git a/mpd.conf b/mpd.conf new file mode 100644 index 0000000..01bf4c2 --- /dev/null +++ b/mpd.conf @@ -0,0 +1,15 @@ +music_directory "/home/fazo/Music" +playlist_directory "/home/fazo/.config/mpd/playlists/" +db_file "/home/fazo/.config/mpd/db" +log_file "/home/fazo/.config/mpd/mpd.log" +pid_file "/home/fazo/.config/mpd/mpd.pid" +state_file "/home/fazo/.config/mpd/state" + +bind_to_address "127.0.0.1" +port "6600" + +audio_output { + type "alsa" + name "Fazo-PC" + mixer_type "software" +}