]> git.r.bdr.sh - rbdr/r.bdr.sh/blob - swiftbar_scripts.gmi
030b526f5c95e259cd24b90984a96d3b297132b4
[rbdr/r.bdr.sh] / swiftbar_scripts.gmi
1 --- title: swiftbar_scripts.html
2 --- description: Assorted SwiftBar scripts and utilities I've built.
3 ## SwiftBar Scripts
4
5 This page holds the SwiftBar[1] / xbar scripts I've made. Since I use the first
6 one, I'm not sure whether they work with xbar[2], but should probably be OK.
7
8 => https://swiftbar.app/ [1] SwiftBar
9 => https://xbarapp.com/ [2] Xbar
10
11 ## Sourcehut Builds
12
13 View the status of your last few builds in sourcehut. You can open the URL by clicking on the menu items. The count of failed, pending and successful runs of the last 15m are shown next to the icon.
14
15 ### Dependencies
16
17 You must have jq and curl installed.
18
19 ### Usage
20
21 To use the plugin you'll need to set your sourcehut token in the VAR_SOURCEHUT_API_TOKEN variable (See the 'ADD YOUR TOKEN HERE' string). You can also control how many builds to show by changing the VAR_BUILD_COUNT variable (defaults to 5)
22
23 ### Focus Checks
24
25 This script includes focus checks (See focus checks column at the end of this page on how to use them.)
26
27 => ./swiftbar/sourcehut-builds.1m.sh ⧇ sourcehut-builds.1m.sh
28
29 ## Monitorcito Bar
30
31 View your monitorcito[3] tracked services at a glance. ○ is shown if everything is OK, and ╳ if at least one service is failing. Clicking on an item refreshes the status.
32
33 ### Dependencies
34
35 You must have jq and curl installed.
36
37 ### Usage
38
39 You can control the URL of the monitorcito instance by adjusting VAR_MONITORCITO_URL
40
41 ### Focus Checks
42
43 This script includes focus checks (See focus checks column at the end of this page on how to use them.)
44
45 => https://git.sr.ht/~rbdr/monitorcito [3] Monitorcito
46 => ./swiftbar/monitorcito.1m.sh ⧇ monitorcito.1m.sh
47
48 ## Focus Checks
49
50 This is a utility that allows other scripts to conditionally run or halt based on which focus mode is enabled.
51
52 ### Dependencies
53
54 You must have jq installed .
55
56 ### Usage
57
58 To enable the focus checks, you need to pass separated strings to VAR_RUN_ON_FOCUS or VAR_HALT_ON_FOCUS. For example, this will only run the script if "Personal" or "Do Not Disturb" are active:
59
60 ```
61 VAR_RUN_ON_FOCUS="Personal|Do Not Disturb"
62 ```
63
64 And this will halt the script only if the focus is Work
65
66 ```
67 VAR_HALT_ON_FOCUS="Work"
68 ```
69
70 If neither variable is set, then all checks will be disabled.
71
72 The script will only appear or disappear when it's next refreshed. If you want this faster, trigger a full refresh of your plugins.
73
74 ### Setup
75
76 Download and copy focus.utils.sh to your SwiftBar directory on the same directory as the scripts that use this functionality.
77
78 ### Permissions
79
80 For the script to correctly get focus data, it requires full disk access. You can do this by going to System Settings > Privacy & Security > Full Disk Access, and adding SwiftBar to the list.
81
82 ### For Developers
83
84 If you want to include this functionality in your script, check the script comments for instructions on how to use it in your scripts.
85
86 => ./swiftbar/focus.utils.sh ⧇ focus.utils.sh