You are not logged in.
I updated the subtle-hg package to for the current revision:
- Right gravity tag is working now
- Fixed focus events (e.g. opera)
- Partly added up/left/right/down window selection via grabs (unfinished)
- Added aspect ratio to resizing (e.g. mplayer)
- Added argument check of grab procs: They can now have no argument
- Added WM_CLASS property to _NET_SUPPORTING_WM
Offline
Another update of the subtle-hg AUR package: Focus setting via grabs and also via subtler/subtlext is possible now. I also updated the docs for subtlext and the help of subtler too.
Offline
More updates for subtle-hg and probably an update for subtle as well:
-Fixed focus change via h-j-k-l
-Fixed focus on view jump
Offline
Just something I am working on - any opinions about this?
Last edited by unexist (2009-05-23 17:28:12)
Offline
If it is what I think it is, it's awesome. It's the ability to give color to sublets, right?
[ lamy + pilot ] [ arch64 | wmii ] [ ati + amd ]
Offline
If it is what I think it is, it's awesome. It's the ability to give color to sublets, right?
Yeah exactly - I am still a bit unsure about the way you set color to the output of the sublets. In my current version it looks like this:
def run
self.data = "%%#e1e1e1%%Time:%%#0dd2e5%%" + Time.now().strftime("%d%m%y%H%M") + "%%"
end
(Clock example)
%% is the separator and the colors are hex valures. I use %%, because most of the editors highlight it nicely. I am open for suggestions.
Also possibly would be something like this:
def run
self.data = color("#e1e1e1") + "Time:" + color("#0dd2e5") + Time.now().strftime("%d%m%y%H%M")
end
Offline
Err...
Out topic but subtil is french and subtile is the feminine of it !
Anyway I'll try subtle soon, I really like Ruby and I'm pretty tired of xmonad (big fat haskell :-( )
Offline
Err...
Out topic but subtil is french and subtile is the feminine of it !Anyway I'll try subtle soon, I really like Ruby and I'm pretty tired of xmonad (big fat haskell :-( )
Well, glad if we can get back to topic.
Offline
The toggle behaviour of the gravity grabs has been changed and two different grabs for this have been introduced:
GravityTopLeft only places in TopLeft, GravityTopLeftVert places and toggles vertically, GravityTopLeftHorz places and toggles horizontally.
If you just want to keep the current behaviour just replace your gravity grabs with the vertical grabs and subtle behaves like usual.
The problems with the focus are also solved.
Offline
How to quit "subtle" ?
I mean what is the keybinding for quitting subtle?
Offline
How to quit "subtle" ?
I mean what is the keybinding for quitting subtle?
Actually I never thought there would be a need for this, but I just implemented that feature in subtle/subtler/subtlext (version 0.8.1138). To get it you'll need to rebuild the subtle-hg package and have a look in the default config file.
Offline
phabulosa wrote:How to quit "subtle" ?
I mean what is the keybinding for quitting subtle?
Actually I never thought there would be a need for this, but I just implemented that feature in subtle/subtler/subtlext (version 0.8.1138). To get it you'll need to rebuild the subtle-hg package and have a look in the default config file.
Thanks a lot! unexist.
I have one more suggestion. I have "rake" installed through Ruby Gem and many Gems requires "Rake" installed thourhg the Gem way.
So, adding "rake" dependency in "subtle"/"subtle-hg" PKGBUILD is really not necessary and annoying sometimes.
Offline
Thanks a lot! unexist.
I have one more suggestion. I have "rake" installed through Ruby Gem and many Gems requires "Rake" installed thourhg the Gem way.
So, adding "rake" dependency in "subtle"/"subtle-hg" PKGBUILD is really not necessary and annoying sometimes.
No problem, I am always happy for reports and feedback.
Well, I have the same problem, but I decided to add it as dependency is because most of the users who want to try subtle have probably no rake version installed. Removing rake from the build dependencies will make the PKGBUILD impossible to build.
Offline
Warning: Config has changed again and a default gravity options has been added. Windows get now this default gravity and if a 0 (zero) is supplied the gravity of current active window will be used.
Offline
The current snapshot contains a new feature - Hooks. Please make sure that you add at least the HOOK = { } hash to your config.
Currently there exist only three type of hooks, more are planned. Inside of this hooks can every feature of subtlext be used.
The following hooks exist so far:
Create
--------
Triggers on new clients and has the new client as parameter:
"HookCreate" => { |c| puts c.name }
Jump
------
Triggers on view jumps and has the active view as parameter:
"HookJump" => { |v| puts v.name }
Focus
------
Triggers when a client gets focus and has the focussed client as parameter:
"HookFocus" => { |c| puts c.name }
Last edited by unexist (2009-06-10 23:32:08)
Offline
Warning: The color names have changed and another color option was added. Please check the latest shipped config.
Too bad that I am the only one here typing.
Latest screenshot of subtle in action: http://omploader.org/vMXRoNw
Offline
Just trying out the Subtle Window Manager, but it just doesn't feel intuitive, I'm using Awesome Window manager for a few months now and I really like, it is fast and easy to configure with Lua.
I think Subtle has much potential for working on, but maybe a bit more intuitiveness could help starting out with it. First thing I'm still searching for is how to launch an application. Awesome puts inside the 'wibox' (eg. panel) where you can just type in your command, that I use most of the time.
Offline
Just trying out the Subtle Window Manager, but it just doesn't feel intuitive, I'm using Awesome Window manager for a few months now and I really like, it is fast and easy to configure with Lua.
I think Subtle has much potential for working on, but maybe a bit more intuitiveness could help starting out with it. First thing I'm still searching for is how to launch an application. Awesome puts inside the 'wibox' (eg. panel) where you can just type in your command, that I use most of the time.
Well, I doubt that the config of subtle is more complex and less intuitive in comparison to the config of awesome. (Wrapping everything in language oriented functions is really nice for people aware of this language.)
If you want kind a launcher than add one to a grab of your choice like dmenu?
"W-x" => "dmenu"
I guess I will add something like this in the default config, because several people asked about this. If you have any problems or suggestions feel free to visit #subtle on freenode.
Offline
I'll be trying it out, but I don't like to install something extra for that functionality.
The config file is ok, no problems with that, just don't have a direct feeling in Subtle, this is purely subjective.
As for I am a programmer, I like the Lua language for the config file.
I will check out this project in the near future, at least if the config is more consistent than the Awesome rc.lua.
Offline
I'll be trying it out, but I don't like to install something extra for that functionality.
The config file is ok, no problems with that, just don't have a direct feeling in Subtle, this is purely subjective.
As for I am a programmer, I like the Lua language for the config file.I will check out this project in the near future, at least if the config is more consistent than the Awesome rc.lua.
Same argument for me not implementing something another program does extremly well. You can use dmenu for various stuff,
the subtle package contains even a sample script (usr/share/subtle/scripts/subtag.sh) and I updated the config of the subtle-hg
package.
I am obviously a programmer too and still think the config of awesome is way too complex. Compare what you have to do to
spawn/exec a program in awesome and in subtle:
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end)
vs
"W-Return" => @terminal
(This is no rating, just a comparison of the complexity.)
Offline
obviously that is true, it is more complex
Offline
I updated the subtle package today, please check your config with the shipped config for changes.
Offline
Are you on IRC freenode btw? just curious cuz i am using ruby since almost 5 years and love it
Offline
Are you on IRC freenode btw? just curious cuz i am using ruby since almost 5 years and love it
Of course, visit us on #subtle!
Offline