dotfiles/scripts/clip
2025-09-12 01:53:05 -06:00

7 lines
131 B
Bash
Executable file

#!/bin/sh
if [ "$GDK_BACKEND" = "x11" ]; then
xclip -selection clipboard
elif [ "$GDK_BACKEND" = "wayland" ]; then
wl-copy
fi