6 lines
168 B
Bash
Executable file
6 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Display contents of selection via dunst if running.
|
|
# Separate script for i3.
|
|
|
|
pgrep -x dunst >/dev/null && notify-send "$(xclip -o -selection clipboard)"
|