These are are some notes I put together on butchering the rectangular dishy cable.
FOLLOW THESE GUIDELINES AT YOUR OWN RISK. I TAKE NO RESPONSIBILITY FOR ANY DAMAGE OR INJURY YOU SUSTAIN FROM FOLLOWING OR NOT FOLLOWING THESE GUIDELINES.
| #!/bin/bash | |
| RAW_STATUS=$(python3 ~/src/starlink-grpc-tools/dish_grpc_text.py -s 2 status) | |
| STARLINK_CONNECTED=$(echo "$RAW_STATUS" | cut -f 5 -d',') | |
| if [[ "${STARLINK_CONNECTED}" == "CONNECTED" ]]; then | |
| STARLINK_CONNECTED='${color green}'"CONNECTED"'${color}' | |
| elif [[ "${STARLINK_CONNECTED}" == "OFFLINE" ]]; then | |
| STARLINK_CONNECTED='${color red}'"OFFLINE"'${color}' | |
| else | |
| STARLINK_CONNECTED='${color yellow}'"${STARLINK_CONNECTED}"'${color}' |
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 1.8, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], |
| /* BSPACM - nRF51 DS18B20 OneWire interface | |
| * | |
| * Copyright 2012-2015, Peter A. Bigot | |
| * | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * | |
| * * Redistributions of source code must retain the above copyright notice, |