dotfiles/tasks/arch.py

29 lines
872 B
Python
Raw Normal View History

2016-09-07 15:11:08 -06:00
import os
2016-09-03 18:38:47 -06:00
from invoke import task
from .util import RESOURCES_DIRECTORY
2016-09-08 14:11:50 -06:00
PACKAGES = [
2016-09-07 16:27:53 -06:00
"adobe-source-code-pro-fonts", "lib32-alsa-lib", "synergy", "git",
"pkg-config", "pyenv", "rbenv", "alsa-utils", "patch", "spotify",
"google-chrome", "autoconf", "automake", "cask", "emacs-git", "xmobar",
"the_silver_searcher", "jdk8-openjdk", "openjdk8-doc", "openjdk8-src",
"scala", "clojure", "go", "ruby", "node", "ghc", "rust", "nodejs", "nvm",
"nvidia-settings", "gnome-tweak-tool", "screenfetch", "htop", "tmux",
2016-09-08 14:11:50 -06:00
"texlive-most", "leiningen", "boot", "gnome-settings-daemon", "roboto",
"accountsservice", "lightdm-webkit-theme-material-git", "openssh",
"chrome-remote-desktop", "gtk-theme-arc", "mosh",
]
SERVICES = [
"sshd.socket"
2016-09-03 18:38:47 -06:00
]
@task
def install_pacaur(ctx):
ctx.run(os.path.join(RESOURCES_DIRECTORY, "install_pacaur.sh"))