vimrc, awesome

This commit is contained in:
Simonas Narbutas
2018-08-06 15:13:54 +02:00
parent 3a64720df4
commit 37c56f3d99
2 changed files with 4 additions and 4 deletions

2
.vimrc
View File

@@ -4,7 +4,7 @@ call pathogen#helptags()
filetype plugin on " Enable filetype plugins filetype plugin on " Enable filetype plugins
if &diff if &diff
colorscheme zellner colorscheme slate
endif endif
set nocompatible set nocompatible
set hidden " Allow buffer switching without saving set hidden " Allow buffer switching without saving

View File

@@ -352,13 +352,13 @@ globalkeys = gears.table.join(
awful.key({}, "XF86MonBrightnessUp", awful.key({}, "XF86MonBrightnessUp",
function () function ()
awful.spawn.easy_async("/home/snarbutas/.bin/brightness +750", function(stdout, stderr, reason, exit_code) awful.spawn.easy_async("/home/snarbutas/.bin/brightness +750", function(stdout, stderr, reason, exit_code)
naughty.notify {title = "💡", text = stdout, timeout = 0.5} naughty.notify {icon = "/home/snarbutas/Pictures/icons/wbulb.png", icon_size = 16, text = stdout, timeout = 0.5}
end) end)
end), end),
awful.key({}, "XF86MonBrightnessDown", awful.key({}, "XF86MonBrightnessDown",
function () function ()
awful.spawn.easy_async("/home/snarbutas/.bin/brightness -750", function(stdout, stderr, reason, exit_code) awful.spawn.easy_async("/home/snarbutas/.bin/brightness -750", function(stdout, stderr, reason, exit_code)
naughty.notify {title = "💡", text = stdout, timeout = 0.5} naughty.notify {icon = "/home/snarbutas/Pictures/icons/wbulb.png", icon_size = 16, text = stdout, timeout = 0.5}
end) end)
end), end),
-- Extend monitor -- Extend monitor