This commit is contained in:
Valeria Fadeeva 2023-11-29 03:04:43 +05:00
parent 423d8d64e6
commit 07d09d8715
6 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
[Desktop Entry]
Exec=/usr/bin/bash ~/.local/userbin/key-sign.sh
Exec=/usr/bin/bash ~/.local/bin/key-sign.sh
Icon=
Name=key-sign.sh
Path=

View File

@ -1,5 +1,5 @@
[Desktop Entry]
Exec=/usr/bin/bash ~/.local/userbin/reset-layout.sh
Exec=/usr/bin/bash ~/.local/bin/reset-layout.sh
Icon=
Name=reset-layout.sh
Path=

View File

@ -1,5 +1,5 @@
[Desktop Entry]
Exec=/usr/bin/bash ~/.local/userbin/set-default-web-browser.sh
Exec=/usr/bin/bash ~/.local/bin/set-default-web-browser.sh
Icon=
Name=set-default-web-browser.sh
Path=

View File

@ -68,6 +68,6 @@ do
if [ "$user" != "liveuser" ]; then
rm /home/"$user"/.config/autostart/key-sign.sh.desktop
rm /home/"$user"/.local/userbin/key-sign.sh
rm /home/"$user"/.local/bin/key-sign.sh
fi
done

View File

@ -11,5 +11,5 @@ notify-send -t 5000 -a "Theme is" "$theme" "$(date '+%Y.%m.%d %H:%M:%S')"
if [ "$(whoami)" != "liveuser" ]; then
sleep 5
rm "$HOME/.config/autostart/reset-layout.desktop"
rm "$HOME/.local/userbin/reset-layout.sh"
rm "$HOME/.local/bin/reset-layout.sh"
fi

View File

@ -11,5 +11,5 @@ notify-send -t 5000 -a "Default browser is" "$browser" "$(date '+%Y.%m.%d %H:%M:
if [ "$(whoami)" != "liveuser" ]; then
sleep 5
rm "$HOME/.config/autostart/set-default-web-browser.desktop"
rm "$HOME/.local/userbin/set-default-web-browser.sh"
rm "$HOME/.local/bin/set-default-web-browser.sh"
fi