gowen
|
2009-12-10
, 19:31
|
Posts: 223 |
Thanked: 67 times |
Joined on Jun 2006
|
#21
|
|
2009-12-10
, 20:01
|
Posts: 73 |
Thanked: 9 times |
Joined on Dec 2009
|
#22
|
|
2009-12-13
, 15:20
|
Posts: 35 |
Thanked: 20 times |
Joined on Dec 2009
|
#23
|
|
2009-12-13
, 15:28
|
|
Posts: 516 |
Thanked: 643 times |
Joined on Oct 2009
@ Denmark/Poland
|
#24
|
dbus-monitor --profile --system
The Following User Says Thank You to hopbeat For This Useful Post: | ||
|
2009-12-13
, 15:42
|
Posts: 35 |
Thanked: 20 times |
Joined on Dec 2009
|
#25
|
~ $ dbus-monitor --profile --system sig 1260718665 751441 2 /org/freedesktop/DBus org.freedesktop.DBus NameAcquired sig 1260718667 393042 1238 /org/freedesktop/Hal/devices/platform_cam_shutter org.freedesktop.Hal.Device PropertyModified sig 1260718667 393347 1239 /org/freedesktop/Hal/devices/platform_cam_shutter org.freedesktop.Hal.Device Condition
The Following User Says Thank You to SaintGermain For This Useful Post: | ||
|
2009-12-23
, 19:04
|
Posts: 23 |
Thanked: 7 times |
Joined on Dec 2009
@ Northeast USA
|
#26
|
|
2009-12-23
, 20:28
|
Posts: 46 |
Thanked: 14 times |
Joined on Sep 2009
|
#27
|
|
2009-12-23
, 21:48
|
Posts: 43 |
Thanked: 7 times |
Joined on Oct 2009
@ Marseille , France
|
#28
|
Loving this mod.. any way to have a similar program make the rocker buttons skip forward/back a track if;
1) screen locked
2) playback of music on
So I can skip a track while its in the pocket without looking at the screen.
|
2009-12-26
, 16:30
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#29
|
- I do not know if previous application can be easily resumed, XSetInputFocus had no effect
static void show_window (Window win) { XEvent event; event.xclient.type = ClientMessage; event.xclient.serial = 0; event.xclient.send_event = True; event.xclient.message_type = XInternAtom (dpy, "_NET_ACTIVE_WINDOW", False); event.xclient.window = win; event.xclient.format = 32; event.xclient.data.l[0] = 0; event.xclient.data.l[1] = 0; event.xclient.data.l[2] = 0; event.xclient.data.l[3] = 0; event.xclient.data.l[4] = 0; if (XSendEvent(dpy, DefaultRootWindow (dpy), False, SubstructureRedirectMask | SubstructureNotifyMask, &event)) XMapRaised(dpy, win); }
static Window get_topmost_window (void) { Atom realtype; int format; unsigned long nitems; unsigned long b_after; unsigned char *prop; int xpropertyerr; Window win = (Window) 0; xpropertyerr = XGetWindowProperty (dpy, DefaultRootWindow (dpy), XInternAtom (dpy, "_NET_ACTIVE_WINDOW", False), 0L, (~0L), False, XA_WINDOW, &realtype, &format, &nitems, &b_after, &prop); if (!(xpropertyerr == Success && realtype == XA_WINDOW && format == 32 && nitems == 1 && prop != NULL)) exit (EXIT_FAILURE); win = *((Window *) prop); XFree (prop); return win; }
The Following 5 Users Say Thank You to qwerty12 For This Useful Post: | ||
|
2009-12-26
, 16:44
|
|
Posts: 1,259 |
Thanked: 1,341 times |
Joined on Oct 2009
@ Germany
|
#30
|
The Following User Says Thank You to Helmuth For This Useful Post: | ||