I want to use the virtual keyboard wvkbd GitHub on the lock screen with swaylock.
For example, I show a case of using the binary file wvkbd-mobintl, which can be compiled from the source like this.
$ make
=> wvkbd-mobintl is created.
Then, when running the following bash script, I want to show the virtual keyboard on the lock screen. Is it possible? If not, I would like to request this feature as a swaylock command-line option. What do you think?
$ cat lock.sh
#!/bin/bash
swaylock &
wvkbd-mobintl &
wait
I want to use the virtual keyboard wvkbd GitHub on the lock screen with swaylock.
For example, I show a case of using the binary file
wvkbd-mobintl, which can be compiled from the source like this.Then, when running the following bash script, I want to show the virtual keyboard on the lock screen. Is it possible? If not, I would like to request this feature as a swaylock command-line option. What do you think?