Advertisement
v1ral_ITS

easy script to create form dialog

Aug 12th, 2018
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.23 KB | None | 0 0
  1. #!/bin/bash
  2. #!/bin/bash
  3. ####################################
  4. #                    
  5. # START                
  6. # g0ne_@p0stal <v1ral_ITS>        
  7. # ImPerialTeKSolutions@outlook.com
  8. #                  
  9. ####################################
  10. echo "          #              #"
  11. echo "          ################    ####"
  12. echo "          ################    ####"
  13. echo "          ################     ##"
  14. echo "                         #"
  15. echo "             #################"
  16. echo "          ####################"
  17. echo "          ####################"
  18. echo "          ##             #"
  19. echo "          ##"
  20. echo "            #"
  21. echo "          ####      ## "
  22. echo "          ####    ###### "
  23. echo "          ##     ######## "
  24. echo "          #     ####     #"
  25. echo "          #     ####     #"
  26. echo "          #     ####    ##"
  27. echo "          #    ####    ## "
  28. echo "           ########   ####"
  29. echo "            #####"
  30. echo " v1ral_ITS"
  31. echo " https://pastebin.com/u/v1ral_ITS"
  32. echo " ImPerialTeKSolutions@outlook.com"
  33. sleep 1
  34.  
  35. read title < <( yad --entry --title "Title:" )
  36. read text < <( yad --entry --title "Text:" )
  37. read add_entry < <( yad --entry --title "Add_entry:" )
  38. read new_forum< <( zenity --title "$title" --width=560 --text "$text" --forms --add-entry "$add_entry" )
  39.  
  40. $new_forum
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement