The Following User Says Thank You to marmistrz For This Useful Post: | ||
|
2015-05-18
, 10:53
|
Posts: 915 |
Thanked: 3,209 times |
Joined on Jan 2011
@ Germany
|
#3182
|
Reporting: on the jessie1 image transmission-gtk segfaults. I'll install gdb and post bt soon.
When trying to launch the LXDE, I get a black window and in the log:
Code:canot create directory `': no such file or directory
Code:** (lxsession:6404): WARNING **: process.vala:49: Failed to execute child process "xprop" (No such file or directory)
Code:** (lxsession:6404): WARNING **: app.vala:86: Failed to execute child process "lxpolkit" (No such file or directory)
The Following User Says Thank You to sulu For This Useful Post: | ||
|
2015-05-18
, 18:34
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#3183
|
The Following User Says Thank You to marmistrz For This Useful Post: | ||
|
2015-05-18
, 21:00
|
Posts: 915 |
Thanked: 3,209 times |
Joined on Jan 2011
@ Germany
|
#3184
|
Installed mnemosyne. The hildon styling, which was present when using the squeeze image, is missing.
Besides, I'm unable to gain keyboard focus if I do `debbie mnemosyne` > File > Sync, and try to input the sever address.
The Following User Says Thank You to sulu For This Useful Post: | ||
|
2015-05-19
, 09:19
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#3185
|
|
2015-05-19
, 13:39
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#3186
|
|
2015-05-19
, 14:16
|
Posts: 432 |
Thanked: 917 times |
Joined on Jun 2011
|
#3187
|
|
2015-05-19
, 14:35
|
Posts: 915 |
Thanked: 3,209 times |
Joined on Jan 2011
@ Germany
|
#3188
|
And what was responsible for the UI styling? Where should I look? As "Hildon styling" I meant the darkened, slightly bigger interface.
/edit: Yes, it's the same bug. But why doesn't the window gain focus once it appears, automatically?
Besides, the combination fn+enter is already in .xbindkeysrc. Only .kbdactive has to be stripped of sudoes
Would it be possible to set the focus on per-app basis for all app's windows?
|
2015-05-19
, 15:53
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#3189
|
I believe it may be related to this bug report. [1]
If so, it wouldn't be a gdb problem but rather the discovery of a dirty openssl trick via gdb.
I think I know what you mean.
By default Maemo's $HOME directory is mounted into ED.
I don't like the idea of this because it tends to create confusion (at least in my head) which config belongs to which OS.
So I made ED not do that a long time ago and I'm not really testing the default case anymore.
Actually it does, but only for a brief moment. During the window buildup sequence it loses the focus immediately to the underlying Maemo CLI. If you start a program via debbie from a terminal and try to input some characters you'll notice that the characters actually end up in the terminal.
The problem is, that you can't get the keyboard focus back to the window via a mouse click (for reasons I don't know). You need your WM to do that. This is what the script does, while most of its "intelligence" is not in switching the focus but in finding the right window.
$ dpkg -L easy-deb-chroot | grep "kbdactive\|xbind" /usr/share/applications/hildon/xbindkeys.desktop /home/user/.xbindkeysrc /home/user/.kbdactive
Sure! If you know how to identify the window (not the app).
One easy way is by window title. The problem with this is that multiple windows may have the same name or that a window title is changed by its application. The more robust way, which is used in the script is via window id.
mnemosyne & while [[ $(wmctrl -l | grep Mnemosyne) == "" ]]; do sleep 0.1; done WINID=`wmctrl -l | grep Mnemosyne | awk '{print $1;}'` echo $WINID fixkbd $WINID
|
2015-05-19
, 17:16
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#3190
|
Tags |
beta, debian, easy debian, extras-devel, fremantle, i <3 qole, squeeze |
|
When trying to launch the LXDE, I get a black window and in the log:
If you want to support my work, you can donate by PayPal or Flattr
Projects no longer actively developed: here
Last edited by marmistrz; 2015-05-18 at 10:24.