dotfiles
## Content
* [Project description](#chapter-0)
* [Installation](#chapter-1)
* [Tips](#chapter-2)
## Project description
Bash config files
[]()
## Installation
```bash
git clone https://github.com/TheK4n/dotfiles
chmod u+x dotfiles/setup.sh
dotfiles/setup.sh
rm -rf dotfiles
. ~/.bashrc
```
## Tips
```$RANDOM``` - Return random 0-32767\
```\command``` - Without using alias
### Autostart
* create ```/etc/systemd/system/.service```
```bash
sudo vim /etc/systemd/system/.service # create custom service
sudo systemctl daemon-reload
sudo systemctl start .service # start custom service
sudo systemctl status .service # check status
sudo systemctl enable .service # autostart custom service
```