Created
August 29, 2017 07:25
-
-
Save elw00d/3628c75192d332250330d9a8592ed46b to your computer and use it in GitHub Desktop.
piece of rc.lua at the end of my awesome config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- После запуска unity-settings-daemon нужно некоторое время подождать, прежде чем | |
-- менять настройки клавиатуры, иначе unity-settings-daemon может поменять их обратно | |
-- Наверное, можно как-то по логам демона понять, что он запустился, но пока сделал по-простому | |
os.execute("pgrep unity-settings-daemon || unity-settings-daemon&") | |
os.execute("sleep 1.5") | |
os.execute("setxkbmap -layout \'\' -option") | |
os.execute("setxkbmap -layout \'us,ru\' -option \'grp:ctrl_shift_toggle\'") | |
os.execute("setxkbmap -option compose:ralt") | |
-- Start nm-applet if not started already | |
os.execute("pgrep nm-applet || nm-applet&") | |
os.execute("xset r rate 220 30") | |
os.execute("gnome-screensaver-command --exit") | |
awful.spawn.with_shell("dropbox start") | |
os.execute("indicator-multiload --display=:0 --trayicon&") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment