Active Topics

 


Reply
Thread Tools
Posts: 229 | Thanked: 36 times | Joined on Jan 2010 @ Bulgaria
#151
Originally Posted by siovene View Post
You mean you got it working? The problem, I believe, is that you downloaded the binary from Garage, rather than installing from App. Manager. I guess I compiled it using an unreleased SDK.



No, unfortunately it's not possible. My first implementation attempted to install actual real profile, but it was a failure, since the power menu assumes that there's only two profiles. I couldn't hack around such hardcoded limit, so I had to fallback to using preset.

If you choose General, from the Power Menu, it will use the General profile with the last selected Tweakr Preset.

Preset are just a way or remembering the current General settings with a name, so you can get back to them easily.
Your idea of using current General settings is very clever!
At first I also thought that something is not working, but then I got the idea and succeed to make few new profiles.

I suppose it will be very useful for new users to have some kind of short user guide in additional of the downloaded app file.

Now if someone succeed to make different ringtones to different contacts or groups in Contacts menu it will be super! This is the only BIG think I miss from my old trusty E90. ;-)

Regards.
 

The Following User Says Thank You to jorjino For This Useful Post:
Posts: 2 | Thanked: 6 times | Joined on Jan 2010 @ Sweden
#152
Originally Posted by Bingley Joe View Post
Thanks for that!

Is it possible to have that script invoked when certain events occur?

For instance, I have a Tweakr profile called "Headphones" which silences ringtones -- I'd love to have it automatically invoked when I insert some headphones into the jack (and for the process to be reversed when I remove them)..
Of course, everythings possible with this lovely device
First you need to install dbus-scripts. Then you'll have to create two files

In "/etc/dbus-scripts.d/somethingsomething":
Code:
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1

In "/path/to/script":
Code:
#!/bin/bash
ACTION="$4"

case $ACTION in
	DeviceAdded)
		switchprofile "Headphones"
	;;
	DeviceRemoved)
		switchprofile "General"
	;;
esac
And to try it out, either restart dbus-scripts (sudo /etc/init.d/dbus-scripts restart) or start a new instance width /usr/sbin/dbus-scripts --system --debug.

running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.
 

The Following 4 Users Say Thank You to bumby For This Useful Post:
Posts: 229 | Thanked: 36 times | Joined on Jan 2010 @ Bulgaria
#153
Originally Posted by bumby View Post
Of course, everythings possible with this lovely device
First you need to install dbus-scripts. Then you'll have to create two files

In "/etc/dbus-scripts.d/somethingsomething":
Code:
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1

In "/path/to/script":
Code:
#!/bin/bash
ACTION="$4"

case $ACTION in
	DeviceAdded)
		switchprofile "Headphones"
	;;
	DeviceRemoved)
		switchprofile "General"
	;;
esac
And to try it out, either restart dbus-scripts (sudo /etc/init.d/dbus-scripts restart) or start a new instance width /usr/sbin/dbus-scripts --system --debug.

running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.

What about make this with a Bluetooth hendset connection?
Do you think it will be possible to do and add this in one of the next versions of Tweakr?

Regards.
 
Posts: 729 | Thanked: 155 times | Joined on Dec 2009
#154
Originally Posted by bumby View Post
Of course, everythings possible with this lovely device
First you need to install dbus-scripts. Then you'll have to create two files

In "/etc/dbus-scripts.d/somethingsomething":
Code:
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1

In "/path/to/script":
Code:
#!/bin/bash
ACTION="$4"

case $ACTION in
	DeviceAdded)
		switchprofile "Headphones"
	;;
	DeviceRemoved)
		switchprofile "General"
	;;
esac
And to try it out, either restart dbus-scripts (sudo /etc/init.d/dbus-scripts restart) or start a new instance width /usr/sbin/dbus-scripts --system --debug.

running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.
Is it also possible to use the same method but to change the status for the conversation plugins when the connection switches from gprs0 to wlan0?
 
Posts: 356 | Thanked: 172 times | Joined on Jan 2010 @ Canada
#155
Originally Posted by bumby View Post
Of course, everythings possible with this lovely device
Amazing!! Thanks so much, bumby! As soon as I get some time I'm going to try to figure out what all that means and get it working.


I must say the whole learning experience aspect to owning the N900 is a very pleasant and unexpected bonus.

Last edited by Bingley Joe; 2010-01-25 at 16:40.
 
