0
I want to input Korean language on Ubuntu 18.04, electron application.
When the electron application is started on terminal by using yarn start
, Korean language input works well via ibus
.
But, when it is started by systemctl, Korean language input is not work.
Are there environment setting for input method of systemctl service?
The systemctl service is following.
[Unit]
After=multi-user.target
[Service]
User=my
Type=idle
WorkingDirectory=/home/my/electonapp
ExecStart=/usr/bin/yarn start
Restart=always
Environment=DISPLAY=:0.0
RestartSec=30
[Install]
WantedBy=multi-user.target
Oh, thanks a lot. This is exactly what I want to know. I already knew use X11-application is not good on systemctl, but didn't know how avoid it. systemd's logging and management is necessary for system. I'm newbie, I will vote up when I can it ;) – hando han – 2019-02-18T07:59:55.727