You are not logged in.
You're welcome
I added icons in tags...what do you think?
http://s1.postimage.org/equs4do0r/29_01_2013_05_58_56_scrot.jpg
Mind sharing the config files you used to make that dude?
Offline
Hi guys
How can i get the clients menu in mymainmenu ?
mymenu = {
{ "File Manager", fileman },
{ "Browser", browser },
{ "Terminal", terminal },
{ " ", function () awful.menu.hide(mymainmenu) end, nil},
{ "Files", myplacesmenu.myplacesmenu()},
{ "Applications", menu_items },
{ "Windows", function () awful.menu.clients() end },
{ " ", function () awful.menu.hide(mymainmenu) end, nil},
{ "Exit", exitmenu }
}
mymainmenu = awful.menu({ items = mymenu
})
Last edited by mony (2013-03-11 15:39:14)
Offline
Ekber wrote:diis looks very nice
can you share your config please ?You can find my config files on github
Hey diis, sorry to bother you man, I really like your setup, I cloned your dotfiles, however the theme directory seems to be lacking some of the files you were using, would you mind doing a commit/push?
Thank you!!
sleepy
Offline
Edited my theme a bit, now I just need some widgets >_<
Edit: Changed the picture. Finally got me some colorful widgets yaaaay~ And made some good looking tag square things, and got rid of the icons in the task list. At last, I am content <3 until tomorrow at least
Last edited by zezhyrule3 (2013-03-14 05:37:11)
- dots -
Offline
Actual: http://ompldr.org/iaHNmMQ
Screenshots inside! If you can do better scripts for mounting and zoom, please do it!
Offline
Actual: http://ompldr.org/iaHNmMQ
Screenshots inside! If you can do better scripts for mounting and zoom, please do it!
good to see you long time ago, not choose any wm ?
Offline
Actual: http://ompldr.org/iaHNmMQ
Screenshots inside! If you can do better scripts for mounting and zoom, please do it!
Please don't paste links to random zip files here. While you do have a solid history in these threads, it does set an ugly precedent for malefactors to exploit.
Offline
TheImmortalPhoenix wrote:Actual: http://ompldr.org/iaHNmMQ
Screenshots inside! If you can do better scripts for mounting and zoom, please do it!Please don't paste links to random zip files here. While you do have a solid history in these threads, it does set an ugly precedent for malefactors to exploit.
The reason is that TIP has no internet connection at the moment. I guess he thought this was a nice way to share everything at once from another computer. I do get your point, though, and I agree.
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
The reason is that TIP has no internet connection at the moment. I guess he thought this was a nice way to share everything at once from another computer. I do get your point, though, and I agree.
What? Then how did he ompload it? It's not really important, but I'm just confused...
Offline
Unia wrote:The reason is that TIP has no internet connection at the moment. I guess he thought this was a nice way to share everything at once from another computer. I do get your point, though, and I agree.
What? Then how did he ompload it? It's not really important, but I'm just confused...
I guess he created a 7z file on his laptop and moved that to his friend's computer running Windows (he told me all about that on facebook ). TIP can be trusted, I'm sure. But still, JWR is right: don't post links to random zip files.
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
first awesome
https://dl.dropbox.com/u/7248454/2013-0 … _scrot.png
nice shot, btw read the fist post on actual monthly topic, resize the pic.
Offline
Hi guys
How can i get the clients menu in mymainmenu ?
mymenu = { { "File Manager", fileman }, { "Browser", browser }, { "Terminal", terminal }, { " ", function () awful.menu.hide(mymainmenu) end, nil}, { "Files", myplacesmenu.myplacesmenu()}, { "Applications", menu_items }, { "Windows", function () awful.menu.clients() end }, { " ", function () awful.menu.hide(mymainmenu) end, nil}, { "Exit", exitmenu } } mymainmenu = awful.menu({ items = mymenu })
It needs to be expanded out more:
mymainmenu = awful.menu({items = {{ "mymenu",mymenu,beautiful.awesome.icon}}})
I may have to CONSOLE you about your usage of ridiculously easy graphical interfaces...
Look ma, no mouse.
Offline
It needs to be expanded out more:
mymainmenu = awful.menu({items = {{ "mymenu",mymenu,beautiful.awesome.icon}}})
didn't work
Offline
This is a screenshot thread.. you might want to consider the Applications & Desktop subforum, awesome@oftc, etc..
Offline
new colors, wall, and conky
http://imageshack.us/a/img822/4843/201303211717063600x1080.th.png
Would you mind sharing your Xresources? And what did you use to generate that pipemenu?
Offline
Would you mind sharing your Xresources? And what did you use to generate that pipemenu?
You can find it in my github
and for the pipemenu i used freedesktop menu see my menu.lua in the github
Offline
Hey everyone:)
I recently switched to awesome WM and I'm trying to customize my theme a bit (merely editing for now), I was wonderinf how do you guys get to change the logo on the top left, I'd like to have the arch logo obviously
How do I get to do that?
Offline
Hey everyone:)
I recently switched to awesome WM and I'm trying to customize my theme a bit (merely editing for now), I was wonderinf how do you guys get to change the logo on the top left, I'd like to have the arch logo obviously
How do I get to do that?
In your theme.lua file of whatever theme you're editing, put the path to your image after "theme.awesome_icon", i.e.:
theme.awesome_icon = "~/Pictures/icons/archawmlogo.png"
which is what I have. Here's the image I use.
- dots -
Offline
Worked like a charm, thanks!
Offline
Offline
@mony: nice! how did you set icons in menu?
Offline
https://github.com/mony960/dotfiles/blo … e/menu.lua
in freedesktop.utils https://github.com/mony960/dotfiles/blo … /utils.lua
i changed
all_icon_sizes = {
'128x128',
'96x96',
etc ...
}
all_icon_types = {
'apps',
'actions',
etc ...
}
to
all_icon_sizes = {
'apps',
'actions',
etc ...
}
all_icon_types = {
'128',
'96',
etc ...
}
then i replaced ".xpm" with ".svg" because i don't use xpm icons
and finally in freedesktop.menu i changed the local menu to use svg icons instead of png icons because elementary icons uses svg icons
now the icons path will be like this "/usr/share/icons/elementary/{apps,actions,etc...}/{128,96,64,etc...}/<icon>.svg"
Offline