evad's Avatar
Posts: 354 | Thanked: 151 times | Joined on Mar 2008 @ London (UK) / Zielona Góra (PL)
#156
Just installed 0.0.15 from extras-testing. Nice app, however I have some concerns:
  • Tweakr completely borked the default behaviour of lens cover. Normally lens cover when opened unlocks the device AND starts camera application. After installing Tweakr I get two different behaviours: when tickbox is checked - lens cover only unlocks device but doesn't start a camera; when tickbox is unchecked - opening lens cover while device is locked does nothing, I need to unlock device, and then slide lens to get camera launched. I would rather see an three-way option for lens cover opening: 1) leave default behaviour, 2) unlock only, 3) do nothing.
  • Idea of custom profile presets is great, but I'd rather see that as an on/off option, as Tweakr completely takes over Profile applet even when no presets are set (some people might see two default profiles just fine). Also, as General and Silent profiles are hard-coded in the system anyway, it might be good idea to hard-code them to Tweakr too in order to avoid confusion between system profiles and custom presets (I've seen that suggestion somewhere earlier in this thread).
  • Personally, I think custom profiles/presets would quickly become out of scope of Tweakr app itself, I'd suggest creating separate app just for that with potential for further feature expansion (I see people already making a lot suggestions), leaving Tweakr solely for... tweaks. :)

I like this app. It has few rough edges but I believe it has excellent potential and I'm looking forward to see it developing. Good work!
__________________
Dawid 'evad' Lorenz * http://dawid.lorenz.co
_______________________________________________
 

The Following User Says Thank You to evad For This Useful Post:
evad's Avatar
Posts: 354 | Thanked: 151 times | Joined on Mar 2008 @ London (UK) / Zielona Góra (PL)
#157
Guys, does anyone know which system file/config needs tweaking to change lens cover behaviour?
__________________
Dawid 'evad' Lorenz * http://dawid.lorenz.co
_______________________________________________
 
Posts: 755 | Thanked: 406 times | Joined on Feb 2008 @ UK
#158
Originally Posted by turpe View Post
Hi all how I can install Samba daemon or driver or something on to my N900 to be Windows file system compatible thru wifi
Thx
I think you're in the wrong thread, turpe - might want to try another.
 
Posts: 36 | Thanked: 86 times | Joined on Dec 2009 @ Helsinki, Finland
#159
Originally Posted by evad View Post
Just installed 0.0.15 from extras-testing. Nice app, however I have some concerns:
  • Tweakr completely borked the default behaviour of lens cover. Normally lens cover when opened unlocks the device AND starts camera application. After installing Tweakr I get two different behaviours: when tickbox is checked - lens cover only unlocks device but doesn't start a camera; when tickbox is unchecked - opening lens cover while device is locked does nothing, I need to unlock device, and then slide lens to get camera launched. I would rather see an three-way option for lens cover opening: 1) leave default behaviour, 2) unlock only, 3) do nothing.
  • Well... /etc/mce/mce.ini (which tweakr modifies), says:

    Code:
    # Unlock the tklock if the lens cover is opened
    #
    # 1 to enable, 0 to disable
    LensCoverUnlock=1
    Doesn't leave much flexibility, so there is little that Tweakr can do.


  • Idea of custom profile presets is great, but I'd rather see that as an on/off option, as Tweakr completely takes over Profile applet even when no presets are set (some people might see two default profiles just fine).
Delete all presets and Tweakr status menu button will disappear, giving you the good old default Profile selection button.

Also, as General and Silent profiles are hard-coded in the system anyway, it might be good idea to hard-code them to Tweakr too in order to avoid confusion between system profiles and custom presets (I've seen that suggestion somewhere earlier in this thread).
Yes, that's in my todo list

  • Personally, I think custom profiles/presets would quickly become out of scope of Tweakr app itself, I'd suggest creating separate app just for that with potential for further feature expansion (I see people already making a lot suggestions), leaving Tweakr solely for... tweaks.
  • That's a good point, and I was just thinking about it yesterday A dedicated app for the profiles will be more visible too, and could completely live as a status menu applet. I'll think about it.
     

    The Following 4 Users Say Thank You to siovene For This Useful Post:
    Posts: 344 | Thanked: 73 times | Joined on Oct 2009 @ Los Angeles
    #160
    Originally Posted by siovene View Post
    ...That's a good point, and I was just thinking about it yesterday A dedicated app for the profiles will be more visible too, and could completely live as a status menu applet. I'll think about it.
    That would be fantastic.
     
    Reply


     
    Forum Jump


    All times are GMT. The time now is 15:58.