diff options
author | davidovski <david@davidovski.xyz> | 2021-10-09 22:30:23 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-09 22:30:23 +0100 |
commit | 62aaae192d5aa9ab765bc6d830ab9746aea5fc18 (patch) | |
tree | b6162773d6abf8992961772bcf10784dbec2792c | |
parent | 30788f5b3deefda2e6d282d536ffeb58b4876d61 (diff) |
added other installs
-rw-r--r-- | config/mpd/state | 4 | ||||
-rw-r--r-- | config/vim/viminfo | bin | 160313 -> 159876 bytes | |||
-rwxr-xr-x | deploy.sh | 6 | ||||
-rw-r--r-- | profile | 46 |
4 files changed, 53 insertions, 3 deletions
diff --git a/config/mpd/state b/config/mpd/state index 1a9aa9c..7a2dffc 100644 --- a/config/mpd/state +++ b/config/mpd/state @@ -3,8 +3,8 @@ audio_device_state:1:My HTTP Stream audio_device_state:1:mpd audio_device_state:1:Visualizer feed state: play -current: 527 -time: 23.199000 +current: 503 +time: 120.047000 random: 1 repeat: 1 single: 0 diff --git a/config/vim/viminfo b/config/vim/viminfo Binary files differindex e495b15..e65fa82 100644 --- a/config/vim/viminfo +++ b/config/vim/viminfo @@ -10,6 +10,7 @@ save () { cp -r "$HOME/.scripts" scripts + cp $HOME/.profile profile cp $HOME/.bashrc bashrc cp $HOME/.bash_aliases bash_aliases cp $HOME/.Xdefaults Xdefaults @@ -35,6 +36,7 @@ load () { cp Xdefaults $HOME/.Xdefaults cp xinitrc $HOME/.xinitrc + cp profile $HOME/.profile cp -r fonts $HOME/.fonts @@ -47,7 +49,9 @@ load () { install () { PKG="yay -S " - $PKG bspwm rofi cava neofetch mpd mpv ncmpcpp vim sxhkd polybar picom rofi + $PKG xorg xorg-xinit pulseaudio + $PKG bspwm cava neofetch mpd mpv ncmpcpp vim sxhkd polybar picom rofi urxvt + ln -s /usr/bin/rofi /usr/bin/dmenu } case $1 in @@ -0,0 +1,46 @@ +# ~/.profile: executed by the command interpreter for login shells. +# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login +# exists. +# see /usr/share/doc/bash/examples/startup-files for examples. +# the files are located in the bash-doc package. + +# the default umask is set in /etc/profile; for setting the umask +# for ssh logins, install and configure the libpam-umask package. +#umask 022 + +# if running bash +if [ -n "$BASH_VERSION" ]; then + # include .bashrc if it exists + if [ -f "$HOME/.bashrc" ]; then + . "$HOME/.bashrc" + fi +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/bin" ] ; then + PATH="$HOME/bin:$PATH" +fi + +# set PATH so it includes user's private bin if it exists +if [ -d "$HOME/.local/bin" ] ; then + PATH="$HOME/.local/bin:$PATH" +fi + + +if [ -d "$HOME/.scripts" ] ; then + PATH="$HOME/.scripts:$PATH" +fi + +#export LC_ALL="C" +#export TERMINAL="konsole --hide-menubar --profile qtile" +alias editor=vim +export TERMINAL="urxvt" +export BROWSER="/usr/bin/chromium" +export FILE_MANAGER="/usr/bin/thunar" +export EMAIL_CLIENT="/usr/bin/thunderbird" +export BLOG_DIR="/home/david/docs/proj/blog" +export EDITOR="/usr/bin/vim" + +export ANDROID_SDK_ROOT=/opt/android-sdk +[[ $(fgconsole 2>/dev/null) == 1 ]] && exec startx -- vt1 &> /dev/null + |