https://github.com/kahing/goofys
apt-get install fuse
wget https://bit.ly/goofys-latest
chmod +x goofys-latest
cp goofys-latest /usr/local/bin/goofys
https://github.com/kahing/goofys
apt-get install fuse
wget https://bit.ly/goofys-latest
chmod +x goofys-latest
cp goofys-latest /usr/local/bin/goofys
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
''' | |
This is a little script to download every song from every playlist | |
if your Google Play Music account. Songs are organized as follows: | |
<playlist>/<artist>/<album>/<song>.mp3 | |
I Highly recomend putting this file in your %USER%\Music folder | |
before running. |
#!/bin/bash | |
# Auto rotate screen based on device orientation | |
# based on https://linuxappfinder.com/blog/auto_screen_rotation_in_ubuntu | |
# install | |
# 1. apt-get install iio-sensor-proxy inotify-tools | |
# 2. add script to autostart | |
# Receives input from monitor-sensor (part of iio-sensor-proxy package) | |
# Screen orientation and launcher location is set based upon accelerometer position |
#!/usr/bin/env python3 | |
from gmusicapi import Musicmanager # pip install gmusicapi | |
from glob import glob | |
from argparse import ArgumentParser | |
from sys import stderr | |
from urllib.parse import quote_plus | |
m = Musicmanager() | |
if not m.login(): | |
m.perform_oauth() |
This is free and unencumbered software released into the public domain. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the | |
software to the public domain. We make this dedication for the benefit |