My dotfiles
Go to file
the_4n0nym0u53 7e8a59ae9c
Swaynag: Add seperate color for reboot
2022-02-19 23:59:23 +01:00
alacritty/.config/alacritty Alacritty: background_opacity deprecated 2022-01-25 23:22:24 +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 clear-clipboard.sh: Also clear clipboard in X/XWayland 2022-01-27 20:09:04 +01:00
sway Swaynag: Add seperate color for reboot 2022-02-19 23:59:23 +01:00
swaylock Revamp README(s). 2021-12-30 15:38:46 +01:00
swaynag/.config/swaynag Swaynag: Add seperate color for reboot 2022-02-19 23:59:23 +01:00
waybar Waybar: Add default icon for media module 2022-02-09 18:49:40 +01:00
zsh Zsh: Fix TERM 2022-02-05 16:12:35 +01:00
LICENSE Initial commit 2021-10-03 00:40:44 +02:00
README.md Zsh: Add Debian compatibility 2022-02-05 16:06:53 +01:00
artix-install.sh Compatible with Ubuntu 2022-01-26 14:42:41 +01:00
deb-install.sh Zsh: Add Debian compatibility 2022-02-05 16:06:53 +01:00
fedora-install.sh Compatible with Ubuntu 2022-01-26 14:42:41 +01:00
termux-install.sh Termux install script 2022-01-23 19:28:22 +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, Fedora, Ubuntu and Termux (Android).

To install:

$ git clone https://github.com/theanonymousexyz/dotfiles.git
$ cd dotfiles
$ chmod +x artix-install.sh
$ ./artix-install.sh   # For Artix
$ ./fedora-install.sh  # For Fedora
$ ./termux-install.sh  # For Termux
$ ./deb-install.sh     # For Debian and Ubuntu

Note that I use doas instead of sudo (only on Artix). 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.