#!/bin/sh pidof waybar # Check if waybar is running if [ $? = 0 ]; then killall waybar # If running, stop it else waybar # Else, run it fi