* renamed scripts * moved install, uninstall, deleteConfig scripts to top-level * fixed desktop file not recognized on installation, only on restart * removed Eula accept from install script * abort install and uninstall when not running as root * revised README
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Are you sure want to delete your Sourcetrail config?"
|
|
printf 'enter [y/n] '
|
|
read ans
|
|
case ${ans:=y} in [yY]*) ;; *) exit ;; esac
|
|
|
|
rm -rf ~/.config/sourcetrail
|