dotfiles/README.md
2021-11-14 18:49:06 +03:00

1.2 KiB

dotfiles

Content

Project description

Bash config files

Prompt

Installation

git clone https://github.com/TheK4n/dotfiles
chmod u+x dotfiles/setup.sh
dotfiles/setup.sh
. ~/.bashrc

Tips

$RANDOM - Return random 0-32767
\command - Without using alias

Autostart

  • create /etc/systemd/system/<service>.service
sudo vim /etc/systemd/system/<service>.service  # create custom service
sudo systemctl daemon-reload
sudo systemctl start <service>.service  # start custom service
sudo systemctl status <service>.service  # check status
sudo systemctl enable <service>.service  # autostart custom service