Añadido parcellite. Mejor copiar archivos en instala.sh para que no les afecte el cvs.

This commit is contained in:
drymer 2016-09-11 05:39:08 +02:00
parent c0be1730af
commit bf5a61f55c
2 changed files with 10 additions and 9 deletions

View File

@ -184,6 +184,7 @@ exec --no-startup-id feh --bg-scale ~/Imagenes/Fondos\ de\ Pantalla/following.jp
# exec --no-startup-id firefox
exec --no-startup-id xbacklight -set 100
exec --no-startup-id bash ~/.i3/scripts/autolock.sh
exec --no-startup-id parcellite
# Move programs to workspace
assign [class="(?i)firefox"] $ws2

18
instala.sh Normal file → Executable file
View File

@ -2,28 +2,28 @@ if [[ $1 = "all" ]]
then
for file in `ls | grep -v "README\|instala.sh"`
do
ln -fs -T $(pwd)/$file $HOME/.$file
cp -r $(pwd)/$file $HOME/.$file
done
elif [[ $1 = "X" ]]
then
ln -fs -T $(pwd)/Xdefaults $HOME/.Xdefaults
ln -fs -T $(pwd)/Xmodmap $HOME/.Xmodmap
cp $(pwd)/Xdefaults $HOME/.Xdefaults
cp $(pwd)/Xmodmap $HOME/.Xmodmap
elif [[ $1 = "i3" ]]
then
ln -fs -T $(pwd)/i3 $HOME/.i3
ln -fs -T $(pwd)/i3/i3blocks.conf $HOME/.i3blocks.conf
cp -r $(pwd)/i3 $HOME/.i3
cp $(pwd)/i3/i3blocks.conf $HOME/.i3blocks.conf
elif [[ $1 = "mutt" ]]
then
ln -fs -T $(pwd)/mutt $HOME/.mutt
ln -fs -T $(pwd)/mutt/muttrc.example $HOME/.muttrc
ln -fs -T $(pwd)/mutt/offlineimaprc.example $HOME/.offlineimaprc
cp -r $(pwd)/mutt $HOME/.mutt
cp $(pwd)/mutt/muttrc.example $HOME/.muttrc
cp $(pwd)/mutt/offlineimaprc.example $HOME/.offlineimaprc
elif [[ $1 = "tmux" ]]
then
ln -fs -T $(pwd)/tmux.conf $HOME/.tmux.conf
cp $(pwd)/tmux.conf $HOME/.tmux.conf
elif [[ $1 = "" ]]
then