diff options
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 53 |
1 files changed, 20 insertions, 33 deletions
@@ -56,6 +56,22 @@ ______________ systemctl --user start compton systemctl --user enable compton +conky@ --user +______________ +| The |conky| user service needs a properly exported *$DISPLAY* variable to work. You can set this in your |systemd-user.conf|: + + .. code:: ini + + DefaultEnvironment=DISPLAY=:0 + +| The |conky| user service starts conky scripts by name. This means, the word after the *@* directly relates to configuration files in your conky configuration directory (*~/.config/conky/*) +| You can start and enable it like any other systemd user service, by supplying it with a configuration file name: + + .. code:: bash + + systemctl --user start conky@my-configuration-name + systemctl --user enable conky@my-configuration-name + cpupower-rt ___________ | The cpupower package on |arch_linux| has been |cpupower_feature_request|, to allow easier appliance of CPU settings based on other profiles, than the system's default. @@ -69,25 +85,6 @@ ___________ systemctl start cpupower-rt systemctl enable cpupower-rt -gpg-agent --user -________________ -| The systemd user service *gpg-agent.service* starts the gpg-agent and thus makes it independent of a certain session the user runs. The *homedir* for GnuPG is set to be in *~/.gnupg* (default). -| Therefore make sure to set your *GPG_TTY* and *GPG_AGENT_INFO* |environment_variable| for your |bash| or |zsh| (or whatever you run) to the following - - .. code:: bash - - export GPG_TTY=$(tty) - export GPG_AGENT_INFO="" - -| **Note**: These settings specifically apply to gnupg > 2.1! -| Otherwise you can start and enable it like any other systemd user service: - - .. code:: bash - - systemctl --user start gpg-agent - systemctl --user enable gpg-agent - - irssi --user ____________ | The systemd user service *irssi.service* starts the |irc| client |irssi| in a separate |tmux| environment for the current user. @@ -218,16 +215,6 @@ ___________ tmux attach -update-mirrorlist -_________________ -| |update-mirrorlist| is a script to update the system's |pacman| mirrorlist according to some predefined settings. Here it is started on a weekly basis according to a timer unit. -| To start/enable it, just do: - - .. code:: bash - - systemctl start update-mirrorlist.timer - systemctl enable update-mirrorlist.timer - weechat --user ______________ | The systemd user service *weechat.service* starts the |irc| client |weechat| in a separate |tmux| environment for the current user. @@ -305,6 +292,10 @@ ______________ <a href="https://github.com/chjj/compton/" target="_blank">compton</a> +.. |conky| raw:: html + + <a href="https://github.com/brndnmtthws/conky" target="_blank">conky</a> + .. |real-time_kernel| raw:: html <a href="https://www.kernel.org/pub/linux/kernel/projects/rt/" target="_blank">real-time kernel</a> @@ -365,10 +356,6 @@ ______________ <a href="http://www.freedesktop.org/software/systemd/man/loginctl.html" target="_blank">loginctl</a> -.. |update-mirrorlist| raw:: html - - <a href="https://github.com/ushis/update-mirrorlist" target="_blank">update-mirrorlist</a> - .. |pacman| raw:: html <a href="https://en.wikipedia.org/wiki/Arch_Linux#Pacman" target="_blank">pacman</a> |