15 lines
350 B
Bash
Executable file
15 lines
350 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Display contents of selection via dunst if running.
|
|
# Separate script for i3.
|
|
|
|
! pgrep -x dunst >/dev/null && echo "dunst not running." && exit
|
|
|
|
clip=$(xclip -o -selection clipboard)
|
|
|
|
prim=$(xclip -o -selection primary)
|
|
|
|
[ "$prim" != "" ] && notify-send "<b>Clipboard:</b>
|
|
$prim"
|
|
[ "$clip" != "" ] && notify-send "<b>Primary:</b>
|
|
$clip"
|