Skip to content

Instantly share code, notes, and snippets.

@mi11y
Last active July 13, 2020 04:57
Show Gist options
  • Save mi11y/d83e936aa9671428bed8372cf98a6798 to your computer and use it in GitHub Desktop.
Save mi11y/d83e936aa9671428bed8372cf98a6798 to your computer and use it in GitHub Desktop.
A script to get myself up and running on a new machine; By jorgemanzo
#!/bin/bash
printf "Adding enpass repo...........\n"
echo "deb https://apt.enpass.io/ stable main" > /etc/apt/sources.list.d/enpass.list
wget -O - https://apt.enpass.io/keys/enpass-linux.key | apt-key add -
apt update
apt install enpass
printf "My Common Apps...........\n"
apt install firefox git zsh elementary-sdk neovim com.github.donadigo.eddy flatpak
printf "Making your ssh-key............\n"
ssh-keygen -t ed25519 -b 4096
printf "Done! Now you clone your dotfiles and do a full deploy!"
runuser -l $SUDO_USER -c "DISPLAY=:0 firefox --private-window www.github.com"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment