#!/bin/bash

# tint2_toggle

if pgrep -afu $USER "tint2 -c " 2>/dev/null; then
    killall -u $USER tint2
else
    mb-tint2-session &
fi
