pub / dotfiles

Configuration of software on my computer
git clone https://src.jayvii.de/pub/dotfiles.git
Home | Log | Files | Exports | Refs | RSS

donotdisturb_toggle.sh (133B)


      1 #!/usr/bin/env bash
      2 
      3 if [ $(makoctl mode) != "default" ]; then
      4   makoctl set-mode default
      5 else
      6   makoctl set-mode do-not-disturb
      7 fi
      8