update and refresh

This commit is contained in:
2026-08-14 05:45:29 -06:00
parent cc7243aa39
commit 013acac303
7 changed files with 31 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
COREDESKTOP="$HOME/.local/share/coredesktop"
if [ -f ~/.local/bin/coreupdate ]; then
echo "Migrating coreupdate -> update..."
sudo cp "$COREDESKTOP/update" ~/.local/bin/update
sudo rm -f ~/.local/bin/coreupdate
fi
if [ -f ~/.local/bin/corerefresh ]; then
echo "Migrating corerefresh -> refresh..."
sudo cp "$COREDESKTOP/refresh" ~/.local/bin/refresh
sudo rm -f ~/.local/bin/corerefresh
fi