You are not logged in.

#751 2012-05-02 04:31:18

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: Share your Awesome(WM) desktop!

@boswbr25 Did you manually create that menu or is their an automatic menu script to do that?

Offline

#752 2012-05-02 12:22:14

boswbr25
Member
Registered: 2012-02-29
Posts: 63

Re: Share your Awesome(WM) desktop!

I manually created it.  Used gimp to changed the original icon's color to match the yellow in "awesome" on the wallpaper and then set every other category to the standard icon and my yellow icon.  I can post the section of my rc.lua and/or the icon when I get home from work if you want to see.

Offline

#753 2012-05-02 13:54:04

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

Re: Share your Awesome(WM) desktop!

boswbr25 wrote:

New to Awesome but I'm lovin it.  My desktop is pretty much standard Zenburn but I will show it bc there are a few changes.

Clean: http://ompldr.org/tZGxhcA

Dirty: http://ompldr.org/tZGxhcQ

I had a couple quick questions that I thought might be able to be answered here rather than starting a new topic.  I tried looking back through the thread but I didn't make it through all 30 pages so they may have been answered before (Sorry if they were).

1. Is there a way to get the pacman updates widget to show the updates available without manually doing a pacman -Syy?

2. Does anyone got a good way to add Reboot and Shutdown entries to the menu that won't require a password?  I tried a few ideas but the only way I could get it to work is to use "gksu".

Sorry for the long post.  Thanks for all the info everyone has posted on this thread.  I think I got more help from here than the wiki when transitioning to Awesome smile.

~Boz~

1. I use a cron job that does pacman -Sy hourly. When I do actually upgrade I always use pacman -Syyu, as I've read of issues with this method (Don't fully grasp the issues, if anyone wants to chime in, I'm all ears.)

Edit: For 1. this is the exact script I use in cron. https://bbs.archlinux.org/viewtopic.php … 95#p566995

2. https://wiki.archlinux.org/index.php/Al … o_Shutdown I modified mine to use /bin/poweroff instead of shutdown.

Last edited by doug piston (2012-05-02 13:57:47)

Offline

#754 2012-05-02 23:20:22

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

Re: Share your Awesome(WM) desktop!

is there a way to show 0 instead of 3? Maybe messing with wc. cut and sed commands...

Switch from "Arch" to "Arch S"  package manager.


You need to install an RTFM interface.

Offline

#755 2012-05-03 01:48:52

boswbr25
Member
Registered: 2012-02-29
Posts: 63

Re: Share your Awesome(WM) desktop!

Thanks for the info @doug piston!  I now realize how dumb of a question #2 was.  This is just the first time I've used a DE/WM that didn't have restart/shutdown set up in advance.

@donniezazen: I'm not sure what part of the menu you were asking about but here is the pertinent part of my rc.lua.

 -- Create a laucher widget and a main menu
myawesomemenu = {
   { "manual", terminal .. " -e man awesome" },
   { "edit config", "geany /home/boswbr25/.config/awesome/rc.lua" },
   { "restart awesome", awesome.restart },
   { "logout", awesome.quit },
   { "reboot", "sudo reboot" },
   { "shutdown", "sudo shutdown -h now" }
   
}
mysystem = {
   { "Terminal", terminal, "/usr/share/icons/Faenza/apps/96/terminal.png"},
   { "Geany", "geany", "/usr/share/icons/hicolor/48x48/apps/geany.png"},
   { "File Manager", "thunar", "/usr/share/icons/Faenza/apps/96/thunar.png"},
   { "Firewall", "gufw", "/home/boswbr25/builds/gufw/pkg/usr/share/icons/hicolor/48x48/apps/gufw.png" }
}

myinternet = {
   { "Chrome", "google-chrome", "/usr/share/icons/Faenza/apps/96/google-chrome.png"},
   { "Chrome Private", "google-chrome -incognito", "/usr/share/icons/Faenza/apps/96/google-chrome.png"},
   { "Postler", "postler", "/usr/share/icons/Faenza/apps/96/evolution.png"},
   { "Transmission", "transmission-gtk", "/usr/share/icons/Faenza/apps/96/transmission.png"},
   { "Pidgin", "pidgin", "/usr/share/icons/hicolor/48x48/apps/pidgin.png"},
   { "TeamViewer", "teamviewer7", "/home/boswbr25/builds/teamviewer/pkg/opt/teamviewer/teamviewer/7/desktop/teamviewer.png" }
}

