The Following User Says Thank You to jorjino For This Useful Post: | ||
![]() |
2010-01-25
, 07:59
|
Posts: 2 |
Thanked: 6 times |
Joined on Jan 2010
@ Sweden
|
#152
|
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)..
/path/to/script :1.11 * org.freedesktop.Hal.Manager * /org/freedesktop/Hal/devices/computer_logicaldev_input_1
#!/bin/bash ACTION="$4" case $ACTION in DeviceAdded) switchprofile "Headphones" ;; DeviceRemoved) switchprofile "General" ;; esac
The Following 4 Users Say Thank You to bumby For This Useful Post: | ||
![]() |
2010-01-25
, 08:07
|
Posts: 229 |
Thanked: 36 times |
Joined on Jan 2010
@ Bulgaria
|
#153
|
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":
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.Code:#!/bin/bash ACTION="$4" case $ACTION in DeviceAdded) switchprofile "Headphones" ;; DeviceRemoved) switchprofile "General" ;; esac
running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.
![]() |
2010-01-25
, 09:32
|
Posts: 729 |
Thanked: 155 times |
Joined on Dec 2009
|
#154
|
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":
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.Code:#!/bin/bash ACTION="$4" case $ACTION in DeviceAdded) switchprofile "Headphones" ;; DeviceRemoved) switchprofile "General" ;; esac
running dbus-script in debug mode is very helpful when you want to catch events such as headphones in/out.
![]() |
2010-01-25
, 16:37
|
Posts: 356 |
Thanked: 172 times |
Joined on Jan 2010
@ Canada
|
#155
|
![]() |
2010-01-25
, 23:42
|
|
Posts: 354 |
Thanked: 151 times |
Joined on Mar 2008
@ London (UK) / Zielona Góra (PL)
|
#156
|
The Following User Says Thank You to evad For This Useful Post: | ||
![]() |
2010-01-26
, 15:07
|
|
Posts: 354 |
Thanked: 151 times |
Joined on Mar 2008
@ London (UK) / Zielona Góra (PL)
|
#157
|
![]() |
2010-01-26
, 16:42
|
Posts: 755 |
Thanked: 406 times |
Joined on Feb 2008
@ UK
|
#158
|
![]() |
2010-01-26
, 18:04
|
Posts: 36 |
Thanked: 86 times |
Joined on Dec 2009
@ Helsinki, Finland
|
#159
|
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.
# Unlock the tklock if the lens cover is opened # # 1 to enable, 0 to disable LensCoverUnlock=1
- 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.
The Following 4 Users Say Thank You to siovene For This Useful Post: | ||
![]() |
2010-01-26
, 18:18
|
Posts: 344 |
Thanked: 73 times |
Joined on Oct 2009
@ Los Angeles
|
#160
|
...That's a good point, and I was just thinking about it yesterdayA dedicated app for the profiles will be more visible too, and could completely live as a status menu applet. I'll think about it.
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.