mirror of
https://github.com/house-of-abbey/GarminHomeAssistant.git
synced 2026-02-03 03:28:12 +00:00
Removed "." from the end of all URLs because Copilot complains it can't find the URLs and its too stupid to realise the "." should be omitted. E.g. "https://github.com/house-of-abbey/GarminHomeAssistant/blob/main/LICENSE."
24 lines
856 B
Batchfile
24 lines
856 B
Batchfile
@echo off
|
|
rem -----------------------------------------------------------------------------------
|
|
rem
|
|
rem Distributed under MIT Licence
|
|
rem See https://github.com/house-of-abbey/GarminHomeAssistant/blob/main/LICENSE
|
|
rem
|
|
rem -----------------------------------------------------------------------------------
|
|
rem
|
|
rem GarminHomeAssistant is a Garmin IQ application written in Monkey C and routinely
|
|
rem tested on a Venu 2 device. The source code is provided at:
|
|
rem https://github.com/house-of-abbey/GarminHomeAssistant
|
|
rem
|
|
rem J D Abbey & P A Abbey, 11 November 2025
|
|
rem
|
|
rem Run the icon generation Python scripts
|
|
rem
|
|
rem -----------------------------------------------------------------------------------
|
|
|
|
REM change the current directory to the batch file's location
|
|
cd /d %~dp0
|
|
python iconResize.py
|
|
python launcherIconResize.py
|
|
pause
|