blob: 9513d38f877e9bf7d8be073f8380a477d7d7c6c9 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
if [ -n "$FIFO_UEBERZUG" ]; then
printf '{"action": "remove", "identifier": "PREVIEW"}\n' > "$FIFO_UEBERZUG"
else
exec kitten icat --clear --stdin no --transfer-mode file < /dev/null > /dev/tty
fi
|