2022-04-13 21:24:16 +00:00
#!/bin/sh
2023-04-08 19:28:19 +00:00
set -e
2024-07-01 15:25:37 +00:00
alias g=git s=sudo w=wget
2023-04-09 03:46:35 +00:00
2023-12-05 17:34:37 +00:00
s pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com
2023-08-21 17:58:45 +00:00
s pacman-key --lsign-key 3056513887B78AEB
s 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'
2024-06-08 21:12:50 +00:00
printf '[chaotic-aur]\nInclude = /etc/pacman.d/chaotic-mirrorlist\n' | s tee -a /etc/pacman.conf
2023-08-21 17:58:45 +00:00
s pacman -Syu
2023-10-17 01:28:11 +00:00
xargs -o sudo pacman -S --needed < ~/.dotfiles/archpkgs
2024-07-01 15:25:37 +00:00
yay -S pandoc-bin shellcheck-bin
2023-10-17 01:28:11 +00:00
chsh -s "$(which fish)"
echo kernel.core_pattern=/dev/null | s tee -a /etc/sysctl.d/50-coredump.conf
echo options i915 enable_rc6=1 enable_fbc=1 lvds_downclock=1 enable__psr=1 | s tee -a /etc/modprobe.d/i915.conf
echo options lsm=landlock,lockdown,yama,integrity,apparmor,bpf | s tee -a /boot/loader/entries/*.conf
2021-10-27 06:58:27 +00:00
2024-03-16 20:14:12 +00:00
mkdir -p ~/.parallel/will-cite ~/.config/aria2
2022-01-15 18:31:54 +00:00
stow --no-folding -d ~/.dotfiles -t ~/.config .
2024-07-16 22:02:30 +00:00
~/.dotfiles/bin/config.fish
2021-09-25 05:28:09 +00:00
2024-07-01 15:25:37 +00:00
w https://github.com/dracula/kitty/raw/master/dracula.conf -P ~/.config/kitty
w https://github.com/dracula/musikcube/raw/main/dracula.json -P ~/.config/musikcube/themes
w https://github.com/dracula/rofi/raw/main/theme/config2.rasi -P ~/.config/rofi
2022-11-10 02:58:23 +00:00
2024-07-06 03:23:04 +00:00
ln -s /usr/share/netsurf/adblock.css ~/.config/qutebrowser/css
w https://github.com/redlib-org/redlib/raw/main/static/themes/laserwave.css -P ~/.config/qutebrowser/css
sed -i s/laserwave/fixed_navbar/ ~/.config/qutebrowser/css/laserwave.css
w https://github.com/zedeus/nitter/raw/master/public/css/themes/twitter_dark.css -P ~/.config/qutebrowser/css
2024-07-05 20:37:47 +00:00
2024-07-06 03:23:04 +00:00
ao3=~/.config/qutebrowser/css/ao3.scss
2024-07-05 20:37:47 +00:00
echo ":root:has(div#outer.wrapper) {" > "$ao3"
curl https://archiveofourown.org/skins/929 | pup -p .css pre text{} >> "$ao3"
sed -i -e '/232323/d' -e 's/#5998D6/MediumPurple/' -e 's/background:.*/background: #000;/' "$ao3"
echo "}" >> "$ao3"
2024-07-06 03:23:04 +00:00
sass "$ao3" ~/.config/qutebrowser/css/ao3.css
2024-07-08 13:54:38 +00:00
sass ~/.config/qutebrowser/css/user.scss ~/.config/qutebrowser/css/user.css
2021-09-25 05:28:09 +00:00
2024-07-01 15:25:37 +00:00
w https://github.com/mrzool/bash-sensible/raw/master/sensible.bash -O ~/.bashrc
w https://github.com/savq/paq-nvim/raw/master/lua/paq.lua -P ~/.config/nvim/lua
2023-10-17 01:28:11 +00:00
nvim +PaqInstall +q
2021-09-25 05:28:09 +00:00
2024-07-01 14:34:17 +00:00
mkdir -p ~/.config/mpv/scripts
ln -s /usr/share/mpv/scripts/autocrop.lua ~/.config/mpv/scripts
ln -s /usr/share/mpv/scripts/autodeint.lua ~/.config/mpv/scripts
2024-03-16 20:14:12 +00:00
printf bt-tracker= > ~/.config/aria2/aria2.conf
2024-03-18 17:19:59 +00:00
curl -L https://github.com/ngosang/trackerslist/raw/master/trackers_best.txt | tr "\n" , >> ~/.config/aria2/aria2.conf
2024-03-16 20:14:12 +00:00
2023-11-06 16:27:01 +00:00
g g p:appdwarf ~/.local/appdwarf
2021-10-26 19:01:32 +00:00
g g p:haiku-icons ~/.local/share/icons/Haiku
2021-09-25 05:28:09 +00:00
2022-12-25 18:52:42 +00:00
for i in ~/.dotfiles/dconf/*; do
2023-10-17 01:28:11 +00:00
dconf reset -f "$(basename "$i" | tr : /)"
#shellcheck disable=SC2094
dconf load "$(basename "$i" | tr : /)" < "$i"
2022-12-25 18:52:42 +00:00
done