Advertisement
Guest User

Untitled

a guest
Nov 13th, 2020 (edited)
2,513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. YAD_WIDTH=222 # 222 is minimum possible value
  4. YAD_HEIGHT=193 # 193 is minimum possible value
  5. DATE="$(date +"%a %d %H:%M")"
  6.  
  7. case "$1" in
  8. --popup)
  9.  
  10. yad --calendar --undecorated --fixed --close-on-unfocus --no-buttons --posx=585\
  11. --title="calendar" --borders=0 >/dev/null &
  12. ;;
  13. *)
  14. echo "foo"
  15. ;;
  16. esac
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement