migration
This commit is contained in:
10
X11/systemd/user/README.md
Normal file
10
X11/systemd/user/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
# User Systemd
|
||||
|
||||
Put services in `~/.config/systemd/user/*`
|
||||
|
||||
Run:
|
||||
|
||||
```
|
||||
systemctl --user enable myservice.service
|
||||
systemctl --user start myservice
|
||||
```
|
||||
9
X11/systemd/user/ibus-env.service
Normal file
9
X11/systemd/user/ibus-env.service
Normal file
@@ -0,0 +1,9 @@
|
||||
[Unit]
|
||||
Description=ibus environment initialization
|
||||
Before=xorg.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/usr/bin/systemctl --user set-environment XMODIFIERS=@im=ibus
|
||||
ExecStart=/usr/bin/systemctl --user set-environment GTK_IM_MODULE=ibus
|
||||
ExecStart=/usr/bin/systemctl --user set-environment QT_IM_MODULE=ibus
|
||||
11
X11/systemd/user/ibus.service
Normal file
11
X11/systemd/user/ibus.service
Normal file
@@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=ibus daemon
|
||||
Wants=ibus-env.service
|
||||
After=xorg.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/ibus-daemon
|
||||
Restart=on-abort
|
||||
|
||||
[Install]
|
||||
WantedBy=xorg.target
|
||||
Reference in New Issue
Block a user