You are not logged in.
E17, very nice!
I'm still finding my feet on Arch, is there a wiki entry for installing E17?
Offline
E17, very nice!
I'm still finding my feet on Arch, is there a wiki entry for installing E17?
Happy Hacking!
Twitter: http://twitter.com/bobbyrburden/
Website: http://codebutcher.com/
Offline
NEED your wallpaper!! Guitar of my dreams!
archlinux on Macbook Pro 10,1
Offline
Rab, do you mind sharing your conky (if that is what is displaying system stats in your bottom bar)?
Offline
DWM, with Plan 9-like colors.
I've been trying to do this for the longest time. Mind posting your configs?
Also, you might want to make terminals transparent and get a seamless beige squares background like in this: http://linux.softpedia.com/screenshots/Plan-9_1.gif
Last edited by gog (2009-10-19 06:19:31)
Offline
Randy Penguin wrote:NEED your wallpaper!! Guitar of my dreams!
I could be wrong.. but isnt that Sebastian Bach?
Last edited by Rasi (2009-10-19 06:52:10)
He hoped and prayed that there wasn't an afterlife. Then he realized there was a contradiction involved here and merely hoped that there wasn't an afterlife.
Douglas Adams
Offline
Reasons wrote:Click for big.
I like it
Is it xmonad ?
It is. I like it because tiling feels better than most other tiling wms.
Offline
Offline
Rab, do you mind sharing your conky (if that is what is displaying system stats in your bottom bar)?
Sure
.conkyrc
use_spacer right
TEXT
conky.text = ' <span color="' .. beautiful.yellow .. '">CPU</span>: <span color="' .. beautiful.white2 .. '">${cpu cpu0}% ${cpu cpu1}% ${cpu cpu2}% ${cpu cpu3}%</span> <span color="' .. beautiful.yellow .. '">Memory</span>: <span color="' .. beautiful.white2 .. '">$mem/$memmax </span>(<span color="' .. beautiful.white2 .. '">$memperc%</span>) <span color="' .. beautiful.yellow .. '">Down</span>: <span color="' .. beautiful.white2 .. '">${downspeed ra0}</span> <span color="' .. beautiful.yellow .. '">Up</span>: <span color="' .. beautiful.white2 .. '">${upspeed ra0}</span> <span color="' .. beautiful.yellow .. '">Mail</span>: <span color="' .. beautiful.white2 .. '">${new_mails /home/rab/.mail/inbox}</span> <span color="' .. beautiful.yellow .. '">Weather</span>: <span color="' .. beautiful.white2 .. '">${execi 300 conkyweather}</span>'
date.text = '<span color="' .. beautiful.magenta2 .. '">${time %a %b %d %I:%M}</span>'
fs1:bar_data_add("fs1", ${fs_used_perc /})
fs2:bar_data_add("fs2", ${fs_used_perc /home})
fs3:bar_data_add("fs3", ${fs_used_perc /data})
.config/awesome/rc.lua
conky = widget({ type = 'textbox', name = 'conkywidget', align = 'left' })
date = widget({ type = 'textbox', name = 'datewidget', align = 'right' })
volume_text = widget({ type = 'textbox', name = 'volumetext', align = 'left' })
volume_text.text = "<span color='" .. beautiful.yellow .. "'> Volume</span>: "
fs1_text = widget({ type = 'textbox', name = 'fs1text', align = 'left' })
fs1_text.text = "<span color='" .. beautiful.yellow .. "'> /</span>: "
fs2_text = widget({ type = 'textbox', name = 'fs2text', align = 'left' })
fs2_text.text = "<span color='" .. beautiful.yellow .. "'> /home</span>: "
fs3_text = widget({ type = 'textbox', name = 'fs3text', align = 'left' })
fs3_text.text = "<span color='" .. beautiful.yellow .. "'> /data</span>: "
cardid = 0
channel = "Master"
function volume (mode, widget)
if mode == "update" then
local status = io.popen("amixer -c " .. cardid .. " -- sget " .. channel):read("*all")
local volume = string.match(status, "(%d?%d?%d)%%")
status = string.match(status, "%[(o[^%]]*)%]")
if string.find(status, "on", 1, true) then
widget:bar_properties_set("vol", {["bg"] = beautiful.white2 })
else
widget:bar_properties_set("vol", {["bg"] = beautiful.red2 })
end
widget:bar_data_add("vol", volume)
elseif mode == "up" then
awful.util.spawn("amixer -q -c " .. cardid .. " sset " .. channel .. " 2%+")
volume("update", widget)
elseif mode == "down" then
awful.util.spawn("amixer -q -c " .. cardid .. " sset " .. channel .. " 2%-")
volume("update", widget)
else
awful.util.spawn("amixer -c " .. cardid .. " sset " .. channel .. " toggle")
volume("update", widget)
end
end
pb_volume = widget({ type = "progressbar", align = "left" })
pb_volume.width = 50
pb_volume.height = .7
pb_volume.gap = 0
pb_volume.border_padding = 1
pb_volume.border_width = 1
pb_volume.ticks_count = 8
pb_volume.horizontal = true
pb_volume:bar_properties_set("vol",
{
["bg"] = beautiful.bg,
["fg"] = beautiful.cyan,
["fg_center"] = beautiful.cyan,
["fg_end"] = beautiful.cyan,
["fg_off"] = beautiful.bg,
["border_color"] = beautiful.bg,
["min_value"] = "0.0",
["max_value"] = "100.0",
["reverse"] = false
})
fs1 = widget({ type = "progressbar", align = "left" })
fs1.width = 50
fs1.height = .7
fs1.gap = 0
fs1.border_padding = 1
fs1.border_width = 1
fs1.ticks_count = 8
fs1.horizontal = true
fs1:bar_properties_set("fs1",
{
["bg"] = beautiful.white2,
["fg"] = beautiful.blue2,
["fg_center"] = beautiful.blue2,
["fg_end"] = beautiful.blue2,
["fg_off"] = beautiful.bg,
["border_color"] = beautiful.bg,
["min_value"] = "0.0",
["max_value"] = "100.0",
["reverse"] = false
})
fs2 = widget({ type = "progressbar", align = "left" })
fs2.width = 50
fs2.height = .7
fs2.gap = 0
fs2.border_padding = 1
fs2.border_width = 1
fs2.ticks_count = 8
fs2.horizontal = true
fs3 = widget({ type = "progressbar", align = "left" })
fs3.width = 50
fs3.height = .7
fs3.gap = 0
fs3.border_padding = 1
fs3.border_width = 1
fs3.ticks_count = 8
fs3.horizontal = true
fs2:bar_properties_set("fs2",
{
["bg"] = beautiful.white2,
["fg"] = beautiful.blue2,
["fg_center"] = beautiful.blue2,
["fg_end"] = beautiful.blue2,
["fg_off"] = beautiful.bg,
["border_color"] = beautiful.bg,
["min_value"] = "0.0",
["max_value"] = "100.0",
["reverse"] = false
})
fs3:bar_properties_set("fs3",
{
["bg"] = beautiful.white2,
["fg"] = beautiful.blue2,
["fg_center"] = beautiful.blue2,
["fg_end"] = beautiful.blue2,
["fg_off"] = beautiful.bg,
["border_color"] = beautiful.bg,
["min_value"] = "0.0",
["max_value"] = "100.0",
["reverse"] = false
})
volume("update", pb_volume)
awful.hooks.timer.register(3600, function () volume("update", pb_volume) end)
run conky-cli | awesome-client
rawr
Offline
Click for big.
Nice. Mind sharing the wallpaper?
Offline
E17, very nice!
I'm still finding my feet on Arch, is there a wiki entry for installing E17?
Thanks! Yes, E17 is nice as long as you don't expect it to be a full fledged DE. IT takes some adjusting to get used to at first, but once you do, if you are like me, you'll find it productive, light, and nice to work with.
Legends of Nor'Ova - role playing community devoted to quality forum-based and table-top role play, home of the Legends of Nor'Ova Core Rule Book and Legends of Nor'Ova: Saga of Ablution steam punk like forum based RPG
Offline
Reasons wrote:Click for big.
Nice. Mind sharing the wallpaper?
Sure
Offline
Offline
Nice! Would you mind sharing your wallpaper please?
Offline
SamC wrote:DWM, with Plan 9-like colors.
I've been trying to do this for the longest time. Mind posting your configs?
Also, you might want to make terminals transparent and get a seamless beige squares background like in this: http://linux.softpedia.com/screenshots/Plan-9_1.gif
http://ix.io/pW <- My .Xdefaults.
Not sure what you mean by the second part of that, though.
Offline
thanks.
if you zoom in you can see that its not a beige background its actually squares on pure white.
I meant that you can set urxvt to 100% transparent and use a similar background. brazil or whatever its called now (plan9's window manager and gui toolkits) does that differently, though. It'd be nice to have something like that in linux, lightweight patterned backgrounds like that without using bmp's.
Offline
zen3 wrote:OMG! I NEED this wallpaper! It would go so well with my Matrix style desktop! (refer to first page of this thread)
you probably could've just ripped it off right from the screenshot you know..
chupocabra ... psupsuspsu psu psu
Offline
Offline
Here's mine...
Nice wallpaper
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline