blob: f55e961f3c01904066b7f2b0ff70da0858d40b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
|