All Projects → Elleo → Cutespotify

Elleo / Cutespotify

Licence: bsd-3-clause
A QT5 Spotify client, based on MeeSpot with support for Ubuntu Touch and SailfishOS.

Labels

Projects that are alternatives of or similar to Cutespotify

Progressbarcollection
I create this application to show up the demonstration for the collection of progress bars
Stars: ✭ 21 (-60.38%)
Mutual labels:  qml
Lottie Qml
QML Item for rendering Lottie Web animations in a QtQuick Canvas
Stars: ✭ 40 (-24.53%)
Mutual labels:  qml
Spix
UI test automation library for QtQuick/QML Apps
Stars: ✭ 48 (-9.43%)
Mutual labels:  qml
Torquegui
A GUI wallet for Torque
Stars: ✭ 28 (-47.17%)
Mutual labels:  qml
Machineface
User interface for Machinekit optimized for 3D printers and mobile devices
Stars: ✭ 39 (-26.42%)
Mutual labels:  qml
Sddm Sugar Light
The sweetest theme around for SDDM, the Simple Desktop Display Manager.
Stars: ✭ 45 (-15.09%)
Mutual labels:  qml
Webchimeraplayer
[deprecated] Open Source Player for WebChimera NPAPI -
Stars: ✭ 13 (-75.47%)
Mutual labels:  qml
Ipconnect
P2P Chat and File Transfer Desktop Application
Stars: ✭ 53 (+0%)
Mutual labels:  qml
Plasma Systray Latte Tweaks
Latte tweaks for Plasma systray
Stars: ✭ 40 (-24.53%)
Mutual labels:  qml
Vscode Qt For Python
Qt for Python (PyQt5 and PySide2) extension for Visual Studio Code.
Stars: ✭ 47 (-11.32%)
Mutual labels:  qml
Osmm Topography Layer Stylesheets
SQL scripts & cartographic stylesheets for OS MasterMap Topography Layer
Stars: ✭ 32 (-39.62%)
Mutual labels:  qml
Darkswitch
A dark theme switch written entirely in Qt Quick codes.
Stars: ✭ 34 (-35.85%)
Mutual labels:  qml
Sddm
QML based X11 and Wayland display manager
Stars: ✭ 1,031 (+1845.28%)
Mutual labels:  qml
Sailfish Utilities
Sailfish Utilities
Stars: ✭ 21 (-60.38%)
Mutual labels:  qml
Aqt Cassowary
Use the Cassowary constraint solver in QML applications
Stars: ✭ 48 (-9.43%)
Mutual labels:  qml
Learning Guides
Stars: ✭ 15 (-71.7%)
Mutual labels:  qml
Pitool
Provide interactive interfaces for Pimax products (such as HMD, controllers, base stations, etc.) to users
Stars: ✭ 41 (-22.64%)
Mutual labels:  qml
Osgqtquick
Intergation OpenSceneGraph to Qt Quick
Stars: ✭ 53 (+0%)
Mutual labels:  qml
Qt Csd Demo
Demo for custom client side window decorations using Qt
Stars: ✭ 53 (+0%)
Mutual labels:  qml
Textsecure Qml
TextSecure UI in Go and QML
Stars: ✭ 46 (-13.21%)
Mutual labels:  qml

Cute Spotify

Build Requirements

Prerequisites

You need some libraries to build CuteSpotify, also you need QtCreator if you want to open the .pro file.

sudo apt-get install libpulse-dev qtcreator

libSpotify

You need to download libspotify 12 to be able to compile and create the .click package. Get it there: https://developer.spotify.com/technologies/libspotify/

Extract the content of the tarball inside 'libspotify' at the root of the project.

The resulting hierarchy should be:

  • libspotify/
    • include/
      • libspotify/
        • api.h
    • lib/
      • libspotify.so
      • libspotify.so.9

Spotify API Key

You also need your own libspotify API key to be able to compile and run the program (see https://developer.spotify.com/technologies/libspotify/keys/) Create a file spotify_key.h inside libQtSpotify and copy the provided key inside it using the following format:

#ifndef SPOTIFY_KEY_H
#define SPOTIFY_KEY_H

const uint8_t g_appkey[] = { 0x00, 0x00, ..., ... };
const size_t g_appkey_size = sizeof(g_appkey);

#endif // SPOTIFY_KEY_H
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].