This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.README.md

32 lines
987 B
Markdown

# Custom system config.
This is my own custom config that I use on my GNU/Linux machines. Not meant to be used by anyone else.
For references, go to the [doc directory](.doc).
# Bootstrap.
**CAREFUL!** This will overwrite files with the same name in your home directory!
```text
curl -s https://git.voronind.com/voronind/linux/raw/branch/master/.bootstrap.sh | bash && source .bashrc
```
# Load Gnome settings.
To load Gnome settings run `dconf_load`.
# Conventions.
## File namings.
Directory names are `snake_case` so you don't have to release the Shift key 10 times per second when tabing deep for directory.
File names are `PascalCase` to differ from directories, also it works nice with things like my archives where underscore and dash separate extra file data.
## Bash scripting.
### Variable names.
Use `SNAKE_CASE_UPPERCASE` for global vars *(careful!)* and `snake_case` for function local vars. For private vars and functions append upperscode like this: `_foo`.