Skip to content

Instantly share code, notes, and snippets.

@timgreen
Last active December 15, 2015 02:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timgreen/5185596 to your computer and use it in GitHub Desktop.
Save timgreen/5185596 to your computer and use it in GitHub Desktop.
Arch KDE init install
#!/bin/bash
# \curl -L http://goo.gl/mA4qmE
pkgs=(
# X
xorg-server
xorg-server-utils
xorg-xinit
# archiver
zip
unzip-iconv
rar
unrar
p7zip
# tools
htop
tree
iftop
iotop
redir
tmux
dnsutils
lftp
ntp
xclip
pkgfile
openssh
aria2
subberthehut
# zsh
zsh
zsh-completions
zsh-syntax-highlighting
# dev
repo
vim-x
git
tig
ctags
the_silver_searcher # ag, ack like
# kde
plasma
kmix
breeze-kde4
# font
ttf-freefont
ttf-hannom
wqy-microhei
wqy-zenhei
ttf-arphic-ukai
ttf-arphic-uming
opendesktop-fonts
wqy-bitmapfont
# input
ibus-qt
ibus-rime
librsvg # in order to display rime icon
# desktop
yakuake
google-chrome-beta
chromium
flashplugin
firefox
k3b
smplayer
# scala
sbt
gradle
# android
android-sdk
android-udev
genymotion
# vbox
virtualbox-ext-oracle
virtualbox-host-dkms
)
installed=$(yaourt -Qq "${pkgs[@]}")
uninstalled=$(echo "$installed ${pkgs[@]}" | tr " " "\n" | sort | uniq -u)
yaourt -S --noconfirm $uninstalled
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment