diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-06T22·21+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-07T11·01+0000 |
commit | c15a393112e1b7ead683955148fa527c0d28160f (patch) | |
tree | 72120d8466513872778efd321c516b1ad444684e /configs/shared/.xsessionrc.shared | |
parent | 185fa0dda551946420e42a175d75afd28e4b8356 (diff) |
Start lorri daemon in ~/.profile
This does two things: 1. Starts lorri daemon 2. Moves ssh-agent and docker daemon startup calls to ~/.profile I'm still not entirely sure when ~/.profile is evaluated... I'd like to use systemd to startup and manage these background services, but I currently don't have a strong enough desire to do this.
Diffstat (limited to 'configs/shared/.xsessionrc.shared')
-rw-r--r-- | configs/shared/.xsessionrc.shared | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configs/shared/.xsessionrc.shared b/configs/shared/.xsessionrc.shared index 4df221df65a6..d9c77e3b37d8 100644 --- a/configs/shared/.xsessionrc.shared +++ b/configs/shared/.xsessionrc.shared @@ -1,4 +1,5 @@ #!/bin/sh + # Might be unnecessary... . ~/.profile @@ -10,12 +11,6 @@ xsetroot -solid "#333333" # Set fallback cursor. xsetroot -cursor_name left_ptr -# Start ssh-agent -eval "$(ssh-agent -s)" - -# TODO: Prefer `systemctl start docker.service` -dockerd & - # start compton for shadows, transparency, fading, etc. # TODO: Consider starting this with `systemctl --user enable compton.service` compton & |