diff options
Diffstat (limited to 'shellrc.d/xorg')
-rw-r--r-- | shellrc.d/xorg | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shellrc.d/xorg b/shellrc.d/xorg new file mode 100644 index 0000000..f55e961 --- /dev/null +++ b/shellrc.d/xorg @@ -0,0 +1,14 @@ +# vim: ft=sh: +# These are utility functions loaded when we are running in Xserver + +[ -z "$DISPLAY" ] && return # Ignore if there is no display set +[ -n "$WAYLAND_DISPLAY" ] && return + +alias i='i3-msg' + + +# Clip stdin to clipboard +clip() { + # Note: printf as magic to remove trailing new lines + printf %s "$(cat)" | xclip -selection clipboard +} |