forked from extern/nix-config
991cb34d9d
This is the start of moving away entirely from using PKGBUILD (at least for now) since multiple shell scripts are easier to manage.
51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
depends=(
|
|
# Core system
|
|
|
|
# Zsh
|
|
'zsh'
|
|
'grml-zsh-config'
|
|
'zsh-syntax-highlighting'
|
|
|
|
# Main environment
|
|
'rxvt-unicode' # Terminal emulator
|
|
'compton' # Compositor
|
|
|
|
# Main software
|
|
'ranger' # File explorer
|
|
'feh' # Image viewer
|
|
'mpd' # Music player daemon
|
|
'mpc' # Music player client
|
|
'ncmpcpp' # Ncurses music player client
|
|
'mpv' # Video player
|
|
'weechat' # IRC client
|
|
'profanity' # XMPP client
|
|
'w3m' # Web browser
|
|
'zathura' # Document viewer
|
|
'zathura-djvu' # .djvu support
|
|
'zathura-pdf-mupdf' # .pdf support
|
|
|
|
# Other languages
|
|
'ruby'
|
|
'php'
|
|
'jdk-9-openjdk'
|
|
'python'
|
|
|
|
# Other extras
|
|
'pygmentize' # Command line syntax highlighting (used for 'dog')
|
|
'ctags' # ctags (used with vim)
|
|
'ispell' # Spell checker (an alternative to the built-in vim one)
|
|
'alsa-utils' # (?) Required for sound support
|
|
|
|
'sox' # Audacity for the terminal
|
|
'tmux' # Terminal multiplexer
|
|
|
|
'renpy'
|
|
)
|
|
|
|
package() {
|
|
gem install sass
|
|
gem install lolcat
|
|
gem install jekyll
|
|
pip install rtv
|
|
}
|