1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-06-18 05:06:38 +02:00

Updated mainprofile, removed autoindent in vim. Set up awesome.lua with xinitrc. See if it works

This commit is contained in:
Eric-Teunis de Boone 2016-10-06 03:21:13 +02:00
parent 3bbb4d6c9a
commit cc8ca493c8
15 changed files with 600 additions and 507 deletions

25
awesome/rules.lua Normal file
View file

@ -0,0 +1,25 @@
-- Awesome Window Manager
-- Rules
-- {{{ Rules
-- Rules to apply to new clients (through the "manage" signal).
awful.rules.rules = {
-- All clients will match this rule.
{ rule = { },
properties = { border_width = beautiful.border_width,
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
raise = true,
keys = clientkeys,
buttons = clientbuttons } },
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
-- Set Firefox to always map on tags number 2 of screen 1.
--{ rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } },
}
-- }}}