added some arch packages, work on some vim thinks, fixed some bugs, and changed some X defaults
This commit is contained in:
parent
00779be263
commit
1409e18e5d
|
@ -4,22 +4,24 @@ DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/.." && pwd)
|
|||
source $DIR/variables.bash
|
||||
|
||||
sudo pacman -S \
|
||||
tree \
|
||||
rofi \
|
||||
slock \
|
||||
the_silver_searcher \
|
||||
thunar thunar-volman \
|
||||
thunar thunar-volman gvfs \
|
||||
audacity \
|
||||
luakit \
|
||||
gimp \
|
||||
alsa-utils \
|
||||
wpa_actiond \
|
||||
ifplugd \
|
||||
htop \
|
||||
--noconfirm
|
||||
|
||||
pacaur -S \
|
||||
gtk-theme-arc \
|
||||
firefox-developer \
|
||||
google-chrome-dev \
|
||||
--noconfirm --noedit
|
||||
|
||||
sudo ln -s /usr/bin/firefox-developer /usr/bin/firefox
|
||||
sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
" initial plugin manager
|
||||
if empty(glob('~/.config/nvim/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
autocmd VimEnter * PlugInstall
|
||||
endif
|
||||
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/.." && pwd)
|
||||
source "$DIR/variables.bash"
|
||||
|
||||
mkdir -p "$HOME/.config/bspwm"
|
||||
mkdir -p "$HOME/.config/sxhkd"
|
||||
|
||||
rm -f "$HOME/.config/bspwm/bspwmrc"
|
||||
rm -f "$HOME/.config/sxhkd/sxhkdrc"
|
||||
ln -s "$DOTFILES_PATH/wm/bspwmrc" "$HOME/.config/bspwm/bspwmrc"
|
||||
|
|
|
@ -21,5 +21,6 @@ if [ "$BAR_ON_XINIT" -eq 1 ]; then
|
|||
fi
|
||||
|
||||
# fire up wm
|
||||
sxhkd &
|
||||
exec bspwm
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define primaryfont xft:Terminess Powerline-8
|
||||
#define primaryfont xft:Terminus-8
|
||||
#define secondaryfont xft:Open Sans-9
|
||||
#define iconfont xft:stlarch-9
|
||||
#define primaryletterspace 0
|
||||
|
|
Reference in a new issue