dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: d9b81b93d1e71548c4d084aa1d11d39a17b1b011
Parent: a24ba0523a2978b807b87179c5ccff01420515be
Author: Randy Palamar
Date:   Sat,  6 May 2023 20:24:28 -0600

xinitrc: pidof -q not -s

Diffstat:
M.config/x11/xinitrc | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc @@ -1,13 +1,13 @@ bgs -z ~/.config/h_wallpaper.jpg [ -z $SSH_AGENT_PID ] && eval $(ssh-agent) -pidof -s gpg-agent || gpg-agent --daemon +pidof -q gpg-agent || gpg-agent --daemon -pidof -s cron || cron -f ~/.config/cron/crontab +pidof -q cron || cron -f ~/.config/cron/crontab as="mpd mpdidle status xbanish" for cmd in $as; do - pidof -s "$cmd" || "$cmd" & + pidof -q "$cmd" || "$cmd" & done >/dev/null 2>&1 xset s off -dpms