Skip to content

Instantly share code, notes, and snippets.

@RxDx
RxDx / MacOSLogoutHook.txt
Last active July 18, 2024 02:23
MacOS: Run script before shutdown
Create a file:
$ pico /Users/Shared/logoutHook.sh
File content:
#!/bin/bash
say 'Hasta la vista baby!'
Set exuction permission:
$ sudo chmod +x /Users/Shared/logoutHook.sh