You are not logged in.

#1 2009-04-28 17:07:35

Barghest
Member
From: Hanau/Germany
Registered: 2008-01-03
Posts: 563

[solved] awesome and openoffice

Hi,

someone else got the problem that openoffice kills awesome?

When I run soffice in awesome-git it shows the splashscreen and in the next moment I'm back in vc/1. When I start awesome again, I don't even see the splash screen. OO refuses to start and on the terminal there's no output.

Kind regards

barghest

Last edited by Barghest (2009-05-01 12:28:38)

Offline

#2 2009-04-29 01:19:53

Evanlec
Member
From: NH, USA
Registered: 2007-12-16
Posts: 141
Website

Re: [solved] awesome and openoffice

Hmm, probably having same issue as you.
I can open swriter but as soon as I type 1 character intoa  document, X crashes with a stack trace.
I'm about to file a bug on http://awesome.naquadah.org/bugs

Offline

#3 2009-04-29 14:01:22

Barghest
Member
From: Hanau/Germany
Registered: 2008-01-03
Posts: 563

Re: [solved] awesome and openoffice

Thanks, I'll vote for it smile

Do you already have a direct link?

Last edited by Barghest (2009-04-29 14:01:33)

Offline

#4 2009-04-29 14:03:08

alexandrite
Member
Registered: 2009-03-27
Posts: 326

Re: [solved] awesome and openoffice

I have the same problem.  I'll also vote for the bug if I get a direct link.

Offline

#5 2009-04-29 23:37:30

anrxc
Member
From: Croatia
Registered: 2008-03-22
Posts: 834
Website

Re: [solved] awesome and openoffice

It was fixed a couple of days ago, see here http://git.naquadah.org/?p=awesome.git; … 1e0e419ccc


You need to install an RTFM interface.

Offline

#6 2009-04-30 05:22:51

sand_man
Member
From: Australia
Registered: 2008-06-10
Posts: 2,164

Re: [solved] awesome and openoffice

It's working ok for me but i'm not using the git version


neutral

Offline

#7 2009-04-30 08:20:52

Barghest
Member
From: Hanau/Germany
Registered: 2008-01-03
Posts: 563

Re: [solved] awesome and openoffice

Thanks,

I installed the latest git version (Apr 30 2009) and it works now.

This is my first git version of a program I use and I installed it from AUR. I now set the release in the PKGBUILD manually from 20090420 to 20090430 after looking what's the latest version on the git web site. Is this the correct way of or is there a more comfortable one?

Last edited by Barghest (2009-04-30 08:25:56)

Offline

#8 2009-04-30 14:54:18

Ranguvar
Member
Registered: 2008-08-12
Posts: 2,549

Re: [solved] awesome and openoffice

You don't need to edit the version in the PKGBUILD. It will always get the latest version and that will appear as the version in the created package anyways. smile

Offline

#9 2009-04-30 15:36:09

Barghest
Member
From: Hanau/Germany
Registered: 2008-01-03
Posts: 563

Re: [solved] awesome and openoffice

Thanks Ranguvar,

I have a another question - hopefully the last for a couple of days smile

I have a tag defined as floating. Whenever I start an app on this tag it is correctly set into floating mode but it is opened in the upper left corner and thus overlapping the status bar. I then have to move the window manually around using mod4+left mouse button. Is there a way to edit the position on that a window opens? And is it possible to move windows around only using the keyboard (like in openbox)?

I hope some people read this, otherwise I create a new thread for this new question ;b

Last edited by Barghest (2009-04-30 15:38:36)

Offline

#10 2009-04-30 18:16:49

anrxc
Member
From: Croatia
Registered: 2008-03-22
Posts: 834
Website

Re: [solved] awesome and openoffice

Barghest wrote:

Is there a way to edit the position on that a window opens?

In your manage hook, consider using either or both of these:

    -- New floating windows don't cover the wibox and
    --awful.placement.no_offscreen(c)
    -- don't overlap until it's unavoidable
    --awful.placement.no_overlap(c)
Barghest wrote:

And is it possible to move windows around only using the keyboard (like in openbox)?

By this you of cours refer to floating clients? You can use moveresize for that, example bindings for your clientkeys:

    -- Mod + PgUp/PgDn for resizing floaters
    awful.key({ modkey }, "Next",  function () awful.client.moveresize(20, 20, -20, -20) end),
    awful.key({ modkey }, "Prior", function () awful.client.moveresize(-20, -20, 20, 20) end),
    -- 
    -- Mod + Arrows for moving floaters
    awful.key({ modkey }, "Down",  function () awful.client.moveresize(0, 20, 0, 0) end),
    awful.key({ modkey }, "Up",    function () awful.client.moveresize(0, -20, 0, 0) end),
    awful.key({ modkey }, "Left",  function () awful.client.moveresize(-20, 0, 0, 0) end),
    awful.key({ modkey }, "Right", function () awful.client.moveresize(20, 0, 0, 0) end),

You need to install an RTFM interface.

Offline

Board footer

Powered by FluxBB