diff options
author | Karel Kočí <cynerd@email.cz> | 2022-01-16 14:43:39 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-01-16 14:43:39 +0100 |
commit | c3f3442f62a121ec6562ac955a6ae48b42e0a9a6 (patch) | |
tree | 2e0b1b3fe9b70242e2310b57879b011faa26721d /shellrc.d-desktop/sway | |
parent | 3a9fddb8dd5e2f4bd71a45a4b27635089ec02483 (diff) | |
download | shellrc-c3f3442f62a121ec6562ac955a6ae48b42e0a9a6.tar.gz shellrc-c3f3442f62a121ec6562ac955a6ae48b42e0a9a6.tar.bz2 shellrc-c3f3442f62a121ec6562ac955a6ae48b42e0a9a6.zip |
desktop/sway: add variant of xorg for sway
Diffstat (limited to 'shellrc.d-desktop/sway')
-rw-r--r-- | shellrc.d-desktop/sway | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/shellrc.d-desktop/sway b/shellrc.d-desktop/sway new file mode 100644 index 0000000..1032a91 --- /dev/null +++ b/shellrc.d-desktop/sway @@ -0,0 +1,32 @@ +# vim: ft=sh: +# These are utility functions loaded when we are running in Sway +[ "$XDG_CURRENT_DESKTOP" = "sway" ] || return + +alias swm='swaymsg' + + +# Clip stdin to clipboard +clip() { + wl-copy --trim-newline +} + +# Clip current HEAD hash to clipboard +# Optionally you can pass commit as argument +gitclip() { + [ -n "$1" ] && local CMT="$1" || local CMT=HEAD + git rev-parse "$CMT"| clip +} +# Clip current head message to clipboard +# Optionally you can pass commit as argument +gitmclip() { + [ -n "$1" ] && local CMT="$1" || local CMT=HEAD + git log --format=%B -n 1 "$CMT" | clip +} + + +sway_outputs() { + swaymsg -t get_outputs +} +sway_inputs() { + swaymsg -t get_inputs +} |