Re: Placement of web notifications on the screen

2014-11-05 Thread Rob Hoelz
On Wed, 5 Nov 2014 15:58:15 -0600 Rob Hoelz wrote: > On Wed, 05 Nov 2014 22:29:19 +0100 > Uli Schlachter wrote: > > > Hi, > > > > Am 05.11.2014 um 04:39 schrieb Rob Hoelz: > > [...] > > > My problem is this: when I see a web notification > > >

Re: Placement of web notifications on the screen

2014-11-05 Thread Rob Hoelz
On Wed, 05 Nov 2014 22:29:19 +0100 Uli Schlachter wrote: > Hi, > > Am 05.11.2014 um 04:39 schrieb Rob Hoelz: > [...] > > My problem is this: when I see a web notification > > (https://developer.mozilla.org/en-US/docs/Web/API/notification) > > displayed, it always

Placement of web notifications on the screen

2014-11-04 Thread Rob Hoelz
behavior and come with a good solution for their rc.lua? If not, developers of awesome: would you be open to a patch exposing map notify events via the Lua API so that users may handle this scenario? Thanks, Rob -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: toggle wifi with fn+F11

2013-07-20 Thread rob fon
i dont know much about lua right now but... it would probably be optimal to implement this outside awesome as lilydjwg suggested but if you really want to do this in your rc.lua you are going to have to change some settings in your sudoers file to allow your user to use the needed command(s) (see h

Re: Using cursor themes

2009-11-19 Thread Rob
>Thanks for your information. Is there a way to use custom cursors in awesome? Put this into your .xinitrc: xsetroot -d :0 -cursor_name left_ptr That makes your fancy cursor theme's default (left_ptr) work on the root window. Like Julien said, though, you can't get your fancy cursor on awesome's

Titlebar buttons

2009-11-15 Thread Rob
t leave it until a dev changes the function call? Thanks, Rob.

Re: gvim maximize

2009-11-11 Thread Rob
be at the perfect height for it. You can either do that, or set size_hints_honor to false. -- Rob

Re: OpenOffice (Writer) Search Dialog

2009-11-05 Thread Rob
>Has anyone encountert this and/or knows how to fix it? I haven't encountered it with OpenOffice, but I think I know what you're talking about. If you have titlebars on, the title bar is visible, and then if you move the client window (via the titlebar or mod4 + whatever), it becomes visible. I hav

Re: Num Lock

2009-10-31 Thread Rob
That's a feature, not a bug. The point is that num lock is another modifier key, like Mod4/Windows key. So when it's on, it's essentially being held down as far as awesome's concerned. You could copy all the key bindings you have at the moment and include numlock in their modifier table, then it'l

Re: Change cursor theme

2009-10-29 Thread Rob
Xcursor.theme worked fine for me, however I believe awesome hasn't got support for something about cursors. Something about xcb - I just skimmed over what I was reading at the time. So when your mouse is over a wibox, the default X cursor will be shown. But firefox and the majority of apps should a

Re: Force client to open on tag that was active when it was called

2009-10-29 Thread Rob
I think we had something similar before: http://www.mail-archive.com/awesome@naquadah.org/msg01749.html Not sure how relevant it is, though

Re: Locating Battery Widget in Wibox

2009-10-28 Thread Rob
s to make and new hard drives to buy. Rob

Re: Prevent clients from stealing focus

2009-09-19 Thread Rob
I don't have this problem, perhaps it's because I have firefox on a separate tag. I can't help you with this, but perhaps you could try Download Statusbar - http://addons.mozilla.org/en-US/firefox/addon/26 It'll stop a download window showing up, which I find is great for tiling WMs.

Re: Newbie

2009-09-19 Thread Rob
>2) conky and some custom widgets work well >http://www.linuxized.com/wp-content/uploads/2009/05/awesome-33.jpg > Although in this screenshot I used the raw conky data for the power, > without a graphic bar :) When it discharges it

Re: Prevent clients from stealing focus

2009-09-18 Thread Rob
>is there a way to prevent clients from stealing the focus? At the end of your client managing function (just serarch your rc.lua for "manage"), there should be a line like this: client.focus = c Comment it out to prevent the new client from gaining focus.

Re: Another Newbie

2009-09-14 Thread Rob
Welcome to the community! I'll answer what I can, but this is all from memory, I'm not at my box right now. So beware. > How can I make an application (f.e. mplayer) stay above all others even if I focus a terminal which would cover it. In the rules table, add a[nother] entry for mplayer (or stick

Re: Newbie

2009-09-14 Thread Rob
Are you with Arch? If so http://wiki.archlinux.org/index.php/Wireless#Management_methods is the place to go. This isn't really the place to ask about general applications. You can create a graph widget for battery status, http://lua.pastey.net/96703 http://bbs.archlinux.org/viewtopic.php?id=62697

Re: set a floating client to be always on top

2009-09-10 Thread Rob
Near your floatapps table, put another one in, like this: topapps = { "xterm" = true } Then in your client manage hook mabobby: if topapps[cls] or topapps[inst] then c.ontop = true end (assuming you have inst = c.instance and cls = c.class) This checks to see if the client's class or inst

Re: GIMP Docking

2009-09-09 Thread Rob
Ah I see. I hadn't thought about having the toolboxes fully extended vertically. Thanks for the swift replies.

GIMP Docking

2009-09-09 Thread Rob
r give me a solution for that matter) -- Rob

Re: Opera problem

2009-09-08 Thread Rob
http://www.mail-archive.com/awesome@naquadah.org/msg01639.html Is that relevant? If so, Mod4 + M to unmaximize.

Re: Naughty Notification Font

2009-09-07 Thread Rob
>naughty.notify({ title = "No subliminal", text= "messages here", font="Sans 8"}) >naughty.config.default_preset = { font = "Sans 8" } naughty.notify({ title = "No subliminal", text= "messages here", font="Sans 8"}) did the trick, thanks! Turns out the font I use for wiboxes (proggytiny) doesn't

Naughty Notification Font

2009-09-07 Thread Rob
When I use naughty.notify({ title = "No subliminal", text= "messages here"}), the title font is not the same as the rest of my wiboxs. I've had a look through configuration files and I can't find where it's set, is there an addition to my theme that I should have? -- Rob

Re: Client handling

2009-09-07 Thread Rob
You could have a global variable, like *classname *that you set when spawning a client. Then in the startup hook function, if *classname *isn't nil, do something special. Then set *classname* to nil, so it's not handled again. 2009/9/7 Alessandro Massignan > Hi all, > > i'm wondering how could i

Re: a floating question

2009-09-04 Thread Rob
Use xprop (Pipe it into grep if you want) instead of xwininfo, it'll give you the class name, which is what awesome uses. You can use -class to set xterm's class. 2009/9/4 Alessandro Massignan > Hi folks, > > i've set "mocp" as true in floatapps, but when spawned running lua > code (and from >

Re: Strange Awesome lock-ups

2009-08-26 Thread Rob
's added to the core/extra database (can't remember which), so I'll see if it still does it then. -- Rob

