Cryptocurrency on Raspberry PI: Crypto assets tracker.
Tech Slice
This video is a quick tutorial on how to track Cryptocurrency prices on an always on screen using a Raspberry PI.
- This is not a sponsored video.
- This channel is not affiliated with any links or products mentioned in this video.
- Statements made in this video are not an endorsement or a promotion of any mentioned product, they are solely for training and demonstration purposes.
Items used in the video:
- Raspberry PI4
- 32” TV with HDMI port Links used in the video:
- Cryptowat.ch . com
Commands used in the video:
Sudo apt update
Sudo apt upgrade
sudo apt-get install xdotool unclutter sed
nano /home/pi/kiosk.sh
#!/bin/bash xset s noblank xset s off xset -dpms
unclutter -idle 0.5 -root &
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' /home/pi/.config/chromium/Default/Preferences sed -i 's/"exit_type":"Crashed"/"exit_type":"Normal"/' /home/pi/.config/chromium/Default/Preferences
/usr/bin/chromium-browser --noerrdialogs --disable-infobars --kiosk https://cryptowat.ch/
while true; do xdotool keydown ctrl+Tab; xdotool keyup ctrl+Tab; sleep 15 done
xdotool keydown ctrl+r; xdotool keyup ctrl+r;
echo $DISPLAY
sudo nano /lib/systemd/system/kiosk.service
[Unit] Description=Chromium Kiosk Wants=graphical.target After=graphical.target
[Service] Environment=DISPLAY=:0.0 Environment=XAUTHORITY=/home/pi/.Xauthority Type=simple ExecStart=/bin/bash /home/pi/kiosk.sh Restart=on-abort User=pi Group=pi
[Install] WantedBy=graphical.target
sudo systemctl enable kiosk.service
sudo systemctl start kiosk.service ... https://www.youtube.com/watch?v=7o5Inxx7tKU
30424718 Bytes