You are not logged in.
Hello..
I'm trying Subtle for the second time and am getting along pretty good However, there's just one feature I miss from my Compiz Standalone setup and that is the ability to change desktops by "sliding" (placing) my cursor in the (bottom) left/right screen edge.
I don't think this is possible with Subtle, and even if it is I don't think it will be implemented, but wanted to check anyway. Is this possible?
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
I don't think this is possible with Subtle, and even if it is I don't think it will be implemented, but wanted to check anyway. Is this possible?
Hi, you are right that isn't possible and actually I don't see the benefit of it. To make this possible subtle needs to check the mouse position all the time and this also may cause side-effects when you want to press a UI element and not switch the view.
And upon public demand in #subtle I have to answer with the bear.
Offline
And upon public demand in #subtle I have to answer with the bear.
Hahaha, ok, got it!
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
Ok I've ran across some things I can not solve by myself. I have downloaded some Sublets and most of them work, but the Volume Sublet does not show up. I'm pretty sure it's listed:
screen 1 do
top [:views, :title, :center, :clock, :volume, :weather, :battery, :tray]
#bottom [:center, :smpd, :center, :spacer, :clock, :separator, :volume, :tray]
end
Also, how can I move the things after :clock to the right of my panel? When I use :spacer they vanish (off screen?). I only want the clock Sublet centered, if possible.
Lastly (for now), is it possible to change the color of a Sublet's icon? I would like to have the clock icon orange, but the fonts in white. Can this be done? No matter what I tried, Subtle crashed on restart. Oh, and whilst we're at colors: can I have the battery font color change to red when it drops below 10%? I tried the settings that were listed upon installing it with sur, but it made Subtle crash too.
Thanks in advance!
EDIT: I'm using the latest Subtle-hg (3070-1) from AUR, if that matters.
Last edited by Unia (2011-10-06 19:41:28)
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
Another question I couldn't find the answer to yet: is it possible to have, for example, a terminal open on any view, but not in stick mode? So if I open one on view 1, it stays there, - and if I open another one on view 3, that one spawns there?
If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres
Offline
From subtle wiki:
The volume sublet uses /dev/mixer to set/get the volume levels, which is an older interface introduced with OSS and still available via ALSA OSS emulation. Apparently, newer kernels refuse to autoload that module anymore and you need to load it manually or via any init file.
http://subforge.org/ezfaq/show/subtle?faq_id=27
So you need to add snd_mixer_oss to modules in /etc/rc.conf and install alsa-oss(?).
Offline
sudo modprobe snd_mixer_oss
just that and a subtle reload should do it
Offline
Another question I couldn't find the answer to yet: is it possible to have, for example, a terminal open on any view, but not in stick mode? So if I open one on view 1, it stays there, - and if I open another one on view 3, that one spawns there?
Sorry, got no notification about a new entry here, You can do that with tagging, but that is usually a problem for many users. So did you try the launcher? http://subforge.org/projects/subtle-con … i/Launcher
With it, you can open your terminal like:
urxvt @viewname
and it tags the client appropriate. There are several other things the launcher can do.
So you need to add snd_mixer_oss to modules in /etc/rc.conf and install alsa-oss(?).
Yep, there is no other way to access the mixer without a fuc^Wgreat async library.
Offline
Hmm , anyone experiencing views bug in 64 bit ?
All my views icon does not change color It stays default black while I commented a color code for it in subtle.rb
Offline
Hmm , anyone experiencing views bug in 64 bit ?
All my views icon does not change color It stays default black while I commented a color code for it in subtle.rb
Did you recently upgraded? The icon color is now an own style property, because it is more logical that way, see here: http://subforge.org/projects/subtle/wiki/Styles#Icon
Offline
WilleoSoeurs wrote:Hmm , anyone experiencing views bug in 64 bit ?
All my views icon does not change color It stays default black while I commented a color code for it in subtle.rb
Did you recently upgraded? The icon color is now an own style property, because it is more logical that way, see here: http://subforge.org/projects/subtle/wiki/Styles#Icon
Ahh ok Ive changed the unoccupied color , but what about the occupied ones ?
Offline
Ahh ok Ive changed the unoccupied color , but what about the occupied ones ?
Either set the color of the icons in :all/:views on in occupied and unoccupied.
Offline
WilleoSoeurs wrote:Ahh ok Ive changed the unoccupied color , but what about the occupied ones ?
Either set the color of the icons in :all/:views on in occupied and unoccupied.
Sorry for being a noob in configs
Is it like this :
style :occupied do
padding 2, 8, 0, 8
#border_bottom "#424242", 2
icon "#0aa2c9"
border_top "#222222", 2
border_bottom "#222222", 4
foreground "#0aa2c9"
background "#222222"
end
?
Offline
Sorry for being a noob in configs
Is it like this :
style :occupied do
padding 2, 8, 0, 8
#border_bottom "#424242", 2
icon "#0aa2c9"
border_top "#222222", 2
border_bottom "#222222", 4
foreground "#0aa2c9"
background "#222222"
end
?
I don't know what you want to do, generally when you your occupied views and unoccupied differs just by e.g. one color you can set the values in the :views style and both inherit from it. That way you just need to configure the difference, like in this example:
style :views do
padding 2, 8, 0, 8
border_top "#222222", 2
style :occupied do
icon "#ff0000"
end
style :unoccupied do
icon "#0000ff"
end
end
That way both occupied and unoccupied have the same values but the icon color, that is red for occupied and blue for unoccupied.
Offline
WilleoSoeurs wrote:Sorry for being a noob in configs
Is it like this :
style :occupied do
padding 2, 8, 0, 8
#border_bottom "#424242", 2
icon "#0aa2c9"
border_top "#222222", 2
border_bottom "#222222", 4
foreground "#0aa2c9"
background "#222222"
end
?I don't know what you want to do, generally when you your occupied views and unoccupied differs just by e.g. one color you can set the values in the :views style and both inherit from it. That way you just need to configure the difference, like in this example:
style :views do padding 2, 8, 0, 8 border_top "#222222", 2 style :occupied do icon "#ff0000" end style :unoccupied do icon "#0000ff" end end
That way both occupied and unoccupied have the same values but the icon color, that is red for occupied and blue for unoccupied.
Ahh ok , Thanks alot
Offline
Ahh ok , Thanks alot
Heh yw.
Offline
Big fan of Subtle! Keep up the awesome work unexist!
Offline
Big fan of Subtle! Keep up the awesome work unexist!
Thanks I will, maybe one day you won't leave #subtle before I am awake.
Offline
Xyzodiac wrote:Big fan of Subtle! Keep up the awesome work unexist!
Thanks I will, maybe one day you won't leave #subtle before I am awake.
Maybe! haha.
Offline
Having an error when executing subtle
Cannot connect to display 0,0
Any fix ?
EDIT : Error occurs with the latest ruby version 1.9.3_p0-1
Last edited by WilleoSoeurs (2011-11-09 16:33:58)
Offline
Hello!
I was upset by the fact, that Subtle had no completions for Z Shell (zsh), so I decided to correct the situation. Here's my small contribution to Subtle: https://aur.archlinux.org/packages.php?ID=54047
Offline
Having an error when executing subtle
Cannot connect to display 0,0
Any fix ?
EDIT : Error occurs with the latest ruby version 1.9.3_p0-1
Yep, reinstall subtle. Happens with the update from ruby 1.9.2 to 1.9.3.
I was upset by the fact, that Subtle had no completions for Z Shell (zsh), so I decided to correct the situation.
Awesome!
Offline
I love subtle - very fluid workflow for me - thank you unexist.
I did find a bug related to :wmname, looks like an issue upstream. When in use the bookmark widget in chromium is behind the window or just blank - most likely the latter.
Is there a possible workaround? It's not a big deal, I only use one java app but it would be nice to eliminate an extra step.
Offline
I love subtle - very fluid workflow for me - thank you unexist.
Yw
I did find a bug related to :wmname, looks like an issue upstream. When in use the bookmark widget in chromium is behind the window or just blank - most likely the latter.
Is there a possible workaround? It's not a big deal, I only use one java app but it would be nice to eliminate an extra step.
Hum, what bookmark widget? Can you paste me the xprop output, when you click on that window?
Offline
echo.unity wrote:I love subtle - very fluid workflow for me - thank you unexist.
Yw
echo.unity wrote:I did find a bug related to :wmname, looks like an issue upstream. When in use the bookmark widget in chromium is behind the window or just blank - most likely the latter.
Is there a possible workaround? It's not a big deal, I only use one java app but it would be nice to eliminate an extra step.
Hum, what bookmark widget? Can you paste me the xprop output, when you click on that window?
Well not the widget per-say , it's the window that pops up after you add the bookmark within chromium (from there you select which folder to add it to and or remove).
This issue here: https://bugs.archlinux.org/task/25952
And here: http://wmfs.info/issues/92
Seems like the issue is most likely is how wmname interacts with chromium or vice-vesa. (as you can tell the issue is tiling specific)
Other then that - subtle is a great project - keep up the good work.
Offline