dots


commit
eb07519
parent
d6f5765
author
xxwhirlpool
date
2026-03-04 17:27:48 -0500 EST
copy & paste
2 files changed,  +13, -0
A config/.local/bin/copy
+7, -0
1@@ -0,0 +1,7 @@
2+#!/usr/bin/env bash
3+#
4+# inspired by evan hahn:
5+# https://github.com/EvanHahn/dotfiles/blob/main/home/bin/bin/copy
6+
7+# perl one-liner gets rid of newlines
8+perl -pe "chomp if eof" | xclip -sel clipboard
A config/.local/bin/paste
+6, -0
1@@ -0,0 +1,6 @@
2+#!/usr/bin/env bash
3+#
4+# inspired by evan hahn:
5+# https://github.com/EvanHahn/dotfiles/blob/main/home/bin/bin/pasta
6+
7+xclip -sel clipboard -o