Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- YAD_WIDTH=222 # 222 is minimum possible value
- YAD_HEIGHT=193 # 193 is minimum possible value
- DATE="$(date +"%a %d %H:%M")"
- case "$1" in
- --popup)
- yad --calendar --undecorated --fixed --close-on-unfocus --no-buttons --posx=585\
- --title="calendar" --borders=0 >/dev/null &
- ;;
- *)
- echo "foo"
- ;;
- esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement