You are not logged in.

#1 2010-10-30 10:53:52

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

awesome: can't set client into floating state

It's me again and again with a problem with awesome.

As the topic says I can't set a client into floating state.

In my rc.lua I have the default key binding

clientkeys = awful.util.table.join(
    awful.key({ modkey, "Control" }, "space",  awful.client.floating.toggle )
)

but it has no effect.

Offline

#2 2010-10-30 21:34:21

anonymous_user
Member
Registered: 2009-08-28
Posts: 3,059

Re: awesome: can't set client into floating state

Is that the only keybind you have inside clientkeys = awful.util.table.join? The default rc.lua has a comma after the first parenthesis.

clientkeys = awful.util.table.join(
    awful.key({ modkey,           }, "f",      function (c) c.fullscreen = not c.fullscreen  end),
    awful.key({ modkey, "Shift"   }, "c",      function (c) c:kill()                         end),
    awful.key({ modkey, "Control" }, "space",  awful.client.floating.toggle                     ),
    etc...

Also did you remember to restart awesome after changing rc.lua? Anyways the default keybind works fine for me.

Offline

#3 2010-10-31 08:26:20

Army
Member
Registered: 2007-12-07
Posts: 1,784

Re: awesome: can't set client into floating state

Works fine for me too. Do you use awesome or awesome-git?

Offline

#4 2010-10-31 18:29:04

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

Re: awesome: can't set client into floating state

I have all the entries that come with the rc.lua in /etc/xdg/awesome and this is the only one that doesn't work (the comma was missed by the copy/paste).

I'm using the awesome version form AUR (not the git version).

Offline

#5 2010-11-02 10:46:13

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

Re: awesome: can't set client into floating state

I still don't know why this doesn't work.

Here's my complete rc.lua - maybe something interferes?

http://pastebin.com/jHjWgbXX

Offline

#6 2010-11-02 14:44:25

anonymous_user
Member
Registered: 2009-08-28
Posts: 3,059

Re: awesome: can't set client into floating state

Have you tried using an unmodified rc.lua? If it works there, then it is probably with your config.

Offline

Board footer

Powered by FluxBB