#!/bin/bash
# Kill any existing instance of the applet (by process name or window title)
pkill -f "Zram Tools" &
sleep 1

# Launch the applet (user-level, no pkexec)
/usr/share/zram-tools-gui/"Zram Tools" 2>/dev/null &

# Launch notifier (also user-level)
/usr/share/zram-tools-gui/notify-start

exit 0




