diff -Nru regolith-conky-config-1.13/conky-toggle.sh regolith-conky-config-1.14/conky-toggle.sh --- regolith-conky-config-1.13/conky-toggle.sh 2019-04-03 05:06:38.000000000 +0000 +++ regolith-conky-config-1.14/conky-toggle.sh 2019-08-16 15:41:36.000000000 +0000 @@ -1,8 +1,5 @@ #!/bin/bash - -# Check if gedit is running -# -x flag only match processes whose name (or command line if -f is -# specified) exactly match the pattern. +# If conky is running, kill it. Otherwise start it. if pgrep -x "conky" > /dev/null then diff -Nru regolith-conky-config-1.13/debian/changelog regolith-conky-config-1.14/debian/changelog --- regolith-conky-config-1.13/debian/changelog 2019-07-04 18:23:24.000000000 +0000 +++ regolith-conky-config-1.14/debian/changelog 2019-08-16 15:42:07.000000000 +0000 @@ -1,3 +1,11 @@ +regolith-conky-config (1.14-1ubuntu1ppa1) disco; urgency=medium + + * Move flag directory. + * Cleanup comments. + * Do not launch conky per i3-wm version, just once. + + -- Ken Gilmer Fri, 16 Aug 2019 08:42:07 -0700 + regolith-conky-config (1.13-1ubuntu1ppa1) bionic; urgency=medium * Incorporate shortcut improvements by @eldelacajita. Fixes diff -Nru regolith-conky-config-1.13/regolith-ftue.sh regolith-conky-config-1.14/regolith-ftue.sh --- regolith-conky-config-1.13/regolith-ftue.sh 2019-07-03 04:51:14.000000000 +0000 +++ regolith-conky-config-1.14/regolith-ftue.sh 2019-08-16 15:40:48.000000000 +0000 @@ -1,13 +1,15 @@ #!/bin/bash # This script will be called after i3 starts. It's purpose is to do things -# that only make sense for the first time the user starts Regolith -# for a particular version. If this involves more than conky +# that only make sense for the first time the user starts Regolith. +# If this involves more than conky # in the future it should be pulled out into a separate package. -PKG_VERSION=`dpkg -s regolith-i3-wm | grep '^Version:' | awk '{print $2}'` -UPDATE_FLAG_PATH="$HOME/.config/i3-regolith/ftue-flag-$PKG_VERSION" +UPDATE_FLAG_DIR="$HOME/.config/regolith/flags" +UPDATE_FLAG_PATH="$UPDATE_FLAG_DIR/show-shortcuts" if [ ! -f $UPDATE_FLAG_PATH ]; then /usr/bin/conky-toggle.sh + + mkdir -p $UPDATE_FLAG_DIR touch $UPDATE_FLAG_PATH fi