diff options
author | joe <rbo@gmx.us> | 2025-09-14 15:15:26 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-14 15:15:26 +0200 |
commit | 4abd3a037681f96ea9015955afc4867588941b0a (patch) | |
tree | 0c6aa9c4ede6e10aa88996d9ec4aafa2a7f54191 /.config | |
parent | up (diff) | |
download | dotfiles-bsd-4abd3a037681f96ea9015955afc4867588941b0a.tar.gz dotfiles-bsd-4abd3a037681f96ea9015955afc4867588941b0a.tar.bz2 dotfiles-bsd-4abd3a037681f96ea9015955afc4867588941b0a.tar.xz dotfiles-bsd-4abd3a037681f96ea9015955afc4867588941b0a.tar.zst dotfiles-bsd-4abd3a037681f96ea9015955afc4867588941b0a.zip |
up
Diffstat (limited to '.config')
-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 45af76c..5e0efb3 100644 --- a/.config/x11/xinitrc +++ b/.config/x11/xinitrc @@ -29,7 +29,7 @@ esac $ping && git --git-dir="$HOME"/docs/dotfiles-bsd --work-tree="$HOME" pull startif() { - pgrep "$(basename "$1")" >/dev/null || "$@" >/dev/null 2>&1 & + pidof "$(basename "$1")" >/dev/null || $@ >/dev/null 2>&1 & } dunst_shit() { @@ -46,9 +46,9 @@ dunst_shit() { start_apps() { CM_SELECTIONS=clipboard startif clipmenud - startif ckb-next --background startif copyq startif nextcloud + startif ckb-next --background # [ $host = "po-rbo" ] && QT_SCALE_FACTOR=1.35 startif rclone-browser } |