sorry snipped it all, got too long :( Bug workaround, (temporary, quick and dirty, not tested, I used ‘$HOME/trash/’ for sed testing so make sure to fix the paths!...) Hmmm, I pretty sure I switched panel-one for panel-two, so fix that too ;) Part A: - Open Konqueror - Like Thierry did setup with two pane paths being different - change left pane to /home - change right pane to something else (here /video) - Save it as profile ‘konqtemplate’ Part B: - Fine the profile in .trinity/share/apps/konqueror/profiles - Change the /home to ‘/konquerortemplatepanelone’ - Change the /video to ‘/konquerortemplatepaneltwo’ - Copy konqtemplate to konqtemplate.template (the .template probably needs to be in some other directory) Part C: - Create a batch file to wrapper your ‘konqueror --profile konqtemplate /URI/for/the/OTHER/pane’ command - Basic structure # cat konq2p {snip, that was going to break} See: konq2p attached. Part D: - Run the command konq2p “$dir pane one” [“$dir pane two”]
#!/bin/bash if [ "$1" != "" ] ; then cp "$HOME/trash/konqtemplate.template" "$HOME/trash/konqtemplate" REPLACEMENTONE="$1" sed -i 's\konquerortemplatepanelone\'"$REPLACEMENTONE"'\g' "$HOME/trash/konqtemplate" if [ "$2" != "" ] ; then REPLACEMENTTWO="$2" sed -i 's\konquerortemplatepaneltwo\'"$REPLACEMENTTWO"'\g' "$HOME/trash/konqtemplate" fi else echo "You must provide at least one file path!" exit fi konqueror --profile konqtemplate
--------------------------------------------------------------------- To unsubscribe, e-mail: trinity-users-unsubscribe@xxxxxxxxxxxxxxxxxxxxxxxxxx For additional commands, e-mail: trinity-users-help@xxxxxxxxxxxxxxxxxxxxxxxxxx Read list messages on the web archive: http://trinity-users.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting