#!/usr/bin/env bash case ${1:-} in on|1) /usr/bin/xautolock -enable ;; off|0) /usr/bin/xautolock -disable ;; *) exit 1 ;; esac exit 0