2022-04-13 21:24:16 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2086
|
2023-04-08 19:28:19 +00:00
|
|
|
set -e
|
|
|
|
alias s=sudo se="s dnf -y" g=git
|
|
|
|
|
|
|
|
gnome="clapper gnome-photos gnome-mpv gnome-terminal nautilus rhythmbox"
|
|
|
|
se remove $gnome firefox libreoffice onboard PackageKit-command-not-found thunderbird
|
|
|
|
|
|
|
|
pkgs="advancecomp aria2 audacious audacity autojump avidemux bleachbit bsdtar bzip3
|
|
|
|
caja ccache corectrl dolphin-emu engrampa fd-find fish fzf gifsicle gimp
|
|
|
|
git-credential-libsecret git-extras htop ifuse innoextract intel-clear-sans-fonts
|
|
|
|
jdupes jpegoptim keepassxc kernel-tools kitty libjxl-utils lynx megatools mkvtoolnix
|
|
|
|
moreutils mpv ncdu netsurf neovim nicotine+ nnn opus-tools oxipng p7zip pandoc
|
|
|
|
parallel pipx pngquant qt-creator qutebrowser python3-readability-lxml qrencode
|
|
|
|
ripgrep rofi sass shellcheck spectacle starship stow sxiv syncthing tig tlp tor
|
|
|
|
torsocks ubuntumono-nerd-fonts upx usbmuxd wimlib-utils yt-dlp zathura-pdf-mupdf
|
|
|
|
zathura-plugins-all"
|
|
|
|
se update; se install $pkgs
|
2021-10-27 06:58:27 +00:00
|
|
|
|
2022-01-15 18:31:54 +00:00
|
|
|
stow --no-folding -d ~/.dotfiles -t ~/.config .
|
2023-04-08 19:28:19 +00:00
|
|
|
rm ~/.gtkrc-2.0
|
2022-02-04 18:17:39 +00:00
|
|
|
ln -s ~/.config/gtk-3.0/gtkrc ~/.gtkrc-2.0
|
2022-09-09 18:54:48 +00:00
|
|
|
mkdir -p ~/.parallel/will-cite
|
2021-09-25 05:28:09 +00:00
|
|
|
|
2023-03-27 15:33:00 +00:00
|
|
|
wget https://github.com/dracula/rofi/raw/main/theme/config2.rasi -P ~/.config/rofi
|
2022-11-10 02:58:23 +00:00
|
|
|
wget https://github.com/dracula/kitty/raw/master/dracula.conf -P ~/.config/kitty
|
2023-04-08 19:28:19 +00:00
|
|
|
wget https://github.com/dracula/musikcube/raw/main/dracula.json -P ~/.config/musikcube/themes
|
2022-11-10 02:58:23 +00:00
|
|
|
|
2022-09-09 18:54:48 +00:00
|
|
|
wget https://github.com/mrzool/bash-sensible/raw/master/sensible.bash -O ~/.bashrc
|
2022-05-27 18:05:57 +00:00
|
|
|
wget https://github.com/savq/paq-nvim/raw/master/lua/paq.lua -P ~/.config/nvim/lua
|
2022-04-25 22:18:33 +00:00
|
|
|
wget https://source.netsurf-browser.org/netsurf.git/plain/resources/adblock.css\
|
|
|
|
https://nitter.it/css/themes/dracula.css -P ~/.config/qutebrowser
|
2022-11-10 02:58:23 +00:00
|
|
|
|
2023-04-08 19:28:19 +00:00
|
|
|
q=qutebrowser; wget https://github.com/$q/$q/raw/master/misc/userscripts/readability\
|
|
|
|
https://github.com/$q/$q/raw/master/misc/userscripts/qr -P ~/.config/$q/userscripts
|
|
|
|
chmod +x ~/.config/qutebrowser/userscripts/*
|
|
|
|
|
2022-02-19 04:04:40 +00:00
|
|
|
un(){ F=$(mktemp); mkdir -p "$2"; curl https://api.github.com/repos/"$1"/releases |\
|
|
|
|
grep -om1 http.\*zip | wget -i- -O"$F"; unzip "$F" -d "$2";}
|
2021-09-25 05:28:09 +00:00
|
|
|
un bloc97/Anime4k ~/.config/mpv/shaders
|
|
|
|
un mozilla/pdf.js ~/.local/share/qutebrowser/pdfjs
|
|
|
|
|
2022-02-04 18:17:39 +00:00
|
|
|
chsh -s "$(which fish)"
|
|
|
|
fish -c "aliases;clean"
|
2021-09-25 05:28:09 +00:00
|
|
|
|
2021-10-26 19:01:32 +00:00
|
|
|
g g p:appdwarf ~/.appdwarf
|
|
|
|
g g p:phantop.github.io ~/.site
|
|
|
|
g g p:haiku-icons ~/.local/share/icons/Haiku
|
2023-04-08 19:28:19 +00:00
|
|
|
g g gh:dracula/gtk ~/.local/share/themes/dracula
|
2022-05-27 18:05:57 +00:00
|
|
|
nvim +PaqInstall +q
|
2021-09-25 05:28:09 +00:00
|
|
|
|
2022-02-19 04:04:40 +00:00
|
|
|
parallel gsettings set org.gnome.desktop.interface {}-theme Haiku ::: cursor icon
|
2023-04-08 19:28:19 +00:00
|
|
|
gsettings set org.gnome.desktop.interface gtk-theme dracula
|
2022-12-25 18:52:42 +00:00
|
|
|
|
|
|
|
for i in ~/.dotfiles/dconf/*; do
|
|
|
|
dconf reset -f "$(basename $i | sed 's/^/./;s#\.#/#g;s#.toml#/#')"
|
|
|
|
dconf load "$(basename $i | sed 's/^/./;s#\.#/#g;s#.toml#/#')" < "$i"
|
|
|
|
done
|