myoffice = {
   { "AbiWord", "abiword", "/usr/share/icons/Faenza/mimetypes/96/application-msword.png"},
   { "Gnumeric", "gnumeric", "/usr/share/icons/Faenza/mimetypes/96/application-vnd.ms-excel.png"},
   { "ePDFViewer", "epdfviewer", "/usr/share/icons/Faenza/mimetypes/96/application-pdf.png" }
}

mymultimedia = {
   { "Spotify", "spotify", "/usr/share/icons/Faenza/apps/96/spotify.png" },
   { "Goggles MM", "gogglesmm", "/usr/share/icons/Faenza/apps/96/rhythmbox.png"},
   { "VLC", "vlc", "/usr/share/icons/Faenza/apps/96/vlc.png" },
   { "Xfburn", "xfburn", "/usr/share/icons/Faenza/apps/96/xfburn.png" }
}

mygraphics = {
   { "Gimp", "gimp", "/usr/share/icons/hicolor/64x64/apps/gimp.png"}
}

mygames = {
   { "Djl", "djl", "/usr/share/icons/Faenza/categories/96/applications-games.png" }
}


mymainmenu = awful.menu.new({ items = { 
                                        { "awesome", myawesomemenu, beautiful.awesome_icon },
                                        { "System", mysystem, "/home/boswbr25/gimp/awesome-icon2.png" },
                                        { "Internet", myinternet, beautiful.awesome_icon },
                                        { "Office", myoffice, "/home/boswbr25/gimp/awesome-icon2.png" },
                                        { "Multimedia", mymultimedia, beautiful.awesome_icon },
                                        { "Graphics", mygraphics, "/home/boswbr25/gimp/awesome-icon2.png" },
                                        { "Games", mygames, beautiful.awesome_icon }
                                       }
                             }) 

Offline

#756 2012-05-03 02:58:04

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: Share your Awesome(WM) desktop!

@boswbr25 thanks for sharing.

Offline

#757 2012-05-03 08:33:42

kost147
Member
From: Bulgaria
Registered: 2010-12-23
Posts: 18

Re: Share your Awesome(WM) desktop!

boswbr25 wrote:

New to Awesome but I'm lovin it.  My desktop is pretty much standard Zenburn but I will show it bc there are a few changes.

Clean: http://ompldr.org/tZGxhcA

Dirty: http://ompldr.org/tZGxhcQ

I had a couple quick questions that I thought might be able to be answered here rather than starting a new topic.  I tried looking back through the thread but I didn't make it through all 30 pages so they may have been answered before (Sorry if they were).

1. Is there a way to get the pacman updates widget to show the updates available without manually doing a pacman -Syy?

2. Does anyone got a good way to add Reboot and Shutdown entries to the menu that won't require a password?  I tried a few ideas but the only way I could get it to work is to use "gksu".

Sorry for the long post.  Thanks for all the info everyone has posted on this thread.  I think I got more help from here than the wiki when transitioning to Awesome smile.

~Boz~

2: Look about Use dbus for power operations section in https://wiki.archlinux.org/index.php/ConsoleKit

Offline

#758 2012-05-03 14:40:19

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

Re: Share your Awesome(WM) desktop!

when lying on couch or bed and just surfing on my laptop, it disturbed me to close/maximize windows using hotkeys. so i created a little taskbar mod, which shows on rightclick at tasklist a popup with close, maximize and swaptomaster function, as you do know from any other windowmanagers. the orignal popup with the overview of all clients was pointless to me, since i use revelation for overview!

the result is:
KOlx2.png

here is the code, if your interested:

