1
0
Fork 0

move the workaround for awesome from files that are managed by the package manager to the wm config

This commit is contained in:
Von Random 2015-01-21 02:08:40 +03:00
parent 609609c258
commit df1927e497

5
rc.lua
View file

@ -662,8 +662,13 @@ client.connect_signal('unfocus', function(c) c.border_color = beautiful.border_n
-- {{{ Autostart -- {{{ Autostart
-- don't forget you sync this file -- don't forget you sync this file
-- this shit runs every time you restart your wm, dumbass. -- this shit runs every time you restart your wm, dumbass.
---- set keyboard layouts
awful.util.spawn_with_shell('setxkbmap -layout us,ru -variant altgr-intl,typewriter -option ctrl:nocaps,grp:win_space_toggle,compose:menu,grp_led:scroll') awful.util.spawn_with_shell('setxkbmap -layout us,ru -variant altgr-intl,typewriter -option ctrl:nocaps,grp:win_space_toggle,compose:menu,grp_led:scroll')
---- apply the workaround to make mouse work outside en-us keyboard layout
awful.util.spawn_with_shell('xkbcomp $DISPLAY - | egrep -v "group . = AltGr;" | xkbcomp - $DISPLAY')
---- populate xrdb with .Xresources config
awful.util.spawn_with_shell('xrdb /home/von/.Xresources') awful.util.spawn_with_shell('xrdb /home/von/.Xresources')
---- execute all the other shit, installation specific
if exists('/home/von/.autostart') then if exists('/home/von/.autostart') then
awful.util.spawn_with_shell('/home/von/.autostart') awful.util.spawn_with_shell('/home/von/.autostart')
end end