sudo apt-get install python3-pip
sudo pip3 install virtualenv
#!/usr/bin/env python3 | |
""" | |
=============== DISCLAIMER =================== | |
The original library (blinkt) belongs to Pimoroni Company. | |
https://github.com/pimoroni/blinkt. | |
I just adapted some examples to meet my needs. | |
=============== END DISCLAIMER =============== |
"workbench.colorCustomizations": { | |
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
"contrastActiveBorder": "", | |
"contrastBorder": "", | |
// Base Colors | |
"focusBorder": "", | |
"foreground": "", | |
"widget.shadow": "", | |
"selection.background": "", | |
"descriptionForeground": "", |
[Unit] | |
Description=Some description | |
After=network.target | |
[Service] | |
Type=simple | |
User=user | |
WorkingDirectory=/home/user/somedir | |
Environment=PYTHONPATH=/home/user/somedir | |
ExecStart=/home/user/venv/bin/python script.py |