forked from colonelpanic/dotfiles
16 lines
380 B
Python
16 lines
380 B
Python
from invoke import task
|
|
|
|
from .util import RESOURCES_DIRECTORY
|
|
|
|
|
|
ARCH_PACKAGES = [
|
|
"synergy", "adobe-source-code-pro-fonts", "pyenv", "rbenv", "alsa-utils",
|
|
"spotify", "google-chrome", "autoconf", "automake", "cask", "emacs25-git",
|
|
"xmobar", "the_silver_searcher",
|
|
]
|
|
|
|
|
|
@task
|
|
def install_pacaur(ctx):
|
|
ctx.run(os.path.join(RESOURCES_DIRECTORY, "install_pacaur.sh"))
|