summaryrefslogtreecommitdiff
path: root/setup.sh
blob: e5bc970a8b6d87e8f97b04d68b1f802e468e8b55 (plain) (blame)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#!/bin/sh

# Installer for my setup for Arch based distro.

# The dotfiles should be installed in $HOME/git/dotfiles
# for this script to work. 

# It should be run as sudo: sudo ./setup.sh
# By default, installs both dwm and kde, to just install dwm 
# pass the parameter "minimal", e.g.
# sudo ./setup.sh minimal

# If for an Artix install, specify parameter two as "artix", 
# and overtly state full for param 1 if not used:
# sudo ./setup.sh full artix

# Make sure to have internet before this, which will involve
# installing dhcpcd:
# sudo pacman -S dhcpcd ; dhcpcd
# or the equivalent on an Artix install, e.g.
# sudo pacman -S dhcpcd-s6

[ "$1" = "minimal" ] && MINIMAL="yes" || MINIMAL="no"
[ "$2" = "artix"   ] && ARTIX="yes"   || ARTIX="no"

#####################################################################################
#################################### Only on Artix ##################################

# TODO: copy Arch repos into pacman.conf

if [[ $ARTIX="yes" ]] ; then
    echo "We're on Artix alright!"
fi



########################### Setup everything necessary ###############################
# Various Basic Things
pacman -S pacman-contrib

# Install X Server
pacman -S xorg xorg-xinit xorg-xbacklight

# Install Libraries Needed
pacman -S libxft fontconfig ntfs-3g

# Install all fonts necessary
pacman -S ttf-ubuntu-font-family

# TODO: set up yay

# Various programming language compilers, interpreters etc.
pacman -S make go ruby python cmake llvm clang ninja python rust cargo gcc
pacman -S curl git zsh zsh-autosuggestions zsh-completions zsh-syntax-highlighting

#####################################################################################
############# These are only installed in a non-minimal installation. ###############
if [[ $MINIMAL="no" ]] ; then 
    pacman -S plasma kde-applications sddm
fi

# TODO: add the dwm entry to XSessions

####################################################################################
###################### Making some directories for later use #######################
mkdir -p $XDG_CONFIG_HOME
mkdir -p $XDG_CONFIG_HOME/zsh
mkdir -p $XDG_CONFIG_HOME/newsboat
mkdir -p $XDG_CONFIG_HOME/mpd
mkdir -p $XDG_CONFIG_HOME/ncmpcpp
mkdir -p $HOME/.local/share/dwm

#####################################################################################
######## These are only installed in a minimal installation, as a non-minimal #######
######### install should already contain applications that fit this purpose. ########

########################## Install Necessary Packages ################################
##### Where e.g. fonts are in pacman, these are installed under its own section. #####
pacman -S libnotify dunst                                   # Notifications
pacman -S sxiv python-pywal                                 # Background
pacman -S polkit                                            # poweroff w/o sudo
yay    -S vscodium-bin vscodium-bin-marketplace             # Vscodium
pacman -S vim neovim                                        # Vim
pacman -S rust-analyzer ccls gopls ctags                    # Nvim LSP etc. 
pacman -S torbrowser-launcher firefox                       # Browsers
yay    -S librewolf-bin
pacman -S mpd ncmpcpp mpc mpv                               # Music etc.
pacman -S zathura zathura-pdf-mupdf                         # PDF Viewer
pacman -S keepassxc                                         # Password Manager

yay    -S exa htop                                          # Command line utilities
pacman -S zoxide bat dust                                   

############################### git clone from repo #################################
# TODO: git clone all repos here 
git clone git.sateoki.xyz/self/st       ./inst
git clone git.sateoki.xyz/self/dwm      ./inst
git clone git.sateoki.xyz/self/dmenu    ./inst


######################################################################################
##### Install all scripts under .usrconf/scripts by symlinking to /usr/local/bin #####
sh ./scripts/udcmdlink                                                           #####

######################### Set up symlinks to dotfiles ################################
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc         $XDG_CONFIG_HOME/zsh/.zshrc
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc-mk      $XDG_CONFIG_HOME/zsh/.zshrc-mk
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc-fn      $XDG_CONFIG_HOME/zsh/.zshrc-fn
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc-git     $XDG_CONFIG_HOME/zsh/.zshrc-git
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc-abbrev  $XDG_CONFIG_HOME/zsh/.zshrc-abbrev
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshrc-xdg     $XDG_CONFIG_HOME/zsh/.zshrc-xdg
ln -s $HOME/git/syscfg/dotfiles/zsh/.zshenv        $HOME/.zshenv
ln -s $HOME/git/syscfg/dotfiles/.xinitrc           $HOME/.xinitrc

# Music
ln -s $HOME/git/syscfg/dotfiles/mpd.conf       $XDG_CONFIG_HOME/mpd.conf
ln -s $HOME/git/syscfg/dotfiles/mpd.conf       /etc/mpd.conf
ln -s $HOME/git/syscfg/dotfiles/ncmpcpp-config $XDG_CONFIG_HOME/ncmpcpp/config

# sddm - only install if MINIMAL="no" 


# TBA the rest

# Ensure that in .zshrc, the variable $USRCONFDIR is exported correctly
# TODO: make sure $USRCONFDIR is set to the . path

############################### Install all fonts ####################################
sh ./fonts/install-fonts.sh
# Also install all fonts from pacman

######################################################################################
######################### Final Tits and Bits to be done #############################
chsh -s /bin/zsh