You are not logged in.

#651 2012-04-11 20:25:56

ganastasiou
Member
Registered: 2010-02-03
Posts: 56

Re: Share your Awesome(WM) desktop!

http://piotr.doniec.eu/devlog/2011/11/t … awesomewm/

And for icon only without text,then 

-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {
	names = {"α","β","γ","δ"},
	layout = {layouts[1],layouts[2],layouts[4],layouts[1]},
	icons = {"/home/shad0w/Downloads/icons/globe.png","/home/shad0w/Downloads/icons/balloon.png","/home/shad0w/Downloads/icons/mail-medium.png","/home/shad0w/Downloads/icons/music.png"}
	}
for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag(tags.names, s, tags.layout)
    awful.tag.seticon(tags.icons[1],tags[s][1])
    awful.tag.seticon(tags.icons[2],tags[s][2])
    awful.tag.seticon(tags.icons[3],tags[s][3])	
    awful.tag.seticon(tags.icons[4],tags[s][4])
end
-- }}}
for a = 1, 4, 1 do
awful.tag.setproperty(tags[1][a], "icon_only", 1)
end

Last edited by ganastasiou (2012-04-11 20:35:20)

Offline

#652 2012-04-11 21:19:59

anrxc
Member
From: Croatia
Registered: 2008-03-22
Posts: 834
Website

Re: Share your Awesome(WM) desktop!

You can simplify your last two loops

for s = 1, screen.count() do
  tags[s] = awful.tag(tags.names, s, tags.layout)

  for i, t in ipairs(tags[s]) do
      awful.tag.seticon(tags.icons[i], t)
      awful.tag.setproperty(t, "icon_only", 1)
  end
end

You need to install an RTFM interface.

Offline

#653 2012-04-11 22:26:42

intrntbrn
Member
From: Germany
Registered: 2011-12-01
Posts: 66

Re: Share your Awesome(WM) desktop!

@TheImmortalPhoenix: can u pls share ur menufix? really like your theme except the yellow tongue

ontopic: new background

EcetU.png

// btw:
iam searching a way to tag clients with numbers and select them via shortcuts like ctrl + x.
created this thread: https://bbs.archlinux.org/viewtopic.php?id=139462

Last edited by intrntbrn (2012-04-12 00:47:13)

Offline

#654 2012-04-12 07:28:15

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

I just added these two lines to theme.lua:

theme.menu_border_widht = "0"
theme.menu_bg_normal = "050505dd"

submenu:
http://pix.toile-libre.org/?img=1333988341.png

Last edited by TheImmortalPhoenix (2012-04-12 07:28:33)

Offline

#655 2012-04-12 12:30:27

spark666
Member
Registered: 2011-05-23
Posts: 137

Re: Share your Awesome(WM) desktop!

ganastasiou wrote:

Read here .

Thank you very much ! big_smile

And in the config from that website,how can i set different layouts per tag ?

Last edited by spark666 (2012-04-12 12:31:44)

Offline

#656 2012-04-12 12:41:11

fb0x
Member
From: Serbia
Registered: 2011-09-27
Posts: 73

Re: Share your Awesome(WM) desktop!

spark666 wrote:
ganastasiou wrote:

Read here .

Thank you very much ! big_smile

And in the config from that website,how can i set different layouts per tag ?

Ex:

 -- {{{ Tags
 -- Define a tag table which will hold all screen tags.
 tags = {
   names  = { "main", "www", "misc", "docs", "dev" },
   layout = { layouts[4], layouts[4], layouts[1], layouts[1], layouts[4]
 }}
 for s = 1, screen.count() do
     -- Each screen has its own tag table.
     tags[s] = awful.tag(tags.names, s, tags.layout)
 end
 -- }}}

Offline

#657 2012-04-12 13:18:51

spark666
Member
Registered: 2011-05-23
Posts: 137

Re: Share your Awesome(WM) desktop!

In this config everywhere i put the layouts its breaks awesome sad

-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ "", "", "", "", "", "", "" }, s, layouts[1] )
   
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/net.png", tags[s][1])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/term.png", tags[s][2])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/mail.png", tags[s][3])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/folder.png", tags[s][4])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/editor.png", tags[s][5])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/media.png", tags[s][6])
    awful.tag.seticon("/usr/share/awesome/themes/spark/tags/bug.png", tags[s][7])


end
-- }}} 

Offline

#658 2012-04-12 14:37:35

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

Blue version:

tZGNuaw

Offline

#659 2012-04-12 16:40:17

ephan
Member
Registered: 2011-11-02
Posts: 171

Re: Share your Awesome(WM) desktop!

TheImmortalPhoenix wrote:

What a gorgeous desktop, I wish I had mine like that tongue

Offline

#660 2012-04-12 20:48:17

doug piston
Member
From: Seattle
Registered: 2011-09-11
Posts: 387
Website

Re: Share your Awesome(WM) desktop!

TheImmortalPhoenix wrote:


I'd love to get a hold of that theme and icons please. Every time I tried I ended up with a fat bloated icon hmm




Looks great by the way, very well done.

Offline

#661 2012-04-13 01:55:29

intrntbrn
Member
From: Germany
Registered: 2011-12-01
Posts: 66

