Skip to content

Instantly share code, notes, and snippets.

View evertontrindade's full-sized avatar

Éverton Trindade evertontrindade

  • Patos/Paraíba/Brazil
View GitHub Profile
@evertontrindade
evertontrindade / kill-process-by-application-name.sh
Created May 19, 2017 19:36
Shell script created to kill process by application name
#!/bin/bash -x
kill -9 $(ps aux | grep PROCESS_NAME | grep -v grep | awk '{print $2}')
@evertontrindade
evertontrindade / custom-juno.sh
Last active March 28, 2020 05:49
Things to do after install Elementary OS 5.0 Juno
cd ~/Downloads
sudo apt-get update && sudo apt-get upgrade
#####################################################################
# Clean-up System
#####################################################################
sudo apt-get purge epiphany-browser epiphany-browser-data
sudo apt-get purge noise
sudo apt-get purge scratch-text-editor
@evertontrindade
evertontrindade / custom-juno-with-flatpak.sh
Last active August 17, 2019 04:43
Things to do after install Elementary OS 5.0 Juno (With flatpak)
#!/bin/bash
cd ~/Downloads
#####################################################################
# Update System
#####################################################################
sudo apt-get update && sudo apt-get upgrade -y
#####################################################################
@evertontrindade
evertontrindade / post-install-ubuntu-2004.sh
Last active March 7, 2022 14:26
Things to do after install Ubuntu 20.04 ( minimal - With flatpak)
#!/bin/bash
cd ~/Downloads
#####################################################################
# Update System
#####################################################################
sudo apt-get update -y && sudo apt-get upgrade -y
#####################################################################