Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. 11:39:22 - ~ - martin$ cd ~/.config/autostart/
  2. 11:39:33 - ~/.config/autostart - martin$ ls -l terminal_left_big.desktop left_terminal.sh
  3. -rwxrwxr-x 1 martin martin 196 юли 22 11:04 left_terminal.sh
  4. -rwxrwxr-x 1 martin martin 294 юли 22 11:28 terminal_left_big.desktop
  5.  
  6. 11:39:52 - ~/.config/autostart - martin$ cat terminal_left_big.desktop left_terminal.sh
  7. [Desktop Entry]
  8. Type=Application
  9. Name=left_big
  10. Exec=xfce4-terminal --geometry 94x51+0+0 --title asd -H -x sh -c "toilet concerts; cat /home/martin/scrape_file/tmp.json | jq -c '.[] | select( .event_country | contains("Bulgaria"))' | jq; toilet weather;curl http://wttr.in/Sofia";
  11. Terminal=true
  12.  
  13. #!/bin/bash
  14.  
  15. toilet concerts
  16. path=/home/martin/scrape_file/tmp.json
  17.  
  18. cat $path | jq -c '.[] | select( .event_country | contains("Bulgaria"))' | jq
  19.  
  20. toilet weather
  21.  
  22. curl http://wttr.in/Sofia
  23. exit
  24.  
  25. 11:39:52 - ~/.config/autostart - martin$ cat terminal_left_big.desktop left_terminal.sh
  26. [Desktop Entry]
  27. Type=Application
  28. Name=left_big
  29. Exec=xfce4-terminal --geometry 94x51+0+0 --title asd -H -x sh left_terminal.sh ;
  30. Terminal=true
  31.  
  32. sh: 0: Can't open left_terminal.sh
Add Comment
Please, Sign In to add comment