]> git.donarmstrong.com Git - bin.git/blob - svnfix
add reset usb bus command
[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/fb_photo_upload ]; then
29     ln -sf ~/.hide/fb_photo_upload ~/.fb_photo_upload;
30 fi;
31
32
33 if [ -e ~/.hide/qgo_rc ]; then
34     ln -sf ~/.hide/qgo_rc ~/.qGorc;
35 fi;
36
37 if [ -e ~/.hide/f1rc ]; then
38     ln -sf ~/.hide/f1rc ~/.f1rc
39 fi;
40
41 if [ -e ~/.hide/dgsmon_conf ]; then
42     ln -sf ~/.hide/dgsmon_conf ~/.dgsmonrc
43 fi;
44
45 if [ -e ~/.hide/reminders ]; then
46     ln -sf ~/.hide/reminders ~/.reminders
47 fi;
48
49 if [ -e ~/.hide/korganize_standard.ics ]; then
50     ln -sf ~/.hide/korganize_standard.ics ~/.kde/share/apps/korganizer/std.ics
51 fi;
52
53 for a in twitter identica; do 
54     if [ -e ~/.hide/twidge_${a} ]; then
55         ln -sf ~/.hide/twidge_${a} ~/.twidge-${a};
56     fi;
57 done;