showclip fix
This commit is contained in:
@@ -3,13 +3,8 @@
|
|||||||
# Display contents of selection via dunst if running.
|
# Display contents of selection via dunst if running.
|
||||||
# Separate script for i3.
|
# Separate script for i3.
|
||||||
|
|
||||||
! pgrep -x dunst >/dev/null && echo "dunst not running." && exit
|
|
||||||
|
|
||||||
clip=$(xclip -o -selection clipboard)
|
clip=$(xclip -o -selection clipboard)
|
||||||
|
|
||||||
prim=$(xclip -o -selection primary)
|
prim=$(xclip -o -selection primary)
|
||||||
|
|
||||||
[ "$clip" != "" ] && notify-send "<b>Clipboard:</b>
|
[ -n "$clip" ] && notify-send "Clipboard:" "$clip"
|
||||||
$clip"
|
[ -n "$prim" ] && notify-send "Primary:" "$prim"
|
||||||
[ "$prim" != "" ] && notify-send "<b>Primary:</b>
|
|
||||||
$prim"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user