bitbake -vDDD your-recipe
bitbake -s
#! /usr/bin/env python3 | |
"""Fixing bluetooth stereo headphone/headset problem in debian distros. | |
Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
This will be only fixes the bluez5 problem mentioned above . | |
Licence: Freeware |
# ~/.local/share/applications/acestream.desktop | |
[Desktop Entry] | |
Version=1.0 | |
Name=Acestream | |
GenericName=Media player | |
Comment=Open Acestream links with VLC Media Player | |
Type=Application | |
StartupNotify=false | |
Exec=/snap/bin/acestreamplayer %u | |
TryExec=/snap/bin/acestreamplayer |
# Credit http://stackoverflow.com/a/2514279 | |
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r |