This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/scripts/arch-linux/provisioning/2-essentials.bash

58 lines
2.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2017-05-03 12:53:04 -05:00
pacaur -S \
tree `# Handy Filesystem Viewing Utility` \
rofi `# Application Launcher` \
the_silver_searcher ripgrep `# Code Search Utilities` \
alsa-utils `# Audio Utilities` \
htop `# Process Management and System Resources Monitoring` \
openssh `# Remote Access` \
openssl `# Crypto` \
ruby `# Language` \
nodejs npm `# Language` \
python python-pip `# Python 3 Language` \
python2 python2-pip `# Language` \
pass `# Password Management` \
google-chrome-dev `# Default Web Browser` \
bash-completion `# Handy Scripts for Tab-Completion in Bash` \
fzf `# Fuzzy File Finder` \
rsync `# File Transfer` \
pulseaudio pavucontrol `# Audio Backend and Controls` \
neovim vim `# Text Editors` \
unzip `# Handy Utility for ZIP Files` \
xsel `# Manage X Selection` \
xclip `# Manage X Clipboards` \
tmux `# Terminal Multiplexer` \
rxvt-unicode-pixbuf `# Terminal with PixBuf Patches` \
xorg-xinit xorg-server xorg-xrdb `# X.org Display Server` \
xorg-drivers `# Video Drivers for X?` \
xcb-util xcb-util-keysyms xcb-util-wm xorg-xrandr xdotool feh xorg-xprop `# X Utilties` \
pulseaudio-ctl `# CLI Utility for Pulseaudio` \
alsa-plugins `# Plugins for ALSA` \
unclutter-xfixes-git `# Hides cursor after no use for a time` \
gtk-engine-murrine xorg-server-devel `# GTK Theme Base and Headers?` \
bspwm-git sxhkd-git xdo-git `# Window Manager and Tools for its use` \
terminus-font ttf-monaco `# Primary Fonts` \
ttf-freefont `# Font` \
ttf-font-awesome `# Icon Font` \
curl `# HTTP Utility` \
2018-02-28 09:49:32 -06:00
w3m `# Viewing Images in Terminals` \
jq `# CLI for Interacting with JSON` \
--noconfirm --noedit
# install text editor utilities and other python packages
2017-11-13 15:55:11 -06:00
sudo pip3 install neovim jedi mistune psutil setproctitle
2017-02-20 22:11:11 -06:00
sudo pip2 install neovim
# shortcut for browser
2017-04-14 07:43:57 -05:00
sudo ln -s /usr/bin/google-chrome-unstable /usr/bin/chrome
# install patched fonts
2017-04-23 06:47:00 -05:00
mkdir -p "$HOME/.fonts/OTF"
curl -L -o "$HOME/.fonts/OTF/monaco_powerline_nerd_font.otf" https://github.com/taohex/font/raw/master/Monaco%20for%20Powerline%20Nerd%20Font%20Complete.otf
fc-cache -vf
2017-07-27 13:00:48 -05:00
# install rxvt-unicode script for resizing font on-the-fly
2017-07-27 13:00:48 -05:00
mkdir -p "$HOME/.urxvt/ext"
curl -L -o "$HOME/.urxvt/ext/resize-font" https://raw.githubusercontent.com/simmel/urxvt-resize-font/master/resize-font