1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-30 12:01:16 +01:00

bulkadding .local files

This commit is contained in:
tiynger
2019-09-07 17:42:18 +02:00
parent 073cd4d3d9
commit e4e7d54f9f
41 changed files with 791 additions and 0 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"