My dotfiles
Go to file
the_4n0nym0u53 9598e8ba09
Optimize Zsh config for Termux
2022-01-23 19:04:32 +01:00
alacritty/.config/alacritty Adjust bright black color. 2021-12-07 20:13:42 +01:00
mako/.config/mako Solarized colorscheme (#1) 2021-12-06 20:06:58 +00:00
nvim Revamp README(s). 2021-12-30 15:38:46 +01:00
scripts Archive vfio.sh (doesn't work on laptop) 2022-01-22 15:15:20 +01:00
sway Sway: Move wallpaper to 00_appearance 2022-01-17 19:01:17 +01:00
swaylock Revamp README(s). 2021-12-30 15:38:46 +01:00
swaynag/.config/swaynag Adjust window border thiccness and move swaynag back to the top. 2021-12-26 01:27:52 +01:00
waybar /bin/sh -> dash doesn't work on Fedora. 2022-01-08 21:59:42 +01:00
zsh Optimize Zsh config for Termux 2022-01-23 19:04:32 +01:00
LICENSE Initial commit 2021-10-03 00:40:44 +02:00
README.md /bin/sh -> dash doesn't work on Fedora. 2022-01-08 21:59:42 +01:00
artix-install.sh Archive vfio.sh (doesn't work on laptop) 2022-01-22 15:15:20 +01:00
fedora-install.sh Archive vfio.sh (doesn't work on laptop) 2022-01-22 15:15:20 +01:00

README.md

My dotfiles

This is a collection of some of my dotfiles for my Linux systems. I personally use these on Artix Linux and Fedora Workstation.

If you're on Artix Linux, you can install these dotfiles by cloning this repository and executing artix-install.sh:

$ git clone https://github.com/theanonymousexyz/dotfiles.git
$ cd dotfiles
$ chmod +x artix-install.sh
$ ./artix-install.sh

Note that I use doas instead of sudo. If you prefer sudo, then change all instances of doas to sudo, or simply create a symlink doas pointing to sudo:

sudo ln -s $(which sudo) /usr/bin/doas

Notes:

  • You need to make doas/sudo rules that allow you to execute, poweroff and reboot (and additionally ivpn-service and pkill "^ivpn-service$" if you use IVPN) without a password, otherwise the keybindings and scripts for those won't work.
  • The install script requires GNU Stow to work.
  • Make sure to thoroughly examine these dotfiles and change them to your needs before using them.
  • See the READMEs in the individual subfolders here for special notes.
  • I use dash instead of sh or bash for my shell scripts. As such, all my scripts try to be as POSIX compliant as possible. If you don't want to use dash, you can change the shebang in the scripts to #!/bin/sh or #!/bin/bash.