Re: Share your Awesome(WM) desktop!

thanks for the tag-icon-info; looks good:

EvLQq.png

Offline

#662 2012-04-13 06:29:31

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

doug piston wrote:
TheImmortalPhoenix wrote:


I'd love to get a hold of that theme and icons please. Every time I tried I ended up with a fat bloated icon hmm




Looks great by the way, very well done.

http://ompldr.org/iZGN4OA

New wall:

tZGN4ag

tZGN4aQ

Last edited by TheImmortalPhoenix (2012-04-13 07:01:52)

Offline

#663 2012-04-13 08:52:13

sevenfourk
Member
Registered: 2008-02-21
Posts: 185

Re: Share your Awesome(WM) desktop!

TheImmortalPhoenix wrote:

Fella, throw .ncmpcpp config please.

Regards,
Ivan


No cause is lost if there is but one fool left to fight for it.

Offline

#664 2012-04-13 09:23:22

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

sevenfourk wrote:
TheImmortalPhoenix wrote:

Fella, throw .ncmpcpp config please.

Regards,
Ivan

http://ompldr.org/vZGN5bg

Offline

#665 2012-04-13 17:12:40

earsplit
Member
Registered: 2012-03-31
Posts: 187
Website

Re: Share your Awesome(WM) desktop!

TheImmortalPhoenix wrote:
sevenfourk wrote:
TheImmortalPhoenix wrote:

Fella, throw .ncmpcpp config please.

Regards,
Ivan

http://ompldr.org/vZGN5bg

Could I see your .Xdefaults? I love that font...


((( configs :: website )))

Offline

#666 2012-04-13 17:27:38

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

Offline

#667 2012-04-13 23:10:35

intrntbrn
Member
From: Germany
Registered: 2011-12-01
Posts: 66

Re: Share your Awesome(WM) desktop!

// edit because of bugs in the posted script.

Last edited by intrntbrn (2012-04-14 00:54:14)

Offline

#668 2012-04-14 15:12:35

doug piston
Member
From: Seattle
Registered: 2011-09-11
Posts: 387
Website

Re: Share your Awesome(WM) desktop!

TheImmortalPhoenix wrote:
doug piston wrote:
TheImmortalPhoenix wrote:


I'd love to get a hold of that theme and icons please. Every time I tried I ended up with a fat bloated icon hmm




Looks great by the way, very well done.

http://ompldr.org/iZGN4OA


Thank you. smile

Offline

#669 2012-04-15 00:36:54

intrntbrn
Member
From: Germany
Registered: 2011-12-01
Posts: 66

Re: Share your Awesome(WM) desktop!

just tested to add custom icons to clients in tasklist. works and looks great!

nZa7i.png

edited /usr/share/awesome/lib/awful/widget/tasklist.lua

example code: (either use the name or the class to add/overwrite icons)

local function widget_tasklist_label_common(c, args)
...
    if (name == "ncmpcpp") then
    icon = capi.image(icons .. "note.png")
    return text, bg, nil, icon
    end
    
    if (c.class == "URxvt") then
    icon = capi.image(icons .. "arch.png")
    return text, bg, nil, icon
    end
...

btw: thanks to TheImmortalPhoenix for all your nice screens and work!

Last edited by intrntbrn (2012-04-15 00:49:06)

Offline

#670 2012-04-15 05:39:28

sevenfourk
Member
Registered: 2008-02-21
Posts: 185

Re: Share your Awesome(WM) desktop!

@intrntbrn, woot, Bizkit :-)


No cause is lost if there is but one fool left to fight for it.

Offline

#671 2012-04-15 14:02:46

toringe
Member
Registered: 2011-09-05
Posts: 49

Re: Share your Awesome(WM) desktop!

How did you make your popup menu transparent?

Offline

#672 2012-04-15 15:28:09

rmi
Member
Registered: 2012-04-15
Posts: 4

Re: Share your Awesome(WM) desktop!

Uhm, is the awesome AUR-Package currently broken? cairo-xcb does not seem to be available.

Offline

#673 2012-04-15 15:33:47

Into the Pit
Member
Registered: 2010-09-04
Posts: 37

Re: Share your Awesome(WM) desktop!

rmi wrote:

Uhm, is the awesome AUR-Package currently broken? cairo-xcb does not seem to be available.

You can find it in community-testing because the new release of cairo (also in Testing right now) now uses the xcb-backend. There is no need anymore for cairo-xcb.

Look here

Offline

#674 2012-04-15 15:57:13

TheImmortalPhoenix
Member
From: 127.0.0.1
Registered: 2011-08-13
Posts: 436

Re: Share your Awesome(WM) desktop!

toringe wrote:

How did you make your popup menu transparent?

when you set the color add "dd" to the end of the code...for example #000000dd, you can make combinations with numbers and letters to find you favourite transparency

Offline

#675 2012-04-15 16:03:05

toringe
Member
Registered: 2011-09-05
Posts: 49

Re: Share your Awesome(WM) desktop!

Clean:
tFotP.jpg

Dirty:
OqedD.jpg

Modified solarized theme with solarized theme for urxvt.
Image quality isn't that good, though.

Offline

Board footer

Powered by FluxBB