16 "!p" : "!pacman -U *.pkg.tar.gz",
17 "!sx" : "!pacman -Ss xorg | grep ",
21 modules_path
= os
.path
.join(os
.getcwd(), "plugin/")
22 # history file, by default in home dir
23 history_file
= os
.path
.join(os
.path
.expanduser("~"), ".aurshell_history")
25 # source compilation path, by default in home dir
26 build_dir
= os
.path
.join(os
.path
.expanduser("~"), "aurshell")
27 # how to install package?
28 install_cmd
= "sudo pacman -U "
30 compile_cmd
= "makepkg -f "
32 aur_url
= "http://aur.archlinux.com"
37 shell_prompt
= color
["BLUE"] + " [ " + color
["WHITE"] + "aurshell" + \
38 color
["BLUE"] + " ] " + color
["none"]