2019-04-04 18:45:10 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
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-23 23:01:42 +02:00
|
|
|
mkdir -p $HOME/bin/
|
2019-06-30 16:09:03 +02:00
|
|
|
mkdir -p $HOME/.ssh
|
2019-06-30 16:31:03 +02:00
|
|
|
mkdir -p $HOME/.local/share/applications
|
2019-04-04 18:45:10 +02:00
|
|
|
|
2019-06-30 16:09:03 +02:00
|
|
|
ln -s $(pwd)/ssh/authorized_keys $HOME/.ssh/authorized_keys
|
|
|
|
|
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
|
|
|
|