# <xbar.abouturl>https://r.bdr.sh/swiftbar_scripts.html</xbar.abouturl>
# <xbar.var>string(VAR_SOURCEHUT_API_TOKEN): Your sourcehut API Token.</xbar.var>
# <xbar.var>number(VAR_BUILD_COUNT=10): How many items to show.</xbar.var>
+# <xbar.var>string(VAR_RUN_ON_FOCUS): Focus in which to run.</xbar.var>
+# <xbar.var>string(VAR_HALT_ON_FOCUS): Focus in which to halt.</xbar.var>
# <swiftbar.hideRunInTerminal>true</swiftbar.hideRunInTerminal>
-# <swiftbar.environment>VAR_SOURCEHUT_API_TOKEN=no, VAR_BUILD_COUNT=9</swiftbar.environment>
+# <swiftbar.environment>VAR_SOURCEHUT_API_TOKEN=no, VAR_BUILD_COUNT=9, VAR_RUN_ON_FOCUS=, VAR_HALT_ON_FOCUS=</swiftbar.environment>
###############################################################################
# The Variables
###############################################################################
VAR_SOURCEHUT_API_TOKEN=${VAR_SOURCEHUT_API_TOKEN:-'ADD YOUR TOKEN HERE'}
VAR_BUILD_COUNT=${VAR_BUILD_COUNT:-10}
+VAR_RUN_ON_FOCUS=
+VAR_HALT_ON_FOCUS=
+
+###############################################################################
+# Focus Check
+###############################################################################
+
+if [[ -f "${BASH_SOURCE%/*}/focus.utils.sh" ]]; then
+ source "${BASH_SOURCE%/*}/focus.utils.sh"
+ focus_check
+fi
###############################################################################
# The Code