Skip to content

Commit

Permalink
Merge pull request #6 from actionless/devel
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
actionless committed Jul 7, 2014
2 parents 5631da8 + ec8008f commit 92bb1f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ theming:
fix:
- escape double quotes in async pipe receiver
- client menu on empty tag
-
- lots of minor fixes
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
awesome_config
==============

example of config/local.lua: https://gist.github.com/actionless/229eef7795915068bad9
6 changes: 5 additions & 1 deletion actionless/widgets/manage_client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@ local function worker(args)
manage_client.widget.text_widget:set_text(' x ')
manage_client.widget = common.decorated({widget=manage_client.widget})
manage_client.widget:set_color(args.color_n or 1)
manage_client.widget:connect_signal(
"mouse::enter", function () manage_client.widget:set_color('err') end)
manage_client.widget:connect_signal(
"mouse::leave", function () manage_client.widget:set_color(args.color_n or 1) end)
end

manage_client.widget:buttons(awful.util.table.join(
--awful.button({ }, 1, function () alsa.toggle() end),
--awful.button({ }, 5, function () alsa.down() end),
awful.button({ }, 1, function ()
naughty.notify({text='DEBUG'})
--naughty.notify({text='DEBUG'})
capi.client.focus:kill() end)
))

Expand Down
2 changes: 1 addition & 1 deletion themes/lcars_modern/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ theme.font = "Share Tech Mono Bold 10.5"
--theme.font = "Fira Mono 8"
--theme.sans_font = "Fira Sans Medium 10.5"
--theme.sans_font = "Kelly Slab Bold 10.5"
theme.sans_font = "Share Tech Bold 11"
theme.sans_font = "Share Tech Bold 10.5"
--theme.sans_font = theme.font

theme.fg_normal = theme.fg
Expand Down

0 comments on commit 92bb1f3

Please sign in to comment.