You are not logged in.
LuaLock is not working with xautolock. I'd added such string to .xinitrc
xautolock -time 10 -locker "lualock -n" &
When system was started I launched xautolock -locknow and nothing happens
In the process lists I see that lualock -n was started. But there no lock screen (
Any ideas how fix this?
Offline
Problem was resolved. Issue appeared due to fact that xautolock close stderr in which appeared such message:
(lualock:4325): Gtk-WARNING **: Theme parsing error: gnome-terminal.css:3:8: 'text' is not a valid property name
Resolve this in such way:
Remove xautolock from .xinitrc and add it to XFCE autostart with such command line:
bash -c "sleep 20s; xautolock -time 10 -locker \"/usr/bin/lualock -n\" -nowlocker \"/usr/bin/lualock -n\" -noclose 2> ~/.xlock_errors 1> ~/.xlock_log"
Offline
I have another question. How I can add to any place of locker display current keyboard layout or may be keyboard switcher?
Offline
Add the keyboard layout to the simple-black theme. You can look at the code here - https://gist.github.com/2226394
Offline