massive cleanup

This commit is contained in:
Luke Smith
2019-05-19 20:05:14 -04:00
parent bf8c6b1e20
commit c6e69e9642
41 changed files with 11 additions and 24 deletions

10
.local/bin/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"