First signed commit after migration

This commit is contained in:
Sam A. 2022-06-06 16:20:48 +02:00
parent 337899a3b4
commit 82cb46d7c8
Signed by: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 15 additions and 5 deletions

View File

@ -1,6 +1,7 @@
# My dotfiles
This is a collection of some of my dotfiles for my Linux systems. These work on Artix, Debian, Fedora, Ubuntu and Termux (Android).
This is a collection of some of my dotfiles for my Linux systems. These
work on Artix, Debian, Fedora, Ubuntu and Termux (Android).
To install:
@ -10,15 +11,24 @@ $ cd dotfiles
$ ./install.sh
```
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`:
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`:
```bash
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.
- 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.
- 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`.
- 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`.