Add an install script to get ready quickly on a new machine
This commit is contained in:
parent
357c0aab13
commit
81cf4af47b
16
install.sh
Normal file
16
install.sh
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/env bash
|
||||||
|
|
||||||
|
if [ "$EUID" -ne 0 ]; then
|
||||||
|
echo "Please run as root :)"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
apt update
|
||||||
|
|
||||||
|
# Command line tools
|
||||||
|
apt install build-essential vim kakoune git htop curl wget jq
|
||||||
|
|
||||||
|
apt install shellcheck
|
||||||
|
|
||||||
|
# Graphical tools
|
||||||
|
apt install redshift-gtk meld
|
Loading…
Reference in New Issue
Block a user