diff options
| author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-23 02:27:49 +0200 | 
|---|---|---|
| committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-23 02:27:49 +0200 | 
| commit | ba06b5fb8c054f769c303c8b02a08502d6067210 (patch) | |
| tree | 4e44baf8a095cd2df863ad47e50c900660c9656e /.config/x11/xinitrc | |
| parent | new package (diff) | |
| download | dotfiles-bsd-ba06b5fb8c054f769c303c8b02a08502d6067210.tar.gz dotfiles-bsd-ba06b5fb8c054f769c303c8b02a08502d6067210.tar.bz2 dotfiles-bsd-ba06b5fb8c054f769c303c8b02a08502d6067210.tar.xz dotfiles-bsd-ba06b5fb8c054f769c303c8b02a08502d6067210.tar.zst dotfiles-bsd-ba06b5fb8c054f769c303c8b02a08502d6067210.zip | |
update
Diffstat (limited to '')
| -rw-r--r-- | .config/x11/xinitrc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/.config/x11/xinitrc b/.config/x11/xinitrc index 5d1eaf3..5b68e7f 100644 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -1,7 +1,7 @@  # vim: filetype=sh  startif() { -	if ! pgrep "$1"; then +	if ! pgrep "$1" >/dev/null; then  		bsdsetsid "$@" >/dev/null 2>&1  	fi  } @@ -14,7 +14,7 @@ startif musicpd  startif mpd-notification  startif lowbat  startif emacs --daemon -notify-send  -u low -t 2000 'emacs' '  Emacs daemonized' +notify-send -u low -t 2000 'emacs' '  Emacs daemonized'  cd /home/jozan  xrdb /home/jozan/.config/x11/xresources  notify-send -u normal 'Welcome' "  Welcome back, partner\!" | 
