1
0
Fork 0
mirror of https://github.com/pgrondek/config.git synced 2025-03-15 19:25:40 +00:00
config/install.sh

16 lines
439 B
Bash
Raw Normal View History

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
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