This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#TODO: Add the capability of only adding contacts that aren't in the group already. | |
import dbus | |
import sys | |
if len(sys.argv) < 4: | |
print("usage: ./buddyadd <account> <group> <file>") | |
exit() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATE=`date +%d%m%y-%H:%M` | |
function clone_repo() { | |
git clone https://[email protected]/gislifreyr/ready-steady-go.git ~/.setup | |
} | |
function create_vimrc() { | |
ln -s ~/.setup/vimrc ~/.vimrc | |
} |