#!/bin/sh [ -e $HYPRLAND_RUN/type ] || exit ID=`cat $HYPRLAND_RUN/last-id` if [ `cat $HYPRLAND_RUN/type` = color ]; then notify-send -r $ID -i $HYPRLAND_RUN/color.png 'Copied!' -t $NOTIFICATION_DELAY wl-copy `cat $HYPRLAND_RUN/buffer` else notify-send -r $ID -i $HYPRLAND_RUN/buffer 'Copied!' -t $NOTIFICATION_DELAY cat $HYPRLAND_RUN/buffer | wl-copy fi