17 lines
252 B
Bash
17 lines
252 B
Bash
|
#!/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
|