Page 1 of 1

little pictures without frame/bars etc on the screen

Posted: Thu Feb 09, 2017 9:02 pm
by oui
I have to show little pictures without frame/bars etc on the screen (keyboard dispositions for Asian keyboards). Is that possible?

Re: little pictures without frame/bars etc on the screen

Posted: Fri Feb 10, 2017 7:51 am
by drooly
what distro are you using?

can you create a desktop launcher? it has no frame.

Re: little pictures without frame/bars etc on the screen

Posted: Mon Feb 13, 2017 9:10 pm
by oui
Hi drooly

Kubuntu 17.04

But I would prefer to start as LXQT, not as KDE...

Kind regards

Re: little pictures without frame/bars etc on the screen

Posted: Tue Feb 14, 2017 3:58 am
by Rex Bouwense
Ubuntu 17.04 along with all of its flavors, of which Kubuntu is one, is still in development and testing so it bound to have problems. If you are looking for a solid version, I would recommend that you install 16.04 which has Long Term Support (5 years for Ubuntu and 3 years for any of the flavors. Any time you install multiple desktops you do have the option to choose which desktop environment that you you want to boot into. However, since each comes with its own list of programs there is occasionally conflicts.

Re: little pictures without frame/bars etc on the screen

Posted: Wed Feb 15, 2017 2:13 pm
by oui
I have problems yes, but not with 17.04 but with 16.04 (as well as 16.10)! :lol: And the problem is solved in 17.04 :mrgreen: ...

Re: little pictures without frame/bars etc on the screen

Posted: Fri Feb 17, 2017 9:37 am
by oui
back to my "main" problem:

how to show some little picture?

ImageMagick, for ex., supplies the needing tool

Code: Select all

display mypicture.jpeg
but, although display is a CLI command, it comes with some title bar...

"it" is probably not the correct expression: The Window Manager (LXQT alt. OpenBox) gives to him this in my case unwished propriety!

the question is also: how to commute down this propriety :idea: (it is for ex. possible in Xombrero, the browser of Lubuntu minimal: as it is a VI like app, it is possible to shut down the command bar in it (I don't know if it is possible to avoid that LXQT add some head bar above :mrgreen: !)

perhaps I have to change the WM (according to the Arch Wiki, LXQT seems to be able to operate with other than OpenBox :idea: :!: But, which one :?: I did register JWM in ~/.config/lxqt/session.conf as recommend in https://wiki.archlinux.org/index.php/LXQt but I did see no difference :oops: !

Re: little pictures without frame/bars etc on the screen

Posted: Sat Feb 18, 2017 12:48 pm
by drooly
oui wrote:

Code: Select all

display mypicture.jpeg
but, although display is a CLI command, it comes with some title bar...
The Window Manager (LXQT alt. OpenBox) gives to him this in my case unwished propriety!
i see.

you can set up your openbox to NOT dispay titlebars around this.
you need to add an entry to your rc.xml (it's probably lxde-rc.xml somewhere in ~/.config/openbox or ~/.config/lxde), in the applications section (read the link!).

example:

Code: Select all

<applications>
  <!-- match display windows, and remove their decorations -->
  <application class="Display">
    <decor>no</decor>
  </application>
...