mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2025-01-10 17:58:09 +00:00
321 lines
9.4 KiB
Plaintext
321 lines
9.4 KiB
Plaintext
--[[
|
|
|
|
Powerarrow Darker Awesome WM config 2.0
|
|
github.com/copycat-killer
|
|
|
|
--]]
|
|
|
|
-- {{{ Required libraries
|
|
local gears = require("gears")
|
|
local awful = require("awful")
|
|
awful.rules = require("awful.rules")
|
|
require("awful.autofocus")
|
|
local wibox = require("wibox")
|
|
local beautiful = require("beautiful")
|
|
local naughty = require("naughty")
|
|
local lain = require("lain")
|
|
-- }}}
|
|
|
|
-- Error handling
|
|
require("myrc.errors")
|
|
|
|
-- STARTUP apps
|
|
require("settings.startup")
|
|
|
|
-- {{{ Variable definitions
|
|
-- beautiful init
|
|
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker/theme.lua")
|
|
|
|
-- variables
|
|
require("settings.variables")
|
|
|
|
iptraf = terminal .. " -g 180x54-20+34 -e sudo iptraf-ng -i all "
|
|
musicplr = terminal .. " -g 130x34-320+16 -e ncmpcpp "
|
|
|
|
-- Tags and layouts
|
|
require("settings.tags")
|
|
-- }}}
|
|
|
|
-- {{{ Wallpaper
|
|
require("stock.wallpaper")
|
|
-- }}}
|
|
|
|
-- {{{ Menu
|
|
require("freedesktop/freedesktop")
|
|
-- }}}
|
|
|
|
-- {{{ Wibox
|
|
markup = lain.util.markup
|
|
|
|
-- Textclock
|
|
clockicon = wibox.widget.imagebox(beautiful.widget_clock)
|
|
mytextclock = awful.widget.textclock(" %a %d %b %H:%M")
|
|
|
|
-- calendar
|
|
lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
|
|
|
|
-- Mail IMAP check
|
|
mailicon = wibox.widget.imagebox(beautiful.widget_mail)
|
|
mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail) end)))
|
|
--[[ commented because it needs to be set before use
|
|
mailwidget = wibox.widget.background(lain.widgets.imap({
|
|
timeout = 180,
|
|
server = "server",
|
|
mail = "mail",
|
|
password = "keyring get mail",
|
|
settings = function()
|
|
if mailcount > 0 then
|
|
widget:set_text(" " .. mailcount .. " ")
|
|
mailicon:set_image(beautiful.widget_mail_on)
|
|
else
|
|
widget:set_text("")
|
|
mailicon:set_image(beautiful.widget_mail)
|
|
end
|
|
end
|
|
}), "#313131")
|
|
]]
|
|
|
|
-- MPD
|
|
mpdicon = wibox.widget.imagebox(beautiful.widget_music)
|
|
mpdicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(musicplr) end)))
|
|
mpdwidget = lain.widgets.mpd({
|
|
settings = function()
|
|
if mpd_now.state == "play" then
|
|
artist = " " .. mpd_now.artist .. " "
|
|
title = mpd_now.title .. " "
|
|
mpdicon:set_image(beautiful.widget_music_on)
|
|
elseif mpd_now.state == "pause" then
|
|
artist = " mpd "
|
|
title = "paused "
|
|
else
|
|
artist = ""
|
|
title = ""
|
|
mpdicon:set_image(beautiful.widget_music)
|
|
end
|
|
|
|
widget:set_markup(markup("#EA6F81", artist) .. title)
|
|
end
|
|
})
|
|
mpdwidgetbg = wibox.widget.background(mpdwidget, "#313131")
|
|
|
|
-- MEM
|
|
memicon = wibox.widget.imagebox(beautiful.widget_mem)
|
|
memwidget = lain.widgets.mem({
|
|
settings = function()
|
|
widget:set_text(" " .. mem_now.used .. "MB ")
|
|
end
|
|
})
|
|
|
|
-- CPU
|
|
cpuicon = wibox.widget.imagebox(beautiful.widget_cpu)
|
|
cpuwidget = wibox.widget.background(lain.widgets.cpu({
|
|
settings = function()
|
|
widget:set_text(" " .. cpu_now.usage .. "% ")
|
|
end
|
|
}), "#313131")
|
|
|
|
-- Coretemp
|
|
tempicon = wibox.widget.imagebox(beautiful.widget_temp)
|
|
tempwidget = lain.widgets.temp({
|
|
settings = function()
|
|
widget:set_text(" " .. coretemp_now .. "°C ")
|
|
end
|
|
})
|
|
|
|
-- / fs
|
|
fsicon = wibox.widget.imagebox(beautiful.widget_hdd)
|
|
fswidget = lain.widgets.fs({
|
|
settings = function()
|
|
widget:set_text(" " .. fs_now.used .. "% ")
|
|
end
|
|
})
|
|
fswidgetbg = wibox.widget.background(fswidget, "#313131")
|
|
|
|
-- Battery
|
|
baticon = wibox.widget.imagebox(beautiful.widget_battery)
|
|
batwidget = lain.widgets.bat({
|
|
settings = function()
|
|
if bat_now.perc == "N/A" then
|
|
widget:set_markup(" AC ")
|
|
baticon:set_image(beautiful.widget_ac)
|
|
return
|
|
elseif tonumber(bat_now.perc) <= 5 then
|
|
baticon:set_image(beautiful.widget_battery_empty)
|
|
elseif tonumber(bat_now.perc) <= 15 then
|
|
baticon:set_image(beautiful.widget_battery_low)
|
|
else
|
|
baticon:set_image(beautiful.widget_battery)
|
|
end
|
|
widget:set_markup(" " .. bat_now.perc .. "% ")
|
|
end
|
|
})
|
|
|
|
-- ALSA volume
|
|
volicon = wibox.widget.imagebox(beautiful.widget_vol)
|
|
volumewidget = lain.widgets.alsa({
|
|
settings = function()
|
|
if volume_now.status == "off" then
|
|
volicon:set_image(beautiful.widget_vol_mute)
|
|
elseif tonumber(volume_now.level) == 0 then
|
|
volicon:set_image(beautiful.widget_vol_no)
|
|
elseif tonumber(volume_now.level) <= 50 then
|
|
volicon:set_image(beautiful.widget_vol_low)
|
|
else
|
|
volicon:set_image(beautiful.widget_vol)
|
|
end
|
|
|
|
widget:set_text(" " .. volume_now.level .. "% ")
|
|
end
|
|
})
|
|
|
|
-- Net
|
|
neticon = wibox.widget.imagebox(beautiful.widget_net)
|
|
neticon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(iptraf) end)))
|
|
netwidget = wibox.widget.background(lain.widgets.net({
|
|
settings = function()
|
|
widget:set_markup(markup("#7AC82E", " " .. net_now.received)
|
|
.. " " ..
|
|
markup("#46A8C3", " " .. net_now.sent .. " "))
|
|
end
|
|
}), "#313131")
|
|
|
|
-- Separators
|
|
spr = wibox.widget.textbox(' ')
|
|
arrl = wibox.widget.imagebox()
|
|
arrl:set_image(beautiful.arrl)
|
|
arrl_dl = wibox.widget.imagebox()
|
|
arrl_dl:set_image(beautiful.arrl_dl)
|
|
arrl_ld = wibox.widget.imagebox()
|
|
arrl_ld:set_image(beautiful.arrl_ld)
|
|
|
|
-- Create a wibox for each screen and add it
|
|
mywibox = {}
|
|
mypromptbox = {}
|
|
mylayoutbox = {}
|
|
require("stock.taglist")
|
|
require("stock.tasklist")
|
|
|
|
for s = 1, screen.count() do
|
|
|
|
-- Create a promptbox for each screen
|
|
mypromptbox[s] = awful.widget.prompt()
|
|
|
|
-- We need one layoutbox per screen.
|
|
mylayoutbox[s] = awful.widget.layoutbox(s)
|
|
mylayoutbox[s]:buttons(awful.util.table.join(
|
|
awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
|
|
awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
|
|
awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
|
|
awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
|
|
|
|
-- Create a taglist widget
|
|
mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
|
|
|
|
-- Create a tasklist widget
|
|
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
|
|
|
|
-- Create the wibox
|
|
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 })
|
|
|
|
-- Widgets that are aligned to the upper left
|
|
local left_layout = wibox.layout.fixed.horizontal()
|
|
left_layout:add(spr)
|
|
left_layout:add(mytaglist[s])
|
|
left_layout:add(mypromptbox[s])
|
|
left_layout:add(spr)
|
|
|
|
-- Widgets that are aligned to the upper right
|
|
local right_layout = wibox.layout.fixed.horizontal()
|
|
if s == 1 then right_layout:add(wibox.widget.systray()) end
|
|
right_layout:add(spr)
|
|
right_layout:add(arrl)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(mpdicon)
|
|
right_layout:add(mpdwidgetbg)
|
|
right_layout:add(arrl_dl)
|
|
right_layout:add(volicon)
|
|
right_layout:add(volumewidget)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(mailicon)
|
|
--right_layout:add(mailwidget)
|
|
right_layout:add(arrl_dl)
|
|
right_layout:add(memicon)
|
|
right_layout:add(memwidget)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(cpuicon)
|
|
right_layout:add(cpuwidget)
|
|
right_layout:add(arrl_dl)
|
|
right_layout:add(tempicon)
|
|
right_layout:add(tempwidget)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(fsicon)
|
|
right_layout:add(fswidgetbg)
|
|
right_layout:add(arrl_dl)
|
|
right_layout:add(baticon)
|
|
right_layout:add(batwidget)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(neticon)
|
|
right_layout:add(netwidget)
|
|
right_layout:add(arrl_dl)
|
|
right_layout:add(mytextclock)
|
|
right_layout:add(spr)
|
|
right_layout:add(arrl_ld)
|
|
right_layout:add(mylayoutbox[s])
|
|
|
|
-- Now bring it all together (with the tasklist in the middle)
|
|
local layout = wibox.layout.align.horizontal()
|
|
layout:set_left(left_layout)
|
|
layout:set_middle(mytasklist[s])
|
|
layout:set_right(right_layout)
|
|
mywibox[s]:set_widget(layout)
|
|
|
|
end
|
|
-- }}}
|
|
|
|
-- Bindings
|
|
require("settings.binds")
|
|
|
|
-- {{{ Key bindings
|
|
globalkeys = awful.util.table.join(globalkeys,
|
|
-- Show/Hide Wibox
|
|
awful.key({ modkey }, "b", function ()
|
|
mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
|
|
end),
|
|
|
|
-- Widgets popups
|
|
awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end),
|
|
awful.key({ altkey, }, "h", function () fswidget.show(7) end),
|
|
|
|
-- ALSA volume control
|
|
awful.key({ altkey }, "Up",
|
|
function ()
|
|
awful.util.spawn("amixer -q set Master 1%+")
|
|
volumewidget.update()
|
|
end),
|
|
awful.key({ altkey }, "Down",
|
|
function ()
|
|
awful.util.spawn("amixer -q set Master 1%-")
|
|
volumewidget.update()
|
|
end),
|
|
awful.key({ altkey }, "m",
|
|
function ()
|
|
awful.util.spawn("amixer -q set Master playback toggle")
|
|
volumewidget.update()
|
|
end),
|
|
awful.key({ altkey, "Control" }, "m",
|
|
function ()
|
|
awful.util.spawn("amixer -q set Master playback 100%")
|
|
volumewidget.update()
|
|
end)
|
|
)
|
|
|
|
-- Set keys
|
|
root.keys(globalkeys)
|
|
-- }}}
|
|
|
|
-- Rules
|
|
require("settings.rules")
|
|
|
|
-- Signals
|
|
require("stock.signals")
|