first commit
This commit is contained in:
commit
62434b1393
|
@ -0,0 +1 @@
|
|||
/build/src
|
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
systemctl --user $1 mswitch.service
|
|
@ -0,0 +1,2 @@
|
|||
echo "export XDG_RUNTIME_DIR=/run/user/\$(id -u)" >> /etc/skel/.profile
|
||||
echo "systemctl --no-block --user start xsession.target" >> /etc/skel/.xinitrc
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
export PACKAGE=mswitch
|
||||
export PORTS=$PACKAGE
|
||||
repackage -e
|
||||
|
||||
returnval=$?
|
||||
|
||||
exit $returnval
|
|
@ -0,0 +1 @@
|
|||
base
|
|
@ -0,0 +1 @@
|
|||
/etc/systemd/user/mswitch.service
|
|
@ -0,0 +1 @@
|
|||
/var/log/mswitch.log
|
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=mswitch
|
||||
PartOf=graphical-session.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/mswitch
|
||||
|
||||
[Install]
|
||||
WantedBy=xsession.target
|
|
@ -0,0 +1,3 @@
|
|||
[Unit]
|
||||
Description=X session managed by systemd
|
||||
BindsTo=graphical-session.target
|
Loading…
Reference in New Issue