This is my first BTT plugin/preset. Since the community is already so great at making visually pleasing presets, I thought I'd focus on function rather than form. As an audiophile, I wanted my project to be music-related, so I ended up making "Kashi".
Kashi is a widget that display the lyrics of the current song playing on Spotify, iTunes, or Youtube on the Touch Bar. Here are some videos of it in action (may take a minute to load):
Spotify & iTunes:
YouTube:
Set-up is explained in the ReadMe, but basically there are a few Python 3 modules that need to be installed for the widget to work.
Thanks for taking the time to read this!
All questions and comments are welcome.
@nemobushido Hi I'm super excited to get your preset running. I either get an error on my touch bar that 'false is not defined', easily fixed by changed 'false' to 'False'. After that, the module just doesn't load on the touch bar.
@lithedreamer
Just confirming, but have you installed Python 3 and the required dependencies? You may need to install them globally to access them from BTT.
Also, check that the line below points to the proper path where your python3 installation lives.
Thanks for getting back to me. Testing the print statements: all of them work and dispense the correct lyrics in terminal, which seems to suggest that the python modules are set up correctly (the path for python3 is also correct). Copying and pasting the JSON into the settings seems to create the same result: just blank Touch Bar space, not even a button as far as I can tell.
@lithedreamer
I see. Then it must be how your bar is set up. Can you make sure that the widget is checked "Visible", item placement is "Scrollable Main Container", and that no other widgets occupy the same space? Having a left and a right one is OK.
Hm, I'm a bit stumped. Thanks for your persistence.
Could you try creating the widget from scratch? Create a new "Run Shell Script And Show Return Value" script widget and confirm that it's showing text. Then copy+paste the .py script (Parameter = "-c").
Hi, trying to get this to work and I keep running into this error.
File "kashi.py", line 214, in
main()
File "kashi.py", line 20, in main
player_data)
File "kashi.py", line 135, in processPlayerData
player_artist = player_data[1].lower()
Seems like the "player_data" array is completely empty in your case. That is strange because the "getBrowserAndPlayerData" function should default values to "none" if no player or browser is running.
Which means you must be having problems with the osascript module. It is responsible for running the applescripts which get the player/browser data. Make sure that all osascript and all other Python modules are correctly installed.
The best way to do this is to test the script on command line and see if your Python spits any error about the modules. E.g., you can add the line "print(player_data)" to see what is in that list.
Also, very important is to make sure your launch path, parameter, and Python path are properly specified. For me, these are:
I've been trying everything I can think of. I created a new partition and reinstalled osx along with python and the modules. Everything seems to point to the right place. When playing around in idle with the module, it sees the functions and i can call them but it cant see the data. e.g. when I called printWisdom() it recognizes that it needs an input but cant seem to get one
The printWisdom function just prints a music-related quote (static data) if there are no hits from the lyrics API, so it doesn't tell much about your configuration.. The key here is that you can't see the player data. Is the py script able to spit out the player data? Try printing the variable "player_data" (or "browser_data" if it's Youtube) after line 17 and see what comes out.
I'm also unsure if your Python is configured correctly with BetterTouchTool. You can test this simply by running a script as simple as print("Testing Python") and see if it shows up on the bar.
Let me know how it goes! Feel free to post some screenshots too. If you need remote assistance, I don't mind helping you out. Just let me know.
I have been getting this error and I'm really confused about it if anyone can help me. I would be appreciated.
File "", line 35
"BTTTouchBarShellScriptString": "/usr/bin/python3 -m touchbar_lyric]”,
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "", line 202, in
File "", line 19, in main
File "", line 130, in processPlayerData
IndexError: list index out of range
my launch path and parameters are correct per your instructions above. Where do I enter the PYTHONPATH lines? I tried with and without that line in the second paramters input to no avail.
I'm excited for this Preset, any help would be greatly appreciated
I updated the path defaults, so please try again with the updated JSON file. Launch Path no longer refers to the environment variable and directly references the install path. Also, "PYTHON=" was not necessary. I updated the README to show this.
I tried with the new JSON and got Error/Nothing was returned.
I'm running Catalina and installed python3 via homebrew.
My launch path for python3 is /usr/local/bin (determined via running which python3) and my site packages path is /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages which I entered in the second params line. (I followed the directions here: How do I find the location of my Python site-packages directory? - Stack Overflow)
I'm trying with Apple Music. I open Music, start a song then use Run Script Now in the BTT config pane.
Any suggestions on different approaches I can try? Happy to add any debug lines into the python script to help resolve
I'm a bit confused -- in the readme, it says to import the json file into btt... what does that mean specifically? i couldn't find any import button for json files, just licenses and presets.
Also, in the "Script:" part of the shell script/task trigger, do we paste the contents of the json file? Or of the .py file?
BetterTouchTool allows you to import widgets by pasting in the parameters/properties in JSON format.
So by "import", it means to just copy and paste the contents of the Kashi JSON (Select All, Copy). If it doesn't show up when you paste, make sure you have focus on the trigger column pane by clicking it first.