9 lines
350 B
Bash
9 lines
350 B
Bash
# Install flameshot
|
|
sudo apt update
|
|
sudo apt install flameshot -y
|
|
echo -e "\nFlameshot installed!"
|
|
|
|
# Apply custom configuration
|
|
rm $HOME/.config/flameshot/flameshot.ini 2>/dev/null
|
|
wget https://git.kennel.ml/Anri/myLinuxConfiguration/raw/branch/main/.config/flameshot/flameshot.ini -P $HOME/.config/flameshot/
|
|
echo -e "\nFlameshot configured! 🎉"
|