Active Topics

 



Notices


Reply
Thread Tools
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#221
just press twice power button.
 

The Following 2 Users Say Thank You to elros34 For This Useful Post:
Posts: 383 | Thanked: 344 times | Joined on Jun 2013 @ Greece, Athens
#222
Originally Posted by elros34 View Post
just press twice power button.
I didn't know this
 

The Following User Says Thank You to bill_klpd For This Useful Post:
Posts: 383 | Thanked: 344 times | Joined on Jun 2013 @ Greece, Athens
#223
Here is a something I wrote that I thing that might help on making the app a little faster
(There are some names that are not right and some things that won't function but it is a small try )
Code:
    Connections {
        target: utils
        onSignalEdge: {
            txt.text = edge
            txt2.text = activeWindow

            if (edge == "right1") //top right swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("appMenu")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("desktop")
                        }
                            else
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }        
                        }

            if (edge == "right2") //right swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("appMenu")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("desktop")
                        }
                            else
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }        
                        }

            if (edge == "right3") //bottom right swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("appMenu")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("desktop")
                        }
                            else
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }        
                        }

            if (edge == "left1") //top left swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("desktop")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("appMenu")
                        }
                            else
                        {        
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                        }

            if (edge == "left2") //left swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("desktop")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("appMenu")
                        }
                            else
                        {        
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                        }

            if (edge == "left3") //bottom left swipe
                        {
                            if (activeWindow == "Desktop")
                        {
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                            if (activeWindow == "Menu")
                        {
                            utils.runProgram("desktop")
                        }
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("appMenu")
                        }
                            else
                        {        
                            utils.runProgram("dbus-send --type=signal --session /com/nokia/hildon_desktop com.nokia.hildon_desktop.exit_app_view")
                        }
                        }

            if (edge == "bottom") //bottom swipe
                        {
                            if (activeWindow == "Task Manager")
                        {
                            utils.runProgram("close all running programs")
                        }
                            else
                        {
                            utils.runProgram("wmctrl -c :ACTIVE:")
                        }

                        }

            if (edge == "top") //top swipe

                        {
                            utils.runProgram("Hildon Status Menu")
                        }
        }
    }
 
Posts: 242 | Thanked: 169 times | Joined on Nov 2011
#224
Originally Posted by elros34 View Post
Latest and last version.
Now most of the programs may have their own profile.
Close option close all osso-xterm windows and doesn't work on microb instead, better use:
Code:
dbus-send --session --type=method_call --print-reply --dest="com.nokia.osso_browser" /com/nokia/osso_browser/request com.nokia.osso_browser.request string:"close_window"
hi elros34, I tried above command but no success.. maybe I have to use new command 'dbus-signal'? how to do it?

thanx in advance
 
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#225
sorry my bad I corrected second post.
 

The Following 2 Users Say Thank You to elros34 For This Useful Post:
Posts: 383 | Thanked: 344 times | Joined on Jun 2013 @ Greece, Athens
#226
Originally Posted by elros34 View Post
Latest and last version.
Now most of the programs may have their own profile.
Close option close all osso-xterm windows and doesn't work on microb instead, better use:
Code:
dbus-send --session --type=method_call --print-reply --dest="com.nokia.osso_browser" /com/nokia/osso_browser/request com.nokia.osso_browser.close_window
Is this the latest version?
 
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#227
There is nothing to improve so..
 
Posts: 383 | Thanked: 344 times | Joined on Jun 2013 @ Greece, Athens
#228
I will try it now
Thanks for your great work
 
Posts: 383 | Thanked: 344 times | Joined on Jun 2013 @ Greece, Athens
#229
One more thing!
How do we edit the profile of each program?

By the way what's going on with you qt lockscreen?

Last edited by bill_klpd; 2013-09-22 at 21:51.
 
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#230
Just press "Add new".
Originally Posted by bill_klpd View Post
By the way what's going on with you qt lockscreen?
I don't have much time now. It's usable but buggy
http://www.youtube.com/watch?v=qWJip2AwmI4
 
Reply


 
Forum Jump


All times are GMT. The time now is 08:11.