Adding DE functionality
This commit is contained in:
parent
9d23ba7ac1
commit
ae1c8a567e
|
@ -21,6 +21,10 @@ xset r rate 250 80 &
|
||||||
# xset s noblank &
|
# xset s noblank &
|
||||||
# xset s off &
|
# xset s off &
|
||||||
|
|
||||||
|
# if command -v xss-lock >/dev/null 2>&1; then
|
||||||
|
# xss-lock -- dm-tool switch-to-greeter &
|
||||||
|
# fi
|
||||||
|
|
||||||
if [ -d "/usr/lib/nvidia" ]; then
|
if [ -d "/usr/lib/nvidia" ]; then
|
||||||
export LD_LIBRARY_PATH=/usr/lib/nvidia
|
export LD_LIBRARY_PATH=/usr/lib/nvidia
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -13,7 +13,9 @@ pacaur -S \
|
||||||
gimp \
|
gimp \
|
||||||
audacity \
|
audacity \
|
||||||
reptyr \
|
reptyr \
|
||||||
cmake python2 python2-pip \
|
cmake python python2-pip \
|
||||||
lightdm \
|
accountsservice \
|
||||||
|
xss-lock \
|
||||||
|
lightdm lightdm-gtk-greeter \
|
||||||
polybar-git \
|
polybar-git \
|
||||||
--noconfirm --noedit
|
--noconfirm --noedit
|
||||||
|
|
46
setup
46
setup
|
@ -31,37 +31,41 @@ fi
|
||||||
# TODO: make sure we have an even number, here
|
# TODO: make sure we have an even number, here
|
||||||
links=(
|
links=(
|
||||||
# desktop environment files
|
# desktop environment files
|
||||||
"$dfp/de/bspwmrc" "$XDG_CONFIG_HOME/bspwm/bspwmrc"
|
"$dfp/de/bspwmrc" "$XDG_CONFIG_HOME/bspwm/bspwmrc"
|
||||||
"$dfp/de/sxhkdrc" "$XDG_CONFIG_HOME/sxhkd/sxhkdrc"
|
"$dfp/de/sxhkdrc" "$XDG_CONFIG_HOME/sxhkd/sxhkdrc"
|
||||||
"$dfp/de/xresources" "$HOME/.Xresources"
|
"$dfp/de/xresources" "$HOME/.Xresources"
|
||||||
"$dfp/de/xinitrc" "$HOME/.xinitrc"
|
"$dfp/de/xinitrc" "$HOME/.xinitrc"
|
||||||
"$dfp/de/xprofile" "$HOME/.xprofile"
|
"$dfp/de/xprofile" "$HOME/.xprofile"
|
||||||
"$dfp/common/colors/xresources" "$HOME/.Xresources.colors"
|
"$dfp/common/colors/xresources" "$HOME/.Xresources.colors"
|
||||||
|
|
||||||
# bar files
|
|
||||||
"$dfp/de/bar/polybar-config" "$XDG_CONFIG_HOME/polybar/config"
|
|
||||||
|
|
||||||
# shell files
|
# shell files
|
||||||
"$dfp/shell/bashrc" "$HOME/.bashrc"
|
"$dfp/shell/bashrc" "$HOME/.bashrc"
|
||||||
"$dfp/shell/bash_profile" "$HOME/.bash_profile"
|
"$dfp/shell/bash_profile" "$HOME/.bash_profile"
|
||||||
"$dfp/shell/tmux.conf" "$HOME/.tmux.conf"
|
"$dfp/shell/tmux.conf" "$HOME/.tmux.conf"
|
||||||
"$dfp/shell/tmux-layouts" "$HOME/.tmux/layouts"
|
"$dfp/shell/tmux-layouts" "$HOME/.tmux/layouts"
|
||||||
|
|
||||||
# text editor files
|
# text editor files
|
||||||
"$dfp/text-editor/neovim/" "$XDG_CONFIG_HOME/nvim"
|
"$dfp/text-editor/neovim/" "$XDG_CONFIG_HOME/nvim"
|
||||||
"$dfp/text-editor/neovim/" "$HOME/.vim"
|
"$dfp/text-editor/neovim/" "$HOME/.vim"
|
||||||
"$dfp/text-editor/neovim/init.vim" "$HOME/.vimrc"
|
"$dfp/text-editor/neovim/init.vim" "$HOME/.vimrc"
|
||||||
"$dfp/common/colors/vim" "$XDG_CONFIG_HOME/nvim/colors/base16-donokai.vim"
|
"$dfp/common/colors/vim" "$XDG_CONFIG_HOME/nvim/colors/base16-donokai.vim"
|
||||||
|
|
||||||
# irc files
|
# irc files
|
||||||
"$dfp/misc/irssi/" "$HOME/.irssi"
|
"$dfp/misc/irssi/" "$HOME/.irssi"
|
||||||
"$dfp/misc/weechat/" "$HOME/.weechat"
|
"$dfp/misc/weechat/" "$HOME/.weechat"
|
||||||
|
|
||||||
|
# gtk configuration files
|
||||||
|
"$dfp/de/gtk2rs" "$HOME/.gtkrc-2.0"
|
||||||
|
"$dfp/de/gtk3settings.ini" "$HOME/.config/gtk-3.0/settings.ini"
|
||||||
|
|
||||||
|
# bar files
|
||||||
|
"$dfp/de/bar/polybar-config" "$XDG_CONFIG_HOME/polybar/config"
|
||||||
|
|
||||||
# neofetch config
|
# neofetch config
|
||||||
"$dfp/misc/neofetch/config" "$HOME/.config/neofetch/config"
|
"$dfp/misc/neofetch/config" "$HOME/.config/neofetch/config"
|
||||||
|
|
||||||
# git config
|
# git config
|
||||||
"$dfp/misc/git/config" "$HOME/.gitconfig"
|
"$dfp/misc/git/config" "$HOME/.gitconfig"
|
||||||
)
|
)
|
||||||
|
|
||||||
source=""
|
source=""
|
||||||
|
|
Reference in a new issue