You've already forked ukui-notebook
mirror of
https://github.com/ukui/ukui-notebook.git
synced 2026-03-09 09:34:07 -07:00
23 lines
368 B
Bash
23 lines
368 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
home="/home/"
|
|
|
|
db_file="/.config/ukui/Clock_database.db"
|
|
feedback="/.config/ukui/url.conf"
|
|
|
|
for file in $(ls /home)
|
|
do
|
|
db_file_path=${home}${file}${db_file}
|
|
feedback_path=${home}${file}${feedback}
|
|
if [ -f "$db_file_path" ]; then
|
|
rm "$db_file_path"
|
|
fi
|
|
if [ -f "$feedback_path" ]; then
|
|
rm "$feedback_path"
|
|
fi
|
|
done
|