9 lines
229 B
Bash
9 lines
229 B
Bash
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Disable displaying notifications. This is useful for video conference screen sharing.
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
makoctl set-mode do-not-disturb
|