#!/bin/sh LIST="$(doas iptables -S)" LIST6="$(doas ip6tables -S)" LISTN="$(doas nft list ruleset)" notify-send "IPTables rules" "IPTables Rules:\n$LIST" notify-send "IP6Tables rules" "IP6Tables Rules:\n$LIST6" notify-send "NFTables rules" "NFTables Rules:\n$LISTN"