forked from LulzRose/autorice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
92 lines (75 loc) · 3.45 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash
# Export the path to this directory for later use in the script
export LINKDOT=$PWD
# Install fonts and programs. Including two WMs, a terminal emulator
# App launcher, screenshot tool, pdf viewer, image viewer, and text editor.
sudo pacman -S ttf-joypixels ttf-croscore noto-fonts-cjk noto-fonts \
ttf-fantasque-sans-mono ttf-linux-libertine rofi mpv maim \
alacritty compton neofetch dash neovim feh sxhkd bspwm \
i3-gaps dunst zathura-pdf-mupdf libnotify diff-so-fancy \
zsh-autosuggestions zsh-syntax-highlighting xorg-server \
xorg-xinit xorg-xprop pulseaudio-alsa exa xclip
# Install music player. mpd + ncmpcpp
sudo pacman -S mpd ncmpcpp
patch home/.xinitrc < other/add-mpd.patch
# read -p "-- For music, use mpd + ncmpcpp instead of cmus? [y/N] " yna
# case $yna in
# [Yy]* ) sudo pacman -S mpd ncmpcpp
# patch home/.xinitrc < other/add-mpd.patch
# ;;
# * ) sudo pacman -S cmus;;
# esac
# Install some more programs. Including a file manager,
# find, cat, grep, and curl replacements. And a powerful image viewer.
sudo pacman -S nnn fd bat ripgrep httpie sxiv fzf
patch home/.zshrc < other/add-fzf.patch
# Optionally install some more programs. Including a file manager,
# find, cat, grep, and curl replacements. And a powerful image viewer.
# read -p "-- Install extras? (nnn fd bat ripgrep httpie sxiv fzf) [Y/n] " ynb
# case $ynb in
# ''|[Yy]* ) sudo pacman -S nnn fd bat ripgrep httpie sxiv fzf
# patch home/.zshrc < other/add-fzf.patch
# ;;
# * ) echo "-- Extras Skipped";;
# esac
# Link dash to /bin/sh for performance boost.
# Then link several font config files for better font display.
sudo ln -sfT dash /usr/bin/sh
sudo ln -sf /etc/fonts/conf.avail/75-joypixels.conf /etc/fonts/conf.d/
sudo ln -sf /etc/fonts/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/
sudo ln -sf /etc/fonts/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/
sudo ln -sf /etc/fonts/conf.avail/11-lcdfilter-default.conf /etc/fonts/conf.d/
# Make libinput folder for quirks
sudo mkdir -p /etc/libinput/
# Misc but important. The last disables mouse acceleration and can be removed.
sudo install -Dm 644 other/freetype2.sh /etc/profile.d/
sudo install -Dm 644 other/local.conf /etc/fonts/
sudo install -Dm 644 other/dashbinsh.hook /usr/share/libalpm/hooks/
sudo install -Dm 644 other/50-mouse-acceleration.conf /etc/X11/xorg.conf.d/
sudo install -Dm 644 other/20-trackpoint.conf /etc/X11/xorg.conf.d/
sudo install -Dm 644 other/30-touchpad.conf /etc/X11/xorg.conf.d/
sudo install -Dm 644 other/local-overrides.quirks /etc/libinput/
# Make some folders. Screenshots will go in the captures folder.
mkdir -p ~/.config ~/.aurpkgs ~/Images/Captures ~/Images/Wallpapers \
$LINKDOT/config/mpd/playlists ~/Music
# Move provided wallpapers to the wallpapers folder
mv -n wallpapers/* ~/Images/Wallpapers
# Clone the aur packages being installed. Polybar and Oh-My-Zsh
git clone https://aur.archlinux.org/yay.git ~/.aurpkgs/yay
# git clone https://aur.archlinux.org/oh-my-zsh-git.git ~/.aurpkgs/oh-my-zsh-git
# git clone https://aur.archlinux.org/polybar.git ~/.aurpkgs/polybar
# Install them
cd ~/.aurpkgs/yay
makepkg -si
#cd ~/.aurpkgs/oh-my-zsh-git
#makepkg -si
#cd ~/.aurpkgs/polybar
#makepkg -si
# Install Polybar and Oh-My-Zsh using yay
yay -S oh-my-zsh-git polybar
# Link all dotfiles into their appropriate locations
cd ~
ln -sf $LINKDOT/home/.* .
cd ~/.config
ln -sf $LINKDOT/config/* .
echo "-- Installation Complete! Restart the computer."