#!/bin/sh if [ $XDG_SESSION_TYPE == "wayland" ]; then wl-copy < /dev/stdin > /dev/null else xclip -selection clipboard -i < /dev/stdin > /dev/null fi