17 lines
268 B
Bash
17 lines
268 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 ripgrep bat exa
|
|
|
|
apt install shellcheck
|
|
|
|
# Graphical tools
|
|
apt install redshift-gtk meld
|