Advertisement
s243a

release-Notes-Pre-Alpha6 Tazpup

Mar 17th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. In /var/www/tazpanel/network.cgi
  2.  
  3. Added missing space before second right bracket in lines 126 and 134
  4.  
  5. One of the symlinks that I mentioned earlier didn't seem to take:
  6.  
  7. Edited build script to make sure they are included.
  8. Lines 34 to 36 of add_puppy_jwm_files.sh:
  9. [code]
  10. cd $curdir/slitaz-rootfs$prefix/usr/share/rox-filer
  11. ln -s rox-filer ROX-Filer
  12.  
  13. cd $curdir/slitaz-rootfs$prefix/usr/bin
  14. ln -s rox-filer rox-filer roxfiler
  15. [/code]
  16. [url]https://pastebin.com/xWxfLYez[/url]
  17.  
  18. For some reason gtkdialog wasn't installed but it should install next build.
  19.  
  20. For some reason /root/.icons/ROX
  21. points to: /usr/share/rox-filer/images
  22.  
  23. not sure where this symlink is created. I'll manually change it to:
  24. /usr/local/apps/ROX-Fler/ROX
  25.  
  26. also "/usr/local/apps/ROX-Fler/ROX" was missing so add it.
  27.  
  28. added darry's uextract package
  29. # http://www.murga-linux.com/puppy/viewtopic.php?p=992447#992447
  30.  
  31. - Tried installing the rox_config package from woofCE. I think that it changed the drag and drop behavior. Not sure what else it might have done.
  32.  
  33. Fix desktop icons that aren't working by modifying:
  34. /root/Choices/ROX-Filer/PuppyPin (# denotes deletions)
  35. [code]
  36. # <icon x="32" y="416" label="connect">/usr/local/apps/Connect</icon>
  37. <icon x="32" y="416" label="connect">/usr/local/bin/defaultconnect</icon>
  38. # <icon x="288" y="32" label="setup">/usr/sbin/wizardwizard</icon>
  39. [/code]
  40. (Only changes shown)
  41.  
  42. /usr/local/bin/defaultconnect
  43. [code]
  44. #!/bin/sh
  45. exec tazpanel network
  46. [/code]
  47.  
  48. /usr/local/bin/defaultspreadsheet
  49. [code]
  50. #!/bin/sh
  51. #exec puppyapps defaultspreadsheet "$@"
  52. exec browser http://localhost/wiki/index.sh\?page=Calc
  53. [/code]
  54.  
  55. /usr/local/bin/defaultbrowser
  56. [code]
  57. #!/bin/sh
  58. #exec midori "$@" #midori was removed because it didn't work
  59. exec /opt/mozilla/firefox/firefox "$@"
  60. [/code]
  61.  
  62. [code]
  63. #!/bin/sh
  64. #exec puppyapps defaultchat "$@"
  65. exec sakura -e "tazirc --ask"
  66. [/code]
  67.  
  68. More cleanup still needed for desktop icons and need to base this on some kind of logic that is based on which applicaitons are installed.
  69.  
  70. TODO
  71. - Look at the /root/.config/autostart folder of an existing puppy and see if we want to autostart any of these items.
  72.  
  73. Copied the following command "/usr/bin/disktype" from slacko646.9.9.9
  74. Gave user and group executable premissions to /sbin/losetup-222
  75.  
  76. installed: gxmessage and PupMenu-6.2
  77.  
  78. Copyied /root/Choices to other users
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement