view host/macos/removeStartupScripts.sh @ 2051:331c1853af25 acme-tiny

bundle acme-tiny as a pyinstaller executable to avoid python dependency
author Violet7
date Tue, 11 Nov 2025 18:59:39 -0800
parents fd3d56f39450
children
line wrap: on
line source

#!/bin/bash

. startupScripts.sh;

cd $localStartup;

for file in *.plist; do
	sudo rm ${systemStarup}/${file};
	sudo rm $file;
done;