Re: Status-Bar-Height

2009-08-25 Thread Rob
> the theme's font is Profont. -- Rob 2009/8/25 Dominik Bruhn > Hy, > how can I change the height of the statusbar? I want a smaller font and > a lower height. The wiki-article seems not to work, I cant find the > relevant parts. > > Thanks for any help > -- &

Re: Browser won't tile

2009-08-06 Thread Rob
It's because your browser is maximized from another WM, if I understand it. I had the same problem - I'd be in XFCE and close swiftweasel while it was maximized. When I reopened swiftweasel in Awesome, it wouldn't let me tile it. I had to go back into XFCE, unmaximize swiftweasel, and then return

Re: Disabling URGENT notifications on some windows?

2009-07-24 Thread Rob
Have you tried Download Statusbar? https://addons.mozilla.org/en-US/firefox/addon/26It gets rid of the download window entirely - great for a tiling window manager, in my opinion. Rob

Re: A small list of things I want to configure..

2009-07-23 Thread Rob
3), your inbox checker and your layout-icon-removal are all easy - it's in the documentation, for one. For switching the clock, you can change the format in rc.lua - the format uses off strftime (man strftime will tell you more) My rc.lua is modified, but you want to look for something like datewid

Re: modifier keys aren't picked up

2009-04-19 Thread Rob
I'm on Arch64 and also have the same problem. I asked on #awesome (oftc) and apparently it's a problem with xcb-util. Awesome currently needs xcb-util 0.3.3, where as i have 0.3.4 installed but i can't remove it due to dependancies: firefox requires xulrunner = 1.9.0.8 xulrunner requires startup-