@rc.lua: overwrite the existing rightclick function with this:

                     awful.button({ }, 3, function (c)
											  client.focus = c
                                              instance = awful.menu.clients({ width=100 })

@/usr/share/awesome/lib/awful/menu.lua:

add this line to the head of the file.

local awfulclient = require("awful.client")

and overwrite the existing clients(menu, args) function with this:

function clients(menu, args)

    if not menu then
        menu = {}
    end
    c = capi.client.focus
    
    local mynav = { }
    
    mynav[3] = { " close", function ()  c:kill() end, "/home/intrntbrn/icons/client/close.png" }
	mynav[2] = { " maximize", function () c.maximized_horizontal = not c.maximized_horizontal c.maximized_vertical = not c.maximized_vertical end, "/home/intrntbrn/icons/client/maximize.png" }
	mynav[1] = { " to master", function () c:swap(awfulclient.getmaster(1)) end, "/home/intrntbrn/icons/client/tomaster.png" }
	menu.items = mynav

    local m = new(menu)
    m:show(args)
    return m
end

Offline

#759 2012-05-03 15:42:51

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

Re: Share your Awesome(WM) desktop!

Nice one, but it's useless for me because i minimiza windows by left-click and close them by right click...with middle click i maximize them

Offline

#760 2012-05-04 04:22:31

whiterock
Member
Registered: 2012-05-04
Posts: 17

Re: Share your Awesome(WM) desktop!

Just installed and played around with Awesome WM yesterday. I can say this WM is really good
Anyone know what i should put into rc,lua code so i can assign key like Printscreen and Fn on my laptop?

Anyway, here is my box right now. Made it using the git version, the documentation is barely there. So this is my best that i can do that time, lol

clean
Dbm44fa357fd82ca5_thumb.jpg

dirty
a95w4fa357fe06897_thumb.jpg

Last edited by whiterock (2012-05-04 07:29:28)

Offline

#761 2012-05-04 11:59:24

boswbr25
Member
Registered: 2012-02-29
Posts: 63

Re: Share your Awesome(WM) desktop!

@whiterock This is what I have in my rc.lua to assign Print key.  I use stable version but I don't remember seeing anything about changes to keybindings when I read the "3.4 to git" wiki.

 awful.key({ }, "Print", function () awful.util.spawn("scrot -e 'mv $f ~/screenshots/ 2>/dev/null'") end), 

Offline

#762 2012-05-04 12:14:01

whiterock
Member
Registered: 2012-05-04
Posts: 17

Re: Share your Awesome(WM) desktop!

boswbr25 wrote:

@whiterock This is what I have in my rc.lua to assign Print key.  I use stable version but I don't remember seeing anything about changes to keybindings when I read the "3.4 to git" wiki.

 awful.key({ }, "Print", function () awful.util.spawn("scrot -e 'mv $f ~/screenshots/ 2>/dev/null'") end), 

Perfect! Worked like a charm
Another question, is it possible to skin the wibox i.e. the toolbar at the top (or bottom)
I've got something in mind, but still not really sure about how to implement it

Thanks for the assistance smile

Last edited by whiterock (2012-05-04 12:14:36)

Offline

#763 2012-05-04 16:28:59

boswbr25
Member
Registered: 2012-02-29
Posts: 63

Re: Share your Awesome(WM) desktop!

I haven't done it myself but you'll want to check out this page on "Themeing with Beautiful" on the awesome wiki. http://awesome.naquadah.org/wiki/Beautiful  It looks like you could accomplish that with the settings explained in the "Custom Variables" section.

Good Luck smile!

Offline

#764 2012-05-04 17:53:33

Wibjarm
Member
Registered: 2012-05-04
Posts: 43

Re: Share your Awesome(WM) desktop!

You may also want to have a look at the luadoc for the git version, in /usr/share/doc/awesome/luadoc.  Some of the highlights for wibox skinning include set_bg and set_fg taking cairo patterns, and some of the gears.color stuff that lets you create cairo patterns, including from png images.

Offline

#765 2012-05-05 03:53:31

whiterock
Member
Registered: 2012-05-04
Posts: 17

Re: Share your Awesome(WM) desktop!

boswbr25 wrote:

I haven't done it myself but you'll want to check out this page on "Themeing with Beautiful" on the awesome wiki. http://awesome.naquadah.org/wiki/Beautiful  It looks like you could accomplish that with the settings explained in the "Custom Variables" section.

Good Luck smile!

Wibjarm wrote:

You may also want to have a look at the luadoc for the git version, in /usr/share/doc/awesome/luadoc.  Some of the highlights for wibox skinning include set_bg and set_fg taking cairo patterns, and some of the gears.color stuff that lets you create cairo patterns, including from png images.

Thanks!

After lurking for a while, i got the setup that i wanted. Here you go

WcLa4fa4a35250ecb_thumb.jpg

Offline

#766 2012-05-07 00:53:17

SolarBoyMatt
Member
Registered: 2012-01-07
Posts: 263

Re: Share your Awesome(WM) desktop!

2012-05-06-thumb.png

Got rid of some tags and made some under the hood changes to some widgets, but I think I'm pretty happy with it now.

Last edited by SolarBoyMatt (2012-05-07 00:57:56)

Offline

#767 2012-05-07 11:22:09

Yuukan
Member
Registered: 2011-07-08
Posts: 13

Re: Share your Awesome(WM) desktop!

whiterock wrote:

After lurking for a while, i got the setup that i wanted. Here you go

http://photoserver.ws/images/WcLa4fa4a35250ecb_thumb.jpg

Mind sharing your config? smile

Offline

#768 2012-05-07 12:11:01

Rolinh
Member
From: Switzerland
Registered: 2011-05-07
Posts: 144
Website

Re: Share your Awesome(WM) desktop!

@SolarBoyMatt: mind sharing your awesome icon and layout icons? It looks great smile

Offline

#769 2012-05-07 12:54:56

SolarBoyMatt
Member
Registered: 2012-01-07
Posts: 263

Re: Share your Awesome(WM) desktop!

Rolinh wrote:

@SolarBoyMatt: mind sharing your awesome icon and layout icons? It looks great smile

Thanks! All I did was recolor the icons from the Zenburn theme.

http://dl.dropbox.com/u/10511710/Awesome/default.tar.gz

They were also on my github page in my signature, but this way's more convenient.

Last edited by SolarBoyMatt (2012-05-07 13:38:16)

Offline

#770 2012-05-08 01:08:27

nesneros
Member
From: Arizona
Registered: 2012-04-25
Posts: 20

Re: Share your Awesome(WM) desktop!

Cross post from May 2012 Screenshots thread.. neutral

Hey everyone, I am new to these forums, Arch Linux, and using any sort of a WM still working on my configuration, layout, colors, etc.  But I am at a point where I can atleast post some screens. smile

(Heavy inspiration from Vargs 'moss' theme for awesome)

Clean:
2012-05-07-174446_1440x900_scrot_thumb.png
Busy (not really 'Busy..' but yeah):
2012-05-07-175100_1440x900_scrot_thumb.png


{ github | arch }

Offline

#771 2012-05-08 10:44:28

whiterock
Member
Registered: 2012-05-04
Posts: 17

Re: Share your Awesome(WM) desktop!

Yuukan wrote:
whiterock wrote:

After lurking for a while, i got the setup that i wanted. Here you go

http://photoserver.ws/images/WcLa4fa4a35250ecb_thumb.jpg

Mind sharing your config? smile

Just check out my github, it is in my signature smile

Offline

#772 2012-05-08 12:22:24

iAmAhab
Member
Registered: 2012-04-09
Posts: 7

Re: Share your Awesome(WM) desktop!

Been lotting things here and there, now I just need to make a useful menu.

a9OPC.png

Switched from xfce to awesome because I have a tiny screen. I'm not benefitting
from tiling, but the tags and maximized windows works excellent on a small screen.

Last edited by iAmAhab (2012-05-08 12:24:38)

Offline

#773 2012-05-08 14:53:14

ANOKNUSA
Member
Registered: 2010-10-22
Posts: 2,141

Re: Share your Awesome(WM) desktop!

Back to Awesome after a months-long absence.  A work in progess for now...

tZG8xdQ

Is there a way to truly center my clock widget in the top panel, so it's stuck in a fixed position? I've tried

awful.widget.layout.margins[clock.widget] = { left = [integer] }

but that just breaks my config.  Does this only work with images and bars? For now I'm just using a textbox as a spacer, which obviously doesn't really work.

EDIT: "awful.widget.layout.horizontal" doesn't seem to work either.

Last edited by ANOKNUSA (2012-05-08 15:10:59)

Offline

#774 2012-05-08 15:24:12

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

Re: Share your Awesome(WM) desktop!

new background found @ may thread:

aqdQ6.png

removed floating icon and added a tasklist mod which displays the client state (floating, minimized, ontop, sticky):

sWbFe.png

Offline

#775 2012-05-08 18:54:38

donniezazen
Member
From: Salt Lake City
Registered: 2011-06-24
Posts: 671
Website

Re: Share your Awesome(WM) desktop!

intrntbrn wrote:

new background found @ may thread:

http://i.imgur.com/aqdQ6.png

removed floating icon and added a tasklist mod which displays the client state (floating, minimized, ontop, sticky):

http://i.imgur.com/sWbFe.png

Is that music widget clickable?

Offline

Board footer

Powered by FluxBB