diff options
Diffstat (limited to '.config')
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 |