mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-17 12:22:57 +00:00
59 lines
2.8 KiB
Bash
Executable file
59 lines
2.8 KiB
Bash
Executable file
#!/bin/sh
|
|
# shellcheck disable=SC2086
|
|
set -e
|
|
alias s=sudo g=git
|
|
|
|
s pacman -Syu git
|
|
git clone https://aur.archlinux.org/yay-bin.git ~/.yay
|
|
cd ~/.yay && makepkg -si
|
|
|
|
pkgs="abiword arch-install-scripts aria2 audacious audacity autojump apparmor avidemux-qt
|
|
bleachbit bzip3 ccache cpupower diffoscope difftastic dolphin-emu dracula-gtk-theme dwarfs-git engrampa fd
|
|
fish flyctl-bin fq fzf gifsicle gimp gnome-disk-utility gnome-keyring gnome-system-monitor gurk-bin
|
|
hblock htop ifuse imagemagick innoextract intel-media-driver jdupes jpegoptim jq keepassxc
|
|
kitty libjxl lynx man-db man-pages megatools mkvtoolnix-gui moreutils mpv musikcube
|
|
ncdu netsurf neovim nicotine+ nnn noto-fonts noto-fonts-cjk noto-fonts-emoji nsz opus-tools
|
|
oxipng p7zip pandoc parallel pdfjs perl-parallel-forkmanager pngquant power-profiles-daemon
|
|
proot pup-bin python-adblock python-pipx python-readability-lxml qrencode qt5-styleplugins
|
|
qt6gtk2 qutebrowser ripgrep-all rofi sass shellcheck sof-firmware spek squashfs-tools
|
|
squashfuse starship stow sxiv syncthing tig ttf-ubuntu-font-family torsocks tuc-bin
|
|
upx usbmuxd wimlib wit xsel yt-dlp zathura-cb zathura-djvu zathura-pdf-mupdf"
|
|
yay -S $pkgs
|
|
|
|
stow --no-folding -d ~/.dotfiles -t ~/.config .
|
|
mkdir -p ~/.parallel/will-cite
|
|
|
|
wget https://github.com/dracula/rofi/raw/main/theme/config2.rasi -P ~/.config/rofi
|
|
wget https://github.com/dracula/kitty/raw/master/dracula.conf -P ~/.config/kitty
|
|
wget https://github.com/dracula/musikcube/raw/main/dracula.json -P ~/.config/musikcube/themes
|
|
|
|
wget https://github.com/mrzool/bash-sensible/raw/master/sensible.bash -O ~/.bashrc
|
|
wget https://github.com/savq/paq-nvim/raw/master/lua/paq.lua -P ~/.config/nvim/lua
|
|
wget https://source.netsurf-browser.org/netsurf.git/plain/resources/adblock.css\
|
|
https://nitter.it/css/themes/dracula.css -P ~/.config/qutebrowser
|
|
|
|
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";}
|
|
un bloc97/Anime4k ~/.config/mpv/shaders
|
|
|
|
chsh -s "$(which fish)"
|
|
fish -c "aliases"
|
|
|
|
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
|
|
echo kernel.core_pattern=/dev/null | s tee -a /etc/sysctl.d/50-coredump.conf
|
|
|
|
g g p:appdwarf ~/.appdwarf
|
|
g g p:phantop.github.io ~/.site
|
|
g g p:haiku-icons ~/.local/share/icons/Haiku
|
|
nvim +PaqInstall +q
|
|
|
|
parallel gsettings set org.gnome.desktop.interface {}-theme Haiku ::: cursor icon
|
|
gsettings set org.gnome.desktop.interface gtk-theme Dracula
|
|
gsettings set org.gnome.desktop.peripherals.touchpad disable-while-typing false
|
|
|
|
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
|