2020-11-27 15:47:03 +00:00
#+TITLE : Arch Linux, Phundrak-flavored
2020-07-16 12:25:18 +00:00
#+setupfile : headers
2020-01-16 18:48:14 +00:00
#+OPTIONS : auto-id:t
#+HTML_HEAD_EXTRA : <meta name="description" content="Phundrak-flavored Arch Linux" />
#+HTML_HEAD_EXTRA : <meta property="og:title" content="Phundrak-flavored Arch Linux" />
#+HTML_HEAD_EXTRA : <meta property="og:description" content="How to install a Phundrak-flavored Arch Linux" />
2020-05-17 18:32:23 +00:00
#+PROPERTY : header-args :tangle no :exports none
2020-07-17 13:26:08 +00:00
#+PROPERTY : header-args:sh :tangle no :exports code
2020-05-17 18:32:23 +00:00
#+PROPERTY : header-args:fish :exports code :noweb yes
2020-05-28 10:05:36 +00:00
#+PROPERTY : header-args:emacs-lisp :exports none :noweb yes :tangle no :cache yes
2020-01-16 18:48:14 +00:00
* Introduction
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Introduction-cd5792cd
:END:
2021-02-04 13:43:09 +00:00
Here will be presented what I do to get my system up and running on a fresh Arch
Linux install. These installation instructions were written in order to get an
Arch Linux distribution up and running with the same configuration as my main
computer’ s and my travelling laptop’ s configuration.
2020-01-16 18:48:14 +00:00
* Install Arch Linux
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Install_Arch_Linux-ac7ad3b2
:END:
2021-02-04 13:43:09 +00:00
I usually install Arch from the [[https://www.archlinux.org/download/ ][vanilla ISO ]], however I began using [[https://github.com/MatMoul/archfi ][archfi ]] to
install easily the distro (I’ ve done it so many times, I know how it works now).
Usually, my distros will be installed on two partitions: ~/home~ and ~/~ (root).
If the computer supports EFI bootloaders, the EFI partition will be mounted on
~/boot/efi~ . I generally use ~systemd-boot~ as my boot manager, but if you are
more comfortable with another one, just install what you want. Be aware that if
you format your ~/boot~ partition, you will delete all boot managers that
already exist; so, if you are dual-booting, *DO NOT FORMAT IT* . Yes, I made the
mistake of wiping the Windows boot manager when I used to dual-boot.
In order to use the ~suspend-then-hibernate~ systemd command, it is necessary to
have a swap partition at least twice the size of your installed RAM. That is
because when this command will be run, the system will try to save the current
state of your machine, stored in your RAM, to the swap filesystem. If there is
not enough space, the command will fail, and you won’ t be able to use this
command. For instance, my current computer has 32GB of RAM, hence my SWAP
partition is 16GB large.
2020-09-28 16:17:07 +00:00
** Get the latest, fastest mirrors
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Install_Arch_Linux-Get_the_latest_fastest_mirrors-765401c9
:END:
2020-11-13 14:18:43 +00:00
When you boot into the live ISO, execute the following command:
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
pacman -Sy reflector
reflector -c FR -c DE -c BE -l 200 -p http -p https --sort rate \
--save /etc/pacman.d/mirrorlist --verbose
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
This will update the packages from your live ISO, and you will get the best
mirrors for your installation. Of course, change the countries accordingly to
your location. In my case, I am only interested in French, German, and Belgian
mirrors.
2020-01-16 18:48:14 +00:00
** Install the system
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Install_Arch_Linux-Install_the_system-3ff49aa6
:END:
2021-02-04 13:43:09 +00:00
Then you can use a custom script to ease your installation of Arch if you do not
wish to do it manually. Personally, I’ ve done it several times already, I know
how the distro works, I just want to be able to install my distro quickly now.
I’ ll need to download the script with ~wget~ , but apparently it isn’ t installed
by default on Arch ISOs anymore, so I’ ll need to install it.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
pacman -S wget
2020-11-13 14:18:43 +00:00
#+END_SRC
Now, let’ s grab the script. You can check it on [[https://github.com/matmoul/archfi ][Github ]].
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
wget archfi.sf.net/archfi
# Or from matmoul.github.io/archfi if SourceForge is down
sh archfi
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
Then, follow the instructions and install Arch Linux. Take the opportunity to
install as many packages as you need, mainly ~paru~ which I use as my package
manager (it is just a wrapper for ~pacman~ ) and AUR helper, and ~pacman-contrib~
which will help us installing some packages later.
2020-11-13 14:18:43 +00:00
2021-02-04 13:43:09 +00:00
Once your system is installed, reboot and remove your installation media from
your computer.
2020-01-16 18:48:14 +00:00
2020-09-28 16:17:07 +00:00
* Execute bootstrap
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:HEADER-ARGS:fish: :tangle ~/.config/yadm/bootstrap :shebang "#!/usr/bin/fish" :exports code :mkdirp yes
:CUSTOM_ID: Execute_bootstrap-e37054ef
:END:
2021-10-12 09:31:20 +00:00
The first thing I will do is add the [[https://aur.chaotic.cx/ ][Chaotic AUR ]] repository so I can
get access to ~paru~ as well as some AUR packages without the need of an
AUR helper (ironic considering ~paru~ is one)..
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
sudo pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com
sudo pacman-key --lsign-key 3056513887B78AEB
sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' 'https:/ /cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst'
printf '[chaotic-aur]\nServer = /etc/pacman.d/chaotic-mirrorlist\n' | sudo tee -a /etc/pacman.conf
2021-02-04 08:15:09 +00:00
#+END_SRC
I can now install ~fish~ , ~git~ , and ~paru~ :
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
sudo pacman -S fish git paru
2021-02-04 08:15:09 +00:00
#+END_SRC
And now that ~paru~ is available, we can install ~yadm~ :
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
paru -S yadm
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
~yadm~ comes with a very handy feature: its bootstrap script. It can be executed
automatically once the dotfiles are cloned with yadm:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC sh
2021-10-12 09:31:20 +00:00
yadm clone https://labs.phundrak.com/phundrak/dotfiles
# or if labs.phundrak.com is down or too slow for you
#yadm clone https://github.com/phundrak/dotfiles
2020-11-13 14:18:43 +00:00
#+END_SRC
Let’ s take a look at what it does.
2020-01-16 18:48:14 +00:00
** Decrypt private yadm files
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Decrypt_private_yadm_files-68af7157
:END:
2021-02-04 13:43:09 +00:00
Some private files are stored encrypted in the repository of my yadm dotfiles. I
will need them later on during the bootstrap execution.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
if test "$USER" = 'phundrak'
yadm decrypt
else
whiptail --yesno "Decrypt private files?" 8 40 && yadm decrypt
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Get a correct keyboard layout
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Get_a_correct_keyboard_layout-77d24b30
:END:
2021-02-04 13:43:09 +00:00
I use mainly the [[https://bepo.fr/wiki/Accueil ][bépo ]] layout, a French keyboard layout inspired by Dvorak
layouts, however I sometimes need to switch back to the standard French AZERTY
or the American QWERTY layout, so I make it so the Menu key switches for me my
layout between these three. This makes it so my xorg configuration of my
keyboard looks like this:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
set keyboardconf \
'Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "fr"
Option "XkbModel" "pc104"
Option "XkbVariant" "bepo_afnor"
Option "XkbOptions" "caps:ctrl_modifier"
EndSection'
2020-11-13 14:18:43 +00:00
#+END_SRC
So, let’ s ask the user if they want to set it as their keyboard configuration.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Set keyboard layout #########################################################\n\n"
whiptail --yesno "Would you like to set your keyboard layout to the bépo layout?" 8 55
if test $status -eq 0
echo $keyboardconf | sudo tee /etc/X11/xorg.conf.d/00-keyboard.conf
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Set our locale
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_our_locale-e74d772a
:END:
2021-02-04 13:43:09 +00:00
I use two main locales, the French and US UTF-8 locales, and I like to keep the
Japanese locale activated just in case.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
set mylocales "en_US.UTF-8 UTF-8" "fr_FR.UTF-8 UTF-8" "ja_JP.UTF-8 UTF-8"
2020-11-13 14:18:43 +00:00
#+END_SRC
I’ ll let the user accept them one by one.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Set locale ##################################################################\n\n"
2020-11-13 14:18:43 +00:00
for item in $mylocales
whiptail --yesno "Set the \"$item\" locale?" 8 40
if test $status -eq 0 -a (grep -e "#$item" /etc/locale.gen)
sudo sed -i "/$item/s/ ^#//g" /etc/locale.gen
end
end
#+END_SRC
This is my configuration I usually use when it comes to my locale.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
set localeconf "LANG=en_DK.UTF-8
LC_COLLATE=C
LC_NAME=fr_FR.UTF-8
LC_IDENTIFICATION=fr_FR.UTF-8
LC_TELEPHONE=fr_FR.UTF-8
LC_MONETARY=fr_FR.UTF-8
LC_PAPER=fr_FR.UTF-8
LC_ADDRESS=fr_FR.UTF-8
LC_MEASUREMENT=fr_FR.UTF-8"
2020-11-13 14:18:43 +00:00
#+END_SRC
Let’ s set it as our system’ s locale if the user whishes to.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
whiptail --yesno "Do you agree to have the following locale set?\n\n $localeconf" 20 43
if test $status -eq 0
echo $localeconf | sudo tee /etc/locale.conf
end
2020-11-13 14:18:43 +00:00
#+END_SRC
Now we can generate our locale!
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Generate locale #############################################################\n\n"
sudo locale-gen
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Create some folders
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Create_some_folders-bf701387
:END:
2021-02-04 13:43:09 +00:00
Let’ s create some folders we might need for mounting our drives, Android devices
and CDs.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Create directories for mounting #############################################\n\n"
sudo mkdir -p /mnt/ {USB,CD,Android}
sudo chown $USER:(id -g $USER) /mnt/ {USB,CD,Android}
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Set user’ s shell to fish
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_user’ s_shell_to_fish-1a794be2
:END:
2020-11-13 14:18:43 +00:00
First of all, the bootstrap shell will set the user’ s shell to fish.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Set fish as the default shell ###############################################\n\n"
whiptail --yesno "Set the current user’ s default shell to fish?" 8 50
if test $status -eq 0 -a ! "$SHELL" = '/usr/bin/fish'
chsh -s /usr/bin/fish
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Install basic packages
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_basic_packages-17173316
:END:
2020-11-13 14:18:43 +00:00
Let’ s set in a custom varible what packages we’ ll be needing.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
set PACKAGES \
acpi acpilight adobe-source-han-sans-jp-fonts arc-gtk-theme asar ascii \
2021-10-20 12:00:18 +00:00
aspell-en aspell-fr awesome awesome-terminal-fonts \
awesome-freedesktop-git base-devel bashtop bat biber bitwarden-bin \
bluez-firmware bluez-utils bzip2 chicken chromium clisp corrupter-git \
cppcheck cppreference cppreference-devhelp cpupower discord-canary \
discount docker docker-compose dockerfile-language-server-bin doxygen \
emacs emacs-org-mode exa exfat-utils farbfeld fd ffmpegthumbnailer \
findutils firefox flake8 flat-remix-gtk freeglut fzf gcc-libs gdb gimp \
gnome-disk-utility gnome-epub-thumbnailer gnu-free-fonts gnuplot go \
go-tools golangci-lint-bin graphviz htop hugo i3lock-color inetutils \
isync inter-font javascript-typescript-langserver js-beautify jfsutils \
jmtpfs kitty lain-git libxft-bgra linux-headers lldb logrotate meson \
minted man-db man-pages mpc mpd mpv mupdf-tools nano ncdu ncmpcpp \
nemo-fileroller nemo-preview neofetch netctl network-manager-applet \
networkmanager networkmanager-openvpn nm-connection-editor nodejs-vmd \
nomacs nordic-theme-git nordvpn-bin noto-fonts-emoji npm ntfs-3g \
numlockx obs-studio openssh otf-fandol otf-ipafont p7zip \
pacman-contrib pandoc-bin pass pavucontrol pdfpc picom-git \
powerline-fonts prettier pulseaudio-bluetooth python-autoflake \
python-epc python-importmagic python-language-server python-nose \
python-pip python-poetry python-ptvsd python-pytest qt5-imageformats \
qemu r raw-thumbnailer reflector ripgrep rofi rsync rtv \
ruby-rb-fsevent ruby-sass rustup samba scrot sent shadow siji-git \
simplescreenrecorder sshfs sxiv texlive-bibtexextra texlive-fontsextra \
texlive-formatsextra texlive-humanities texlive-langjapanese \
texlive-pictures texlive-pstricks texlive-publishers texlive-science \
tldr tmux tree ttf-arphic-uming ttf-baekmuk ttf-charis-sil ttf-dejavu \
ttf-google-fonts-opinionated-git ttf-hanazono ttf-joypixels ttf-koruri \
ttf-liberation ttf-monapo ttf-sazanami ttf-tibetan-machine typescript \
typescript-language-server-bin unicode-emoji unrar usbutils valgrind \
vscode-css-languageserver-bin vscode-html-languageserver-bin w3m wget \
2021-10-12 09:31:20 +00:00
x11-ssh-askpass xclip xdg-user-dirs-gtk xfce-polkit xidlehook xfsprogs \
xorg-drivers xorg-server xorg-xinit xss-lock xvkbd xwallpaper \
yaml-language-server-bin zeal
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
These are the minimum I would have in my own installation. You can edit it
however you want. Let’ s install those.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Installing needed packages ##################################################\n\n"
sudo pacman -Syu
for pkg in $PACKAGES
paru -S --needed $pkg
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
2020-01-30 13:06:46 +00:00
** Tangle configuration files from Org files
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Tangle_configuration_files_from_Org_files-cc524361
:END:
2021-02-04 13:43:09 +00:00
Before tangling our configuration files, we need to create some directories
first so our files can be properly tangled. Here’ s the list of directories we
need to create:
2020-11-13 14:18:43 +00:00
#+NAME : dirs-tangled-files
| $HOME/.config/awesome |
| $HOME/.config/awesome/theme |
| $HOME/.config/emacs/private |
| $HOME/.config/fish |
| $HOME/.config/gtk-2.0 |
| $HOME/.config/gtk-3.0 |
| $HOME/.config/ncmpcpp |
| $HOME/.config/neofetch |
| $HOME/.config/picom |
| $HOME/.config/yadm |
| $HOME/.local/bin |
| $HOME/org/capture |
#+NAME : gen-dirs-tangle
#+BEGIN_SRC emacs-lisp :var dirs=dirs-tangled-files
2021-10-12 09:31:20 +00:00
(mapconcat (lambda (x) (format "mkdir -p %s" (car x)))
dirs
"\n")
2020-11-13 14:18:43 +00:00
#+END_SRC
#+RESULTS[a95e25a5f3ac91b1f884b39dde38e3b51366b188]: gen-dirs-tangle
#+begin_example
mkdir -p $HOME/.config/awesome
mkdir -p $HOME/.config/awesome/theme
mkdir -p $HOME/.config/emacs/private
mkdir -p $HOME/.config/fish
mkdir -p $HOME/.config/gtk-2.0
mkdir -p $HOME/.config/gtk-3.0
mkdir -p $HOME/.config/ncmpcpp
mkdir -p $HOME/.config/neofetch
mkdir -p $HOME/.config/picom
mkdir -p $HOME/.config/yadm
mkdir -p $HOME/.local/bin
mkdir -p $HOME/org/capture
#+end_example
Our code to generate such directories looks like this:
#+BEGIN_SRC fish :noweb yes
2021-10-12 09:31:20 +00:00
<<gen-dirs-tangle() >>
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
The next step is to tangle all the Org files. Here is the list of files that are
to be tangled:
2020-11-13 14:18:43 +00:00
#+NAME : tangled-files
| filename |
|-------------|
| awesome.org |
| bin.org |
| emacs.org |
| fish.org |
| index.org |
| picom.org |
| rustfmt.org |
| tmux.org |
#+NAME : generate-tangle
#+BEGIN_SRC emacs-lisp :var files=tangled-files[,0]
2021-10-12 09:31:20 +00:00
(mapconcat (lambda (x) (concat
(format "printf '\\n\\n==== Tangling %s\\n\\n' && \\\n" x)
(concat "emacs -q --batch --eval '(require \\'ob-tangle)' \\\n"
"--eval '(setq org-confirm-babel-evaluate nil)' \\\n"
(format "--eval '(org-babel-tangle-file \"~/org/config/ %s\")'\n" x))))
files
"\n")
2020-11-13 14:18:43 +00:00
#+END_SRC
#+RESULTS[87a25d6c524e8d1346452c54aa42ac3ac09d94cf]: generate-tangle
#+begin_example
printf '\n\n==== Tangling awesome.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/awesome.org")'
printf '\n\n==== Tangling bin.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/bin.org")'
printf '\n\n==== Tangling emacs.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/emacs.org")'
printf '\n\n==== Tangling fish.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/fish.org")'
printf '\n\n==== Tangling index.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/index.org")'
printf '\n\n==== Tangling picom.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/picom.org")'
printf '\n\n==== Tangling rustfmt.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/rustfmt.org")'
printf '\n\n==== Tangling tmux.org\n\n' && \
emacs -q --batch --eval '(require \'ob-tangle)' \
--eval '(setq org-confirm-babel-evaluate nil)' \
--eval '(org-babel-tangle-file "~/org/config/tmux.org")'
#+end_example
#+BEGIN_SRC fish :noweb yes
2021-10-12 09:31:20 +00:00
printf "\n# Tangling org files ##########################################################\n\n"
<<generate-tangle() >>
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-30 13:06:46 +00:00
2020-01-16 18:48:14 +00:00
** Setting up Emacs: Installing Spacemacs
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Setting_up_Emacs:_Installing_Spacemacs-0b3d44b2
:END:
2021-02-04 13:43:09 +00:00
Now, the first thing we want to do with Emacs is install its Spacemacs
distribution. We’ ll clone its =develop= branch into =~/.config/emacs= . We need
to do this prior to our dotfiles’ cloning because of some submodules that are
cloned within our =~/.config/emacs= directory, and git won’ t let us clone
Spacemacs in an already existing and non-empty directory. To make sure it isn’ t
one, let’ s delete any potentially existing =~/.config/emacs= directory:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Installing Spacemacs ########################################################\n\n"
rm -rf $HOME/.config/emacs $HOME/ .emacs* .spacemacs
2020-11-13 14:18:43 +00:00
#+END_SRC
Now we can clone Spacemacs:
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
git clone --branch develop https://github.com/syl20bnr/spacemacs ~/ .config/emacs
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
And we can restore what might have been deleted in our =~/.emacs.d/private=
directory:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
yadm checkout -- ~/.config/emacs/private/
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
2020-09-28 16:17:07 +00:00
** Set up dotfiles’ git repository
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-ab372bd9
:END:
2020-01-16 18:48:14 +00:00
*** Update our dotfiles’ remotes
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-Update_our_dotfiles’ _remotes-5a0fe6f7
:END:
2021-02-04 13:43:09 +00:00
This line in the bootstrap script will test if the current user is using my
username. If yes, it’ s probably me.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
if test "$USER" = 'phundrak'
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
If it is me installing and using these dotfiles, I want the remotes of my
dotfiles to be set to ssh remotes using my ssh keys.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Update yadm’ s remotes #######################################################\n\n"
yadm remote set-url origin git@labs.phundrak.com:phundrak/dotfiles.git
yadm remote add github git@github.com:phundrak/dotfiles.git
2020-11-13 14:18:43 +00:00
#+END_SRC
I will also want to decrypt my encrypted files, such as said ssh keys.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Decrypt encrypted dotfiles ##################################################\n\n"
yadm decrypt
2020-11-13 14:18:43 +00:00
#+END_SRC
Finally, let’ s close this ~if~ statement.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** Update our submodules
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_dotfiles-Update_our_submodules-3e921579
:END:
2021-02-04 13:43:09 +00:00
Now we can download the various dependencies of our dotfiles. To do so, let’ s
run the following command:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Getting yadm susbmodules ####################################################\n\n"
yadm submodule update --init --recursive
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
2020-02-22 11:57:06 +00:00
** Enable some services
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-3d38d98e
:END:
2021-02-04 13:43:09 +00:00
We have installed some packages which require some services to run. Let’ s enable
them.
2020-01-16 18:48:14 +00:00
2020-02-22 11:57:06 +00:00
*** Systemd-timesyncd
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Systemd-timesyncd-d887e45b
:END:
2021-02-04 13:43:09 +00:00
This service enables time syncing with the NTP protocol, so I can be sure my
computer’ s time is correct. The service first needs to be enabled:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Enabling timesync ###########################################################\n\n"
sudo systemctl enable --now systemd-timesyncd
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
Now, let systemd know I want to use the NTP protocol to keep my computer’ s time
synced.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
sudo timedatectl set-ntp true
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-02-22 11:57:06 +00:00
2020-01-16 18:48:14 +00:00
*** Docker
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Docker-305e8309
:END:
2020-11-13 14:18:43 +00:00
First, let’ s activate Docker on startup.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Enabling and starting Docker ################################################\n\n"
sudo systemctl enable --now docker
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
Now, if we wish it, we can be added to the =docker= group so we won’ t have to
type =sudo= each time we call Docker or Docker Compose.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
read --prompt "echo 'Do you wish to be added to the `docker` group? (Y/n): ' " -l adddockergroup
if test $adddockergroup = 'y' || test $adddockergroup = "Y" || test $adddockergroup = ''
sudo usermod -aG docker $USER
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** Emacs
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Emacs-c7785c21
:END:
2021-02-04 13:43:09 +00:00
Emacs will run as a user service, which means it won’ t be launched until we log
in. However, the service won’ t be started immediately, I personally prefer to
start a standalone instance in which installing and compiling the Emacs packages
will happen, and then once that is done I will start the service.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Enabling Emacs as user service ##############################################\n\n"
systemctl --user enable emacs
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
2020-03-25 12:03:57 +00:00
*** Mpd
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Mpd-f0f5b9b7
:END:
2021-02-04 13:43:09 +00:00
Mpd will also use as a user service in order to get rid of some lines of code in
my configuration.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Enabling Mpd as a user service ##############################################\n\n"
mkdir -p ~/.config/mpd/playlists
systemctl --user enable --now mpd
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-03-25 12:03:57 +00:00
2020-01-16 18:48:14 +00:00
*** SSH server
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-SSH_server-204f5997
:END:
2021-02-04 13:43:09 +00:00
Maybe we want to activate an SSH server on our machine. If so, we can enable it.
Let’ s ask the question.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
whiptail --yesno 'Do you want to activate the ssh server?' 8 50
if test $status -eq 0
printf "\n# Enabling ssh server #########################################################\n\n"
sudo systemctl enable --now sshd
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** Acpilight
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-Acpilight-39152794
:END:
2021-02-04 13:43:09 +00:00
~acpilight~ is our utility managing the brightness of our screen. There is
actually no service to enable here, but we must ensure the user is part of the
~video~ group so we can modify the brightness of our screen without using
~sudo~ .
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
sudo usermod -aG video $USER
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** NordVPN
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Enable_some_services-NordVPN-75c1bd88
:END:
2021-02-04 13:43:09 +00:00
Thanks to the AUR package ~nordvpn-bin~ , I no longer have to manually maintain
my VPN connections with OpenVPN. However, it requires a service that we should
activate:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
sudo systemctl enable --now nordvpnd
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
Let’ s also set its default protocol to UDP. This will allow me to use any port
while connected to any WiFi as long as the 443 port is available. Because yes, I
do connect to a WiFi that blocks some important ports, such as the IMAP and SMTP
ports. Thanks University of Paris 8 for being SO paranoid.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
nordvpn s protocol tcp
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Symlink some system config files
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Symlink_some_system_config_files-1dd95175
:END:
2020-11-13 14:18:43 +00:00
We have some files in [[file:ect/ ][etc/ ]] that are to be symlinked to =/etc= .
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
for f in (find ~/.etc -type f)
set dest (echo $f | sed -n 's|^.*etc\(.* \)$|/etc\1|p')
sudo ln -s $f $dest
end
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
Let’ s also symlink the ~plock~ script ([[file:bin.org::#Lock-635fcb38 ][source here ]]) to ~/usr/bin~ so ~xss-lock~
can find it.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
sudo ln -s (which plock) /usr/bin/plock
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-10-29 15:53:28 +00:00
2020-01-16 18:48:14 +00:00
** Install packages from git
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_packages_from_git-7c6a6ea4
:END:
2020-11-13 14:18:43 +00:00
Now, let’ s install some packages from git directly.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
mkdir -p ~/fromGIT
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** Reveal.JS
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_packages_from_git-Reveal.JS-bb4da0bf
:END:
2021-02-04 13:43:09 +00:00
I sometimes use Reveal.JS to make presentations, and I set its location in my
[[file:.spacemacs ][dotspacemacs ]] file to be in =~/fromGIT= , so let’ s clone it there.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Install Reveal.JS ###########################################################\n\n"
cd ~/fromGIT
git clone https://github.com/hakimel/reveal.js.git
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Install Rust
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_Rust-1839c4d0
:END:
2020-01-16 18:48:14 +00:00
*** Install the toolchains
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_Rust-Install_the_toolchains-3480764a
:END:
2021-02-04 13:43:09 +00:00
When using Rust, I bounce between two toolchains, the ~stable~ toolchain and the
~nightly~ toolchain, although I try to stick with Rust Stable. To install them,
I will use ~rustup~ which has already been installed previously.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Install the rust toolchains, nightly is the default one #####################\n\n"
rustup default stable
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-02-04 13:43:09 +00:00
This will both download the stable toolchain and set it as the default one. Now
to install the nightly toolchain, let’ s run this:
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
rustup toolchain install nightly
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
*** Install some utilities
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_Rust-Install_some_utilities-c4a7c785
:END:
2021-02-04 13:43:09 +00:00
We’ ll need some utilities when developing Rust from Emacs, namely ~rustfmt~ and
~racer~ . Let’ s install them with ~cargo~ .
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Add rust utilities ##########################################################\n\n"
cargo install rustfmt racer
2020-11-13 14:18:43 +00:00
#+END_SRC
We will also need some components for development purposes.
#+NAME : rust-components-table
2021-05-21 12:36:38 +00:00
| Component | Why |
|-----------+-------------------------------------------|
| rust-src | Rust documentation in Emacs |
| rls | LSP backend for Emacs |
2020-11-13 14:18:43 +00:00
| clippy | A better version of cargo’ s ~check~ command |
#+NAME : rust-components-gen
#+BEGIN_SRC emacs-lisp :var components=rust-components-table[,0]
2021-10-12 09:31:20 +00:00
(mapconcat (lambda (x) (format "rustup component add %s" x))
components
"\n")
2020-11-13 14:18:43 +00:00
#+END_SRC
#+RESULTS[b3935b1c09d86fe506b43670f52960306a1e9809]:
: rustup component add rust-src
: rustup component add rls
: rustup component add clippy
Here is the code to do so:
#+BEGIN_SRC fish :noweb yes
2021-10-12 09:31:20 +00:00
<<rust-components-gen() >>
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Install some python packages
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Install_some_python_packages-a4447a6f
:END:
2021-02-04 13:43:09 +00:00
Some packages will be needed from pip in order to get our Emacs setup correctly
working.
2020-11-13 14:18:43 +00:00
#+NAME : python-packages-table
| Package | Why |
|-----------------------------+-------------------------|
| python-language-server[all] | Python LSP packages |
| pyls-isort | Import sortings for LSP |
| pyls-mypy | Mypy linter for LSP |
| pyls-black | Black plugin for pyls |
#+NAME : python-packages-gen
#+BEGIN_SRC emacs-lisp :var packages=python-packages-table[,0]
2021-10-12 09:31:20 +00:00
(format "pip install --user %s"
(string-join packages " "))
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-07-30 15:58:52 +00:00
#+RESULTS[29652be1076ffac01e34189067efa8fe9abda9d9]: python-packages-gen
2020-11-13 14:18:43 +00:00
: pip install --user python-language-server[all] pyls-isort pyls-mypy pyls-black
Let’ s install them locally for our user.
#+BEGIN_SRC fish :noweb yes
2021-10-12 09:31:20 +00:00
printf "\n# Installing Python packages ##################################################\n\n"
<<python-packages-gen() >>
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
** Set up Chicken (Scheme interpreter/compiler)
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_Chicken_ (Scheme_interpreter-compiler)-3c1a3c4a
:END:
2021-02-04 13:43:09 +00:00
Chicken needs to be set up before being used. First, we need to install its
documentation.
2020-11-13 14:18:43 +00:00
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Setting up Chicken ##########################################################\n\n"
chicken-install -s apropos chicken-doc
2020-11-13 14:18:43 +00:00
#+END_SRC
Then, we’ ll complete the documentation like so:
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
cd (chicken-csi -b -e "(import (chicken platform))" -p "(chicken-home)")
curl https://3e8.org/pub/chicken-doc/chicken-doc-repo.tgz | sudo tar zx
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-16 18:48:14 +00:00
2020-01-29 20:19:57 +00:00
** Set up our fish shell
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-f0741c22
:END:
2021-02-04 13:43:09 +00:00
The last thing we want to do is to set up our fish shell with some extensions in
order to improve the user experience.
2020-01-29 20:19:57 +00:00
2020-09-28 16:17:07 +00:00
*** Install ~fisher~
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-Install_ =fisher= -3a44531b
:END:
2020-11-13 14:18:43 +00:00
We will be using ~fisher~ as our extensions manager for Fish. Let’ s install it.
#+BEGIN_SRC fish
2021-10-12 09:31:20 +00:00
printf "\n# Installing fisher ###########################################################\n\n"
curl https://git.io/fisher --create-dirs -sLo ~/ .config/fish/functions/fisher.fish
2020-11-13 14:18:43 +00:00
#+END_SRC
2020-01-29 20:19:57 +00:00
*** Install our extensions
2020-12-10 09:20:21 +00:00
:PROPERTIES:
:CUSTOM_ID: Execute_bootstrap-Set_up_our_fish_shell-Install_our_extensions-188e4566
:END:
2020-11-13 14:18:43 +00:00
I generally use the following extensions in my Fish shell.
#+NAME : fish-extensions-table
#+CAPTION : Fish extensions managed by Fisher
| Package name | Description |
|-----------------------------+------------------------------------------------------------------|
| decors/fish-colored-man | Color man pages to make them more readable |
| franciscolourenco/done | Automatically receive notifications when a long process finishes |
| jethrokuan/fzf | Improved key bindings for [[https://github.com/junegunn/fzf][junegunn/fzf]] |
| jorgebucaran/fish-bax | Run bash scripts, replaying environment changes in fish |
| jorgebucaran/fish-getopts | CLI options parser; alternative to the [[https://fishshell.com/docs/current/commands.html#argparse][argparse]] fish builtin |
| laughedelic/pisces | Autoclose parentheses, braces, quotes and other paired symbols |
#+NAME : fish-extensions-gen
#+BEGIN_SRC emacs-lisp :var extensions=fish-extensions-table[,0]
2021-10-12 09:31:20 +00:00
(mapconcat (lambda (x) (format "fisher add %s" x))
extensions
"\n")
2020-11-13 14:18:43 +00:00
#+END_SRC
2021-12-25 20:32:49 +00:00
#+RESULTS[072e09f40140d1ff847826b8f44dd96f9e95a773]: fish-extensions-gen
2020-11-13 14:18:43 +00:00
: fisher add decors/fish-colored-man
: fisher add franciscolourenco/done
: fisher add jethrokuan/fzf
: fisher add jorgebucaran/fish-bax
: fisher add jorgebucaran/fish-getopts
: fisher add laughedelic/pisces
#+BEGIN_SRC fish :noweb yes
2021-10-12 09:31:20 +00:00
printf "\n# Installing Fisher Extensions ################################################\n\n"
<<fish-extensions-gen() >>
2020-11-13 14:18:43 +00:00
#+END_SRC