feat: Adds weather desktop file, I may need to fix how it gets copied in the dev-env script.

This commit is contained in:
2025-10-01 17:26:08 -04:00
parent dccf54e115
commit f37b5f1db2
8 changed files with 55 additions and 27 deletions

2
webapp
View File

@@ -54,7 +54,7 @@ install() {
# Install local icons if needed
mkdir -p $XDG_DATA_HOME/applications/icons
for i in $(find $DEV_ENV/env/icons -mindepth 1 -maxdepth 1 -type f); do
for i in $(find $DEV_ENV/env/.local/share/applications/icons -mindepth 1 -maxdepth 1 -type f); do
if [[ ! -f $XDG_DATA_HOME/applications/icons/$i ]] && [[ $dry_run == "0" ]]; then
cp $i $XDG_DATA_HOME/applications/icons
fi