]> git.donarmstrong.com Git - bin.git/blob - svnfix
add dgsmon and add more stuff to svnfix
[bin.git] / svnfix
1 #!/bin/sh
2
3 # fix all of the permissions
4 find ~/.hide -print0 |xargs -0 chmod go-rwx;
5
6 if [ -e ~/.hide/irssi_config ] && [ -d .irssi ]; then
7     ln -sf ~/.hide/irssi_config ~/.irssi/config;
8 fi;
9
10 if [ -e ~/.hide/todo ]; then
11     ln -sf ~/.hide/todo ~/.todo
12 fi;
13
14 if [ -e ~/.hide/gaim_accounts.xml ] && [ -d .gaim ]; then
15     ln -sf ~/.hide/gaim_accounts.xml ~/.gaim/accounts.xml;
16 fi;
17
18 if [ -e ~/.hide/mail_aliases ]; then
19     ln -sf ~/.hide/mail_aliases ~/.mail_aliases
20 fi;
21
22 for a in bug order; do
23     if [ -e ~/.hide/${a}_bot.conf ]; then
24         ln -sf ~/.hide/${a}_bot.conf ~/.${a}_bot.conf
25     fi;
26 done;
27
28 if [ -e ~/.hide/qgo_rc ]; then
29     ln -sf ~/.hide/qgo_rc ~/.qGorc;
30 fi;
31
32 if [ -e ~/.hide/f1rc ]; then
33     ln -sf ~/.hide/f1rc ~/.f1rc
34 fi;
35
36 if [ -e ~/.hide/dgsmon_conf ]; then
37     ln -sf ~/.hide/dgsmon_conf ~/.dgsmonrc
38 fi;