dotfiles/tasks/arch.py

16 lines
427 B
Python
Raw Normal View History

2016-09-03 18:38:47 -06:00
from invoke import task
from .util import RESOURCES_DIRECTORY
ARCH_PACKAGES = [
2016-09-04 05:10:06 -06:00
"synergy", "adobe-source-code-pro-fonts", "pyenv", "rbenv", "alsa-utils",
"spotify", "google-chrome", "autoconf", "automake", "cask", "emacs25-git",
2016-09-06 12:13:21 -06:00
"xmobar", "the_silver_searcher", "jdk8-openjdk", "openjdk8-doc", "openjdk8-src"
2016-09-03 18:38:47 -06:00
]
@task
def install_pacaur(ctx):
ctx.run(os.path.join(RESOURCES_DIRECTORY, "install_pacaur.sh"))