11 lines
387 B
Bash
Executable file
11 lines
387 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Creating directories if missing
|
|
mkdir -p ~/.local/bin ~/.local/share/applications
|
|
|
|
# Copying the good stuff
|
|
cp -pv wf-profsel.sh ~/.local/bin/
|
|
cp -pv wf-profsel.desktop ~/.local/share/applications/
|
|
|
|
echo -e "\nWaterfox 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.\n"
|
|
|