Changes between Version 7 and Version 8 of InstallLinux
- Timestamp:
- 05/18/11 19:22:38 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallLinux
v7 v8 11 11 12 12 === Script for a WikidPad launcher === 13 To create a launcher that starts WikidPad you need a script. Create a file called wpstart:14 {{{ 15 gedit w pstart16 }}} 17 Paste this code into the opened do kument (replace /path/to/folderof/WikidPad):13 To create a launcher that starts WikidPad you need a script. Create a file called, for example, wikidpad: 14 {{{ 15 gedit wikidpad 16 }}} 17 Paste this code into the opened document (replace /path/to/folderof/WikidPad): 18 18 {{{ 19 19 #!/bin/bash … … 24 24 Save the file and close it. Open a terminal and make the script executable: 25 25 {{{ 26 chmod +x w pstart26 chmod +x wikidpad 27 27 }}} 28 28 Finally create a launcher according to the !HowTo on https://help.ubuntu.com/community/HowToAddaLauncher. Use the command 29 29 {{{ 30 /path/to/wpstart 31 }}} 30 /path/to/wikidpad 31 }}} 32 33 If you wish you can also copy the script to one of the paths defined in your $PATH, e.g. /usr/bin/, that way you can launch the program from the command line. 34 35 === Webkit renderer in preview == 36 37 v2.2beta03 and higher have support for using webkit to render the internal HTML preview. This is much more powerful than the built-in render and brings support for CSS/flash/javascript and all the other features webkit provides. It does however have a few additional dependencies which will need to be met before it can be used: 38 39 * pygtk 40 * pywebkitgtk 41 42 Once installed you should be able to select Webkit as the preview renderer in the HTML preview/export option panel. 32 43 33 44
