scripts moved to ~/.local/bin

This commit is contained in:
Luke Smith
2019-05-18 00:07:32 -04:00
parent 18e001db07
commit 54920103c2
78 changed files with 13 additions and 13 deletions

10
.local/bin/i3cmds/showclip Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Display contents of selection via dunst if running.
# Separate script for i3.
clip=$(xclip -o -selection clipboard)
prim=$(xclip -o -selection primary)
[ -n "$clip" ] && notify-send "Clipboard:" "$clip"
[ -n "$prim" ] && notify-send "Primary:" "$prim"