config/install.sh

38 lines
1.1 KiB
Bash
Raw Normal View History

2019-04-04 18:45:10 +02:00
#!/bin/sh
2019-04-04 18:47:17 +02:00
rm -f $HOME/.vimrc
2019-04-04 22:56:07 +02:00
rm -f $HOME/.bashrc
2019-04-05 00:05:30 +02:00
rm -f $HOME/.bash_aliases
2019-05-22 11:47:01 +02:00
rm -f $HOME/.ideavimrc
2019-05-23 22:31:31 +02:00
rm -f $HOME/.config/i3/config
2019-05-25 00:33:11 +02:00
rm -f $HOME/.config/dunst/dunstrc
rm -f $HOME/.config/i3blocks
rm -f $HOME/.config/compton.conf
2019-05-23 22:34:19 +02:00
rm -f $HOME/.i3status.conf
2019-05-24 09:07:56 +02:00
rm -f $HOME/bin/lock
2019-05-30 22:58:54 +02:00
rm -f $HOME/bin/transmission-add
rm -f $HOME/.local/share/applications/torrent.desktop
2019-06-30 16:09:03 +02:00
rm -f $HOME/.ssh/authorized_keys
2019-05-23 22:21:46 +02:00
2019-05-24 09:07:56 +02:00
mkdir -p $HOME/.config/i3
2019-05-25 00:33:11 +02:00
mkdir -p $HOME/.config/dunst
2019-05-23 23:01:42 +02:00
mkdir -p $HOME/bin/
2019-06-30 16:09:03 +02:00
mkdir -p $HOME/.ssh
mkdir -p $HOME/.local/share/applications
2019-04-04 18:45:10 +02:00
2019-04-04 18:47:17 +02:00
ln -s $(pwd)/vimrc $HOME/.vimrc
2019-04-04 22:56:07 +02:00
ln -s $(pwd)/bashrc $HOME/.bashrc
2019-04-05 00:05:30 +02:00
ln -s $(pwd)/bash_aliases $HOME/.bash_aliases
2019-05-22 11:47:01 +02:00
ln -s $(pwd)/ideavimrc $HOME/.ideavimrc
2019-05-23 22:31:31 +02:00
ln -s $(pwd)/i3-config $HOME/.config/i3/config
ln -s $(pwd)/i3blocks $HOME/.config/i3blocks
ln -s $(pwd)/compton.conf $HOME/.config/compton.conf
2019-05-25 00:33:11 +02:00
ln -s $(pwd)/dunstrc $HOME/.config/dunst/dunstrc
2019-04-04 22:39:34 +02:00
2019-06-30 16:09:03 +02:00
ln -s $(pwd)/ssh/authorized_keys $HOME/.ssh/authorized_keys
2019-05-30 22:08:06 +02:00
ln -s $(pwd)/bin/lock $HOME/bin/lock
2019-05-30 22:58:54 +02:00
ln -s $(pwd)/bin/transmission-add $HOME/bin/transmission-add
ln -s $(pwd)/local/share/applications/torrent.desktop $HOME/.local/share/applications/torrent.desktop
2019-06-30 16:09:03 +02:00