mirror of
https://github.com/lloeki/toolbelt.git
synced 2025-12-06 01:54:41 +01:00
8 lines
166 B
Bash
Executable file
8 lines
166 B
Bash
Executable file
#!/bin/sh
|
|
|
|
seconds=$1
|
|
shift
|
|
|
|
[[ -n $seconds ]] && sleep $seconds
|
|
|
|
open -a /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app
|