12 lines
434 B
Bash
12 lines
434 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Creating directories if missing
|
||
|
mkdir -p ~/.local/bin ~/.local/share/applications
|
||
|
|
||
|
# Copying the good stuff
|
||
|
cp -pv ff-profsel.sh ~/.local/bin/
|
||
|
cp -pv ff-profsel.desktop ~/.local/share/applications/
|
||
|
|
||
|
echo -e "\nFirefox Profile Selector is installed. You can use it from your applications list or menu, and use it as the main navigator for a one clic profil selection.\nTo uninstall, simply remove the installed files."
|
||
|
|