diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-22 11:09:07 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-22 11:14:15 +0100 |
commit | d42c2a50c4eb491cf56097180540fe6859323101 (patch) | |
tree | 643f5e5ae174d1c0c8bf78ddfd2bac603fdb67ab | |
parent | 0f0d8e09010b938a32a279a35ccf2377b3ba4d2a (diff) | |
download | dotfiles-d42c2a50c4eb491cf56097180540fe6859323101.tar.gz dotfiles-d42c2a50c4eb491cf56097180540fe6859323101.tar.bz2 dotfiles-d42c2a50c4eb491cf56097180540fe6859323101.zip |
systemd: Replace xressources by xrdb service
l--------- | .config/systemd/user/graphical.target.wants/xrdb.service | 1 | ||||
l--------- | .config/systemd/user/graphical.target.wants/xressources.service | 1 | ||||
-rw-r--r-- | .config/systemd/user/xrdb.service | 11 | ||||
-rw-r--r-- | .config/systemd/user/xressources.service | 11 |
4 files changed, 12 insertions, 12 deletions
diff --git a/.config/systemd/user/graphical.target.wants/xrdb.service b/.config/systemd/user/graphical.target.wants/xrdb.service new file mode 120000 index 0000000..c0a78b7 --- /dev/null +++ b/.config/systemd/user/graphical.target.wants/xrdb.service @@ -0,0 +1 @@ +/home/ben/.config/systemd/user/xrdb.service
\ No newline at end of file diff --git a/.config/systemd/user/graphical.target.wants/xressources.service b/.config/systemd/user/graphical.target.wants/xressources.service deleted file mode 120000 index 8602d06..0000000 --- a/.config/systemd/user/graphical.target.wants/xressources.service +++ /dev/null @@ -1 +0,0 @@ -/home/ben/.config/systemd/user/xressources.service
\ No newline at end of file diff --git a/.config/systemd/user/xrdb.service b/.config/systemd/user/xrdb.service new file mode 100644 index 0000000..536bff0 --- /dev/null +++ b/.config/systemd/user/xrdb.service @@ -0,0 +1,11 @@ +[Unit] +Description=Load X ressources +After=xorg.target +Wants=xorg.target + +[Service] +Type=oneshot +ExecStart=/bin/sh %h/.scripts/set_xressources.sh + +[Install] +WantedBy=graphical.target diff --git a/.config/systemd/user/xressources.service b/.config/systemd/user/xressources.service deleted file mode 100644 index 6bce40a..0000000 --- a/.config/systemd/user/xressources.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Xorg Ressources -After=xorg.target -Wants=xorg.target - -[Service] -Type=simple -ExecStart=/home/ben/.scripts/set_xressources.sh - -[Install] -WantedBy=graphical.target |