├── .github └── workflows │ ├── ProfileSummarizeAction │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json │ └── summarize.yml ├── LICENSE ├── Profiles ├── 3 Line │ ├── 3 Line.png │ ├── 3 Line.profile.json │ └── about.json ├── BareBones │ ├── BareBones.png │ ├── BareBones.profile.json │ └── about.json ├── BigButtons │ ├── BigButtons.png │ ├── BigButtons.profile.json │ └── about.json ├── Blue Bar │ ├── Blue Bar.png │ ├── Blue Bar.profile.json │ └── about.json ├── Bubblegum Green │ ├── Bubblegum Green.png │ ├── Bubblegum Green.profile.json │ └── about.json ├── Canonical Spotify (Volume) │ ├── Assets │ │ ├── Icons │ │ │ ├── active │ │ │ │ ├── added.svg │ │ │ │ ├── pressed │ │ │ │ │ ├── added.svg │ │ │ │ │ ├── repeat-one.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ └── shuffle_auto.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ └── shuffle_auto.svg │ │ │ ├── hover │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── shuffle_auto.svg │ │ │ │ ├── volume_high.svg │ │ │ │ ├── volume_low.svg │ │ │ │ ├── volume_medium.svg │ │ │ │ └── volume_off.svg │ │ │ ├── idle │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── shuffle_auto.svg │ │ │ │ ├── volume_high.svg │ │ │ │ ├── volume_low.svg │ │ │ │ ├── volume_medium.svg │ │ │ │ └── volume_off.svg │ │ │ └── pressed │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── shuffle_auto.svg │ │ │ │ ├── volume_high.svg │ │ │ │ ├── volume_low.svg │ │ │ │ ├── volume_medium.svg │ │ │ │ └── volume_off.svg │ │ └── Placeholders │ │ │ └── placeholder.svg │ ├── Canonical Spotify (Volume).png │ ├── Canonical Spotify (Volume).profile.json │ └── about.json ├── Canonical Spotify │ ├── Assets │ │ ├── Icons │ │ │ ├── active │ │ │ │ ├── added.svg │ │ │ │ ├── pressed │ │ │ │ │ ├── added.svg │ │ │ │ │ ├── repeat-one.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ └── shuffle_auto.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ └── shuffle_auto.svg │ │ │ ├── hover │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ └── shuffle_auto.svg │ │ │ ├── idle │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ └── shuffle_auto.svg │ │ │ └── pressed │ │ │ │ ├── add.svg │ │ │ │ ├── next.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── pause_circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── play_circle.svg │ │ │ │ ├── previous.svg │ │ │ │ ├── repeat-one.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── shuffle.svg │ │ │ │ └── shuffle_auto.svg │ │ └── Placeholders │ │ │ └── placeholder.svg │ ├── Canonical Spotify.png │ ├── Canonical Spotify.profile.json │ └── about.json ├── Compact Pause │ ├── Compact Pause.png │ ├── Compact Pause.profile.json │ └── about.json ├── Compact Spotify (Red) │ ├── Compact_Spotify_Red.png │ ├── Compact_Spotify_Red.profile.json │ └── about.json ├── Compact │ ├── Compact.png │ ├── Compact.profile.json │ └── about.json ├── Default (Compact) │ ├── Default (Compact).png │ ├── Default (Compact).profile.json │ └── about.json ├── Default Clean │ ├── Default Clean.png │ ├── Default Clean.profile.json │ └── about.json ├── Default │ ├── Default.png │ ├── Default.profile.json │ └── about.json ├── Dynamic Bar │ ├── Dynamic Bar.png │ ├── Dynamic Bar.profile.json │ └── about.json ├── Essentials 2 │ ├── Essentials 2.png │ ├── Essentials 2.profile.json │ └── about.json ├── Essentials │ ├── Essentials.png │ ├── Essentials.profile.json │ └── about.json ├── Idle │ ├── Idle.png │ ├── Idle.profile.json │ └── about.json ├── Minimal Rust │ ├── Minimal Rust.png │ ├── Minimal Rust.profile.json │ └── about.json ├── Minimal │ ├── Minimal.png │ ├── Minimal.profile.json │ └── about.json ├── MinimalButExtraLong │ ├── Assets │ │ └── MinimalButExtraLong.png │ ├── MinimalButItsExtraLong.png │ ├── MinimalButItsExtraLong.profile.json │ └── about.json ├── MinimalMod │ ├── MinimalMod.png │ ├── MinimalMod.profile.json │ └── about.json ├── MinimalMod2 │ ├── MinimalMod2.png │ ├── MinimalMod2.profile.json │ └── about.json ├── MinimalSquare │ ├── MinimalSquare.png │ ├── MinimalSquare.profile.json │ └── about.json ├── No Controls │ ├── No Controls.png │ ├── No Controls.profile.json │ └── about.json ├── Qt Pie │ ├── Qt Pie.png │ ├── Qt Pie.profile.json │ └── about.json ├── SUPER Super Mini Album Art │ ├── SUPER Super Mini Album Art.png │ ├── SUPER Super Mini Album Art.profile.json │ └── about.json ├── Show Me EVERYTHING │ ├── Show Me EVERYTHING.png │ ├── Show Me EVERYTHING.profile.json │ └── about.json ├── SimpleCompact │ ├── SimpleCompact.png │ ├── SimpleCompact.profile.json │ └── about.json ├── Spotify Mini │ ├── Assets │ │ ├── CircularSp.ttf │ │ ├── Heart │ │ │ ├── heart empty (hover).svg │ │ │ ├── heart empty.svg │ │ │ ├── heart filled (click).svg │ │ │ └── heart filled.svg │ │ ├── Play & Pause │ │ │ ├── pause (hover).svg │ │ │ ├── pause.svg │ │ │ ├── play (hover).svg │ │ │ ├── play.svg │ │ │ └── with background │ │ │ │ ├── pause 2 (hover).svg │ │ │ │ ├── pause 2.svg │ │ │ │ ├── play 2 (hover).svg │ │ │ │ └── play 2.svg │ │ ├── Previous & Next │ │ │ ├── next (hover).svg │ │ │ ├── next.svg │ │ │ ├── previous (hover).svg │ │ │ └── previous.svg │ │ ├── Shuffle & Repeat │ │ │ ├── repeat off (hover).svg │ │ │ ├── repeat off.svg │ │ │ ├── repeat on (hover).svg │ │ │ ├── repeat on.svg │ │ │ ├── repeat one (hover).svg │ │ │ ├── repeat one.svg │ │ │ ├── shuffle off (hover).svg │ │ │ ├── shuffle off.svg │ │ │ ├── shuffle on (hover).svg │ │ │ └── shuffle on.svg │ │ └── Volume │ │ │ ├── volume level 0 (hover).svg │ │ │ ├── volume level 0.svg │ │ │ ├── volume level 1 (hover).svg │ │ │ ├── volume level 1.svg │ │ │ ├── volume level 2 (hover).svg │ │ │ ├── volume level 2.svg │ │ │ ├── volume level 3 (hover).svg │ │ │ └── volume level 3.svg │ ├── Spotify Mini.png │ ├── Spotify Mini.profile.json │ └── about.json ├── Spotify Style Refined │ ├── Spotify Style Refined.png │ ├── Spotify Style Refined.profile.json │ └── about.json ├── Spotify Style │ ├── Spotify Style.png │ ├── Spotify Style.profile.json │ └── about.json ├── Spotify │ ├── Assets │ │ └── SpotifyLogo.png │ ├── Spotify.png │ ├── Spotify.profile.json │ └── about.json ├── Super Mini Album Art │ ├── Super Mini Album Art.jpg │ ├── Super Mini Album Art.profile.json │ └── about.json ├── Tall&Narrow │ ├── Tall&Narrow.png │ ├── Tall&Narrow.profile.json │ └── about.json ├── TitlesAndNothingElse │ ├── TitlesAndNothingElse.json │ ├── TitlesAndNothingElse.png │ └── about.json ├── Ultracompact │ ├── Ultracompact.png │ ├── Ultracompact.profile.json │ └── about.json ├── Win Blend │ ├── Win Blend.png │ ├── Win Blend.profile.json │ └── about.json └── Windows 11 │ ├── Windows 11.png │ ├── Windows 11.profile.json │ └── about.json ├── ProfilesSummary.json └── README.md /.github/workflows/ProfileSummarizeAction/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.github/workflows/ProfileSummarizeAction/index.js: -------------------------------------------------------------------------------- 1 | const core = require('@actions/core'); 2 | const github = require('@actions/github'); 3 | const fs = require('fs'); 4 | 5 | (async () => { 6 | try { 7 | // GitHub API token 8 | const githubToken = process.env['token']; 9 | 10 | const client = github.getOctokit(githubToken); 11 | 12 | const owner = github.context.payload.repository.owner.name; 13 | const repo = github.context.payload.repository.name; 14 | 15 | // Helper function for requesting content from GitHub API 16 | const getContent = async (path) => { 17 | return await client.rest.repos.getContent({ 18 | owner, 19 | repo, 20 | path, 21 | }); 22 | }; 23 | 24 | // Get content of the entire 'CommunityProfiles' repository 25 | const profilesRepoContent = await getContent("Profiles"); 26 | 27 | const profiles = []; 28 | 29 | // Loop through available profiles synchronously 30 | await Promise.all(profilesRepoContent.data.map(async (profile) => { 31 | // Return if element is not a directory 32 | if (profile.type != 'dir') return; 33 | 34 | // Get content of the profile's folder 35 | const profileContent = await getContent(profile.path); 36 | 37 | // Try finding 'about.json' file path, otherwise return 38 | const aboutFilePath = (profileContent.data.find((file) => file.name == 'about.json'))?.path; 39 | if (aboutFilePath == undefined) { 40 | console.log(`Profile '${profile.name}' has no 'about.json' file. Continuing with next profile...`); 41 | return; 42 | } 43 | 44 | // Get and parse content of 'about.json' file 45 | const aboutFileContent = await getContent(aboutFilePath); 46 | const aboutFile = JSON.parse(Buffer.from(aboutFileContent.data.content, aboutFileContent.data.encoding).toString()); 47 | 48 | // Try finding 'xxx.profile.json' download url 49 | const profileJsonContent = (profileContent.data.find((file) => file.name.endsWith('.profile.json'))); 50 | const profileUrl = profileJsonContent?.download_url; 51 | if (profileUrl == undefined) { 52 | console.log(`Profile '${profile.name}' has no 'xxx.profile.json' file. Continuing with next profile...`); 53 | return; 54 | } 55 | 56 | // Get the profile content so we can get the version later. 57 | const actualProfile = await getContent(profileJsonContent.path); 58 | const profileFileContent = JSON.parse(Buffer.from(actualProfile.data.content, actualProfile.data.encoding).toString()); 59 | 60 | // Try finding image url 61 | const imageUrl = (profileContent.data.find((file) => file.name.endsWith('.jpg') || file.name.endsWith('.png')))?.download_url; 62 | if (imageUrl == undefined) { 63 | console.log(`Profile '${profile.name}' has no image ('.jpg' or '.png') file. Ignoring...`); 64 | } 65 | 66 | // Try finding the Assets folder 67 | const assetsUrl = (profileContent.data.find((file) => file.name == "Assets"))?.path; 68 | if (assetsUrl == undefined) { 69 | console.log(`Profile '${profile.name}' has no extra assets. Ignoring...`); 70 | } 71 | 72 | // Add profile information to summary 73 | profiles.push({ 74 | name: profile.name, 75 | description: aboutFile.Description, 76 | authors: aboutFile.Authors, 77 | version: profileFileContent.Version, 78 | imageUrl: imageUrl, 79 | profileUrl: profileUrl, 80 | assetsUrl: assetsUrl == undefined ? "" : assetsUrl, 81 | }); 82 | })); 83 | 84 | // Write to summarized file 85 | fs.writeFile('./ProfilesSummary.json', JSON.stringify(profiles, undefined, 2), (err) => { 86 | if (err) { 87 | core.setFailed(err.message); 88 | return; 89 | } 90 | }); 91 | 92 | } catch (error) { 93 | core.setFailed(error.message); 94 | } 95 | })(); 96 | -------------------------------------------------------------------------------- /.github/workflows/ProfileSummarizeAction/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "profilesummarizeaction", 3 | "version": "0.1.0", 4 | "description": "GitHub action to get all the existing profiles and summarize them into one file.", 5 | "main": "index.js", 6 | "repository": "https://github.com/AudioBand/CommunityProfiles", 7 | "author": "jogius", 8 | "license": "MIT", 9 | "scripts": { 10 | "start": "node index.js" 11 | }, 12 | "dependencies": { 13 | "@actions/core": "^1.6.0", 14 | "@actions/github": "^5.0.0" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.github/workflows/summarize.yml: -------------------------------------------------------------------------------- 1 | name: ProfileSummarizeAction 2 | 3 | on: 4 | push: 5 | # Run on every push to the master branch 6 | branches: [ master ] 7 | # Ignore the auto-commits on 'ProfileSummary.json' 8 | paths-ignore: ProfilesSummary.json 9 | 10 | # Allow to run this workflow manually 11 | workflow_dispatch: 12 | 13 | jobs: 14 | build: 15 | 16 | runs-on: ubuntu-latest 17 | 18 | steps: 19 | # Checkout repository 20 | - uses: actions/checkout@v4 21 | # Initialize NodeJS environment in workflow folder 22 | - name: Use Node.js 16 23 | uses: actions/setup-node@v4 24 | with: 25 | node-version: 16 26 | cache: 'npm' 27 | cache-dependency-path: ./.github/workflows/ProfileSummarizeAction 28 | # Install NodeJS dependencies 29 | - name: Install dependencies 30 | working-directory: ./.github/workflows/ProfileSummarizeAction 31 | run: npm ci 32 | - name: Run script 33 | working-directory: ./.github/workflows/ProfileSummarizeAction 34 | run: npm run start 35 | # Pass GitHub token to script via environment variables 36 | env: 37 | token: ${{ secrets.GITHUB_TOKEN }} 38 | # Save 'ProfileSummary.json' to an artifact 39 | - name: Save artifact 40 | uses: actions/upload-artifact@v4 41 | with: 42 | name: ProfilesSummary.json 43 | path: ./.github/workflows/ProfileSummarizeAction/ProfilesSummary.json 44 | # Move 'ProfilesSummary.json' and overwrite version in repository 45 | - name: Update ProfilesSummary.json in repository 46 | run: mv -f ./.github/workflows/ProfileSummarizeAction/ProfilesSummary.json . 47 | # Commit and push changes to repository 48 | - name: Update file in repository 49 | uses: stefanzweifel/git-auto-commit-action@v4 50 | with: 51 | commit_message: (Auto Commit) Update 'ProfilesSummary.json' 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 AudioBand 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Profiles/3 Line/3 Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/3 Line/3 Line.png -------------------------------------------------------------------------------- /Profiles/3 Line/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Compact 3 row layout to accomodate longer song, artist and album names while preserving horizontal space. All labels auto scroll by default. Also has a large 400x400 art popup to admire beautiful album covers (✿◡‿◡)", 3 | "Authors": "Minz💕" 4 | } -------------------------------------------------------------------------------- /Profiles/BareBones/BareBones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/BareBones/BareBones.png -------------------------------------------------------------------------------- /Profiles/BareBones/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Bare bones minimalist and compact audioband profile", 3 | "Authors": "juanmar0driguez" 4 | } -------------------------------------------------------------------------------- /Profiles/BigButtons/BigButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/BigButtons/BigButtons.png -------------------------------------------------------------------------------- /Profiles/BigButtons/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Just three big buttons. You won't missclick again.", 3 | "Authors": "VitalityV1nT" 4 | } -------------------------------------------------------------------------------- /Profiles/Blue Bar/Blue Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Blue Bar/Blue Bar.png -------------------------------------------------------------------------------- /Profiles/Blue Bar/Blue Bar.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v1.0.0", 3 | "Name": "Blue Bar", 4 | "AlbumArtPopup": { 5 | "IsVisible": true, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "CornerRadius": 4, 14 | "IsVisible": false, 15 | "Width": 135.0, 16 | "Height": 20.0, 17 | "XPosition": 20.0, 18 | "YPosition": 10.0, 19 | "Anchor": 12 20 | }, 21 | "GeneralSettings": { 22 | "Width": 180.0, 23 | "Height": 30.0, 24 | "BackgroundColor": "#FF2A2A2A" 25 | }, 26 | "CustomLabels": [ 27 | { 28 | "FontFamily": "Segoe UI", 29 | "FontSize": 15.0, 30 | "Color": "#FFC3C3C3", 31 | "FormatString": "{song} - {artist} ", 32 | "Alignment": 2, 33 | "Name": "Artist - Name", 34 | "ScrollSpeed": 3500, 35 | "TextOverflow": 1, 36 | "ScrollBehavior": 1, 37 | "FadeEffect": 2, 38 | "LeftFadeOffset": 0.057894736842105263, 39 | "RightFadeOffset": 0.93684210526315781, 40 | "BorderColor": "#FFFFFFFF", 41 | "BorderThickness": 0, 42 | "BorderCornerRadius": 0, 43 | "IsVisible": true, 44 | "Width": 146.0, 45 | "Height": 22.0, 46 | "XPosition": 14.0, 47 | "YPosition": 7.0, 48 | "Anchor": 12 49 | } 50 | ], 51 | "NextButton": { 52 | "Content": { 53 | "ContentType": 1, 54 | "ImagePath": null, 55 | "HoveredImagePath": null, 56 | "ClickedImagePath": null, 57 | "FontFamily": "Segoe MDL2 Assets", 58 | "Text": "", 59 | "TextColor": "#FFFFFFFF", 60 | "HoveredTextColor": "#FFFFFFFF", 61 | "ClickedTextColor": "#FFFFFFFF" 62 | }, 63 | "CornerRadius": 10, 64 | "BackgroundColor": "#00FFFFFF", 65 | "HoveredBackgroundColor": "#19FFFFFF", 66 | "ClickedBackgroundColor": "#0FFFFFFF", 67 | "IsVisible": false, 68 | "Width": 24.0, 69 | "Height": 12.0, 70 | "XPosition": 135.0, 71 | "YPosition": 13.5, 72 | "Anchor": 9 73 | }, 74 | "PreviousButton": { 75 | "Content": { 76 | "ContentType": 1, 77 | "ImagePath": null, 78 | "HoveredImagePath": null, 79 | "ClickedImagePath": null, 80 | "FontFamily": "Segoe MDL2 Assets", 81 | "Text": "", 82 | "TextColor": "#FFFFFFFF", 83 | "HoveredTextColor": "#FFFFFFFF", 84 | "ClickedTextColor": "#FFFFFFFF" 85 | }, 86 | "CornerRadius": 10, 87 | "BackgroundColor": "#00FFFFFF", 88 | "HoveredBackgroundColor": "#19FFFFFF", 89 | "ClickedBackgroundColor": "#0FFFFFFF", 90 | "IsVisible": false, 91 | "Width": 30.0, 92 | "Height": 12.0, 93 | "XPosition": 45.0, 94 | "YPosition": 13.5, 95 | "Anchor": 9 96 | }, 97 | "PlayPauseButton": { 98 | "PlayContent": { 99 | "ContentType": 1, 100 | "ImagePath": null, 101 | "HoveredImagePath": null, 102 | "ClickedImagePath": null, 103 | "FontFamily": "Segoe MDL2 Assets", 104 | "Text": "", 105 | "TextColor": "#FF1873CC", 106 | "HoveredTextColor": "#FF1E90FF", 107 | "ClickedTextColor": "#FFB6D4F5" 108 | }, 109 | "PauseContent": { 110 | "ContentType": 1, 111 | "ImagePath": null, 112 | "HoveredImagePath": null, 113 | "ClickedImagePath": null, 114 | "FontFamily": "Segoe MDL2 Assets", 115 | "Text": "", 116 | "TextColor": "#FF036BD2", 117 | "HoveredTextColor": "#FF1E90FF", 118 | "ClickedTextColor": "#FFB6D4F5" 119 | }, 120 | "CornerRadius": 10, 121 | "BackgroundColor": "#00FFFFFF", 122 | "HoveredBackgroundColor": "#00FFFFFF", 123 | "ClickedBackgroundColor": "#00FFFFFF", 124 | "IsVisible": true, 125 | "Width": 18.0, 126 | "Height": 12.5, 127 | "XPosition": -4.5, 128 | "YPosition": 12.0, 129 | "Anchor": 12 130 | }, 131 | "RepeatModeButton": { 132 | "RepeatOffContent": { 133 | "ContentType": 1, 134 | "ImagePath": null, 135 | "HoveredImagePath": null, 136 | "ClickedImagePath": null, 137 | "FontFamily": "Segoe MDL2 Assets", 138 | "Text": "", 139 | "TextColor": "#FF696969", 140 | "HoveredTextColor": "#FFFFFFFF", 141 | "ClickedTextColor": "#FF808080" 142 | }, 143 | "RepeatContextContent": { 144 | "ContentType": 1, 145 | "ImagePath": null, 146 | "HoveredImagePath": null, 147 | "ClickedImagePath": null, 148 | "FontFamily": "Segoe MDL2 Assets", 149 | "Text": "", 150 | "TextColor": "#FF1E90FF", 151 | "HoveredTextColor": "#FF6495ED", 152 | "ClickedTextColor": "#FF4169E1" 153 | }, 154 | "RepeatTrackContent": { 155 | "ContentType": 1, 156 | "ImagePath": null, 157 | "HoveredImagePath": null, 158 | "ClickedImagePath": null, 159 | "FontFamily": "Segoe MDL2 Assets", 160 | "Text": "", 161 | "TextColor": "#FF1E90FF", 162 | "HoveredTextColor": "#FF6495ED", 163 | "ClickedTextColor": "#FF4169E1" 164 | }, 165 | "CornerRadius": 10, 166 | "BackgroundColor": "#00FFFFFF", 167 | "HoveredBackgroundColor": "#19FFFFFF", 168 | "ClickedBackgroundColor": "#0FFFFFFF", 169 | "IsVisible": false, 170 | "Width": 40.0, 171 | "Height": 15.0, 172 | "XPosition": 450.0, 173 | "YPosition": 3.0, 174 | "Anchor": 9 175 | }, 176 | "ShuffleModeButton": { 177 | "ShuffleOffContent": { 178 | "ContentType": 1, 179 | "ImagePath": null, 180 | "HoveredImagePath": null, 181 | "ClickedImagePath": null, 182 | "FontFamily": "Segoe MDL2 Assets", 183 | "Text": "", 184 | "TextColor": "#FF696969", 185 | "HoveredTextColor": "#FFFFFFFF", 186 | "ClickedTextColor": "#FF808080" 187 | }, 188 | "ShuffleOnContent": { 189 | "ContentType": 1, 190 | "ImagePath": null, 191 | "HoveredImagePath": null, 192 | "ClickedImagePath": null, 193 | "FontFamily": "Segoe MDL2 Assets", 194 | "Text": "", 195 | "TextColor": "#FF1E90FF", 196 | "HoveredTextColor": "#FF6495ED", 197 | "ClickedTextColor": "#FF4169E1" 198 | }, 199 | "CornerRadius": 10, 200 | "BackgroundColor": "#00FFFFFF", 201 | "HoveredBackgroundColor": "#19FFFFFF", 202 | "ClickedBackgroundColor": "#0FFFFFFF", 203 | "IsVisible": false, 204 | "Width": 40.0, 205 | "Height": 15.0, 206 | "XPosition": 290.0, 207 | "YPosition": 3.0, 208 | "Anchor": 9 209 | }, 210 | "VolumeButton": { 211 | "PopupWidth": 182.0, 212 | "PopupHeight": 24.0, 213 | "XPopupOffset": -164.0, 214 | "YPopupOffset": -8.0, 215 | "IsHorizontal": true, 216 | "NoVolumeContent": { 217 | "ContentType": 1, 218 | "ImagePath": null, 219 | "HoveredImagePath": null, 220 | "ClickedImagePath": null, 221 | "FontFamily": "Segoe MDL2 Assets", 222 | "Text": "", 223 | "TextColor": "#FF1873CC", 224 | "HoveredTextColor": "#FF1E90FF", 225 | "ClickedTextColor": "#FFB6D4F5" 226 | }, 227 | "LowVolumeContent": { 228 | "ContentType": 1, 229 | "ImagePath": null, 230 | "HoveredImagePath": null, 231 | "ClickedImagePath": null, 232 | "FontFamily": "Segoe MDL2 Assets", 233 | "Text": "", 234 | "TextColor": "#FF1873CC", 235 | "HoveredTextColor": "#FF1E90FF", 236 | "ClickedTextColor": "#FFB6D4F5" 237 | }, 238 | "MidVolumeContent": { 239 | "ContentType": 1, 240 | "ImagePath": null, 241 | "HoveredImagePath": null, 242 | "ClickedImagePath": null, 243 | "FontFamily": "Segoe MDL2 Assets", 244 | "Text": "", 245 | "TextColor": "#FF1873CC", 246 | "HoveredTextColor": "#FF1E90FF", 247 | "ClickedTextColor": "#FFB6D4F5" 248 | }, 249 | "HighVolumeContent": { 250 | "ContentType": 1, 251 | "ImagePath": null, 252 | "HoveredImagePath": null, 253 | "ClickedImagePath": null, 254 | "FontFamily": "Segoe MDL2 Assets", 255 | "Text": "", 256 | "TextColor": "#FF1873CC", 257 | "HoveredTextColor": "#FF1E90FF", 258 | "ClickedTextColor": "#FFB6D4F5" 259 | }, 260 | "VolumeBarForegroundColor": "#FF1E90FF", 261 | "VolumeBarForegroundGradientColor": "#FF0052A3", 262 | "VolumeBarBackgroundColor": "#FF696969", 263 | "PopupBackgroundColor": "#FF2A2A2A", 264 | "VolumeBarThumbColor": "#FF292929", 265 | "VolumeBarThumbBorderColor": "#FF1E8FFE", 266 | "CornerRadius": 10, 267 | "BackgroundColor": "#00FFFFFF", 268 | "HoveredBackgroundColor": "#00FFFFFF", 269 | "ClickedBackgroundColor": "#0FFFFFFF", 270 | "IsVisible": true, 271 | "Width": 18.0, 272 | "Height": 12.5, 273 | "XPosition": 162.0, 274 | "YPosition": 12.0, 275 | "Anchor": 12 276 | }, 277 | "ProgressBar": { 278 | "ForegroundColor": "#FF1E90FF", 279 | "ForegroundGradientColor": "#FF0052A3", 280 | "BackgroundColor": "#FF696969", 281 | "HoverColor": "#FF237FDF", 282 | "ProgressBarThumbColor": "#FF292929", 283 | "ThumbBorderColor": "#FF1E8FFE", 284 | "IsVisible": true, 285 | "Width": 180.0, 286 | "Height": 3.0, 287 | "XPosition": 0.0, 288 | "YPosition": 4.0, 289 | "Anchor": 6 290 | }, 291 | "LikeButton": { 292 | "LikeContent": { 293 | "ContentType": 1, 294 | "ImagePath": null, 295 | "HoveredImagePath": null, 296 | "ClickedImagePath": null, 297 | "FontFamily": "Segoe MDL2 Assets", 298 | "Text": " ", 299 | "TextColor": "#00FFFFFF", 300 | "HoveredTextColor": "#FF808080", 301 | "ClickedTextColor": "#FF696969" 302 | }, 303 | "DislikeContent": { 304 | "ContentType": 1, 305 | "ImagePath": null, 306 | "HoveredImagePath": null, 307 | "ClickedImagePath": null, 308 | "FontFamily": "Segoe MDL2 Assets", 309 | "Text": " ", 310 | "TextColor": "#00FFFFFF", 311 | "HoveredTextColor": "#F500B815", 312 | "ClickedTextColor": "#F5008410" 313 | }, 314 | "CornerRadius": 6, 315 | "BackgroundColor": "#00FFFFFF", 316 | "HoveredBackgroundColor": "#14FFFFFF", 317 | "ClickedBackgroundColor": "#0AFFFFFF", 318 | "IsVisible": true, 319 | "Width": 146.0, 320 | "Height": 16.0, 321 | "XPosition": 14.0, 322 | "YPosition": 10.5, 323 | "Anchor": 12 324 | } 325 | } -------------------------------------------------------------------------------- /Profiles/Blue Bar/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Click on the title to like/dislike. I recommend setting up the AudioBand Custom Mouse Bindings so you can MiddleClick anywhere to play/pause and use the scroll wheel to change songs. Only 30px high, ideal for use with the Small Icons setting in StartAllBack.", 3 | "Authors": "Wouter Van Goey" 4 | } -------------------------------------------------------------------------------- /Profiles/Bubblegum Green/Bubblegum Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Bubblegum Green/Bubblegum Green.png -------------------------------------------------------------------------------- /Profiles/Bubblegum Green/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Modified from tanc's Spotify Style, this profile features bigger play, rewind, and skip buttons! The buttons are Spotify green when hovered, but shuffle and loop become pink once clicked :) If the artist's name is too long, it can be viewed while hovering", 3 | "Authors": "hauntedandholy" 4 | } -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/added.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/pressed/added.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/pressed/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/pressed/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/pressed/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/pressed/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/active/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/volume_high.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/volume_low.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/volume_medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/hover/volume_off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/volume_high.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/volume_low.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/volume_medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/idle/volume_off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/volume_high.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/volume_low.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/volume_medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Icons/pressed/volume_off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Assets/Placeholders/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/Canonical Spotify (Volume).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Canonical Spotify (Volume)/Canonical Spotify (Volume).png -------------------------------------------------------------------------------- /Profiles/Canonical Spotify (Volume)/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A theme trying its best to replicate the Spotify transport control UI. Same icons, same look. This one with volume.", 3 | "Authors": "iGerman" 4 | } -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/added.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/pressed/added.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/pressed/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/pressed/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/pressed/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/pressed/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/active/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/hover/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/idle/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/add.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/pause_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/play_circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/previous.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/repeat-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/repeat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/shuffle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Icons/pressed/shuffle_auto.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Assets/Placeholders/placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/Canonical Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Canonical Spotify/Canonical Spotify.png -------------------------------------------------------------------------------- /Profiles/Canonical Spotify/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A theme trying its best to replicate the Spotify transport control UI. Same icons, same look.", 3 | "Authors": "iGerman" 4 | } -------------------------------------------------------------------------------- /Profiles/Compact Pause/Compact Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Compact Pause/Compact Pause.png -------------------------------------------------------------------------------- /Profiles/Compact Pause/Compact Pause.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v0.0.1", 3 | "Name": "Compact Pause", 4 | "AlbumArtPopup": { 5 | "IsVisible": false, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": 0.0, 9 | "Margin": 0.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "IsVisible": true, 14 | "Width": 40.0, 15 | "Height": 40.0, 16 | "XPosition": 0.0, 17 | "YPosition": 0.0, 18 | "Anchor": 9 19 | }, 20 | "GeneralSettings": { 21 | "Width": 40.0, 22 | "Height": 40.0, 23 | "BackgroundColor": "#00BC0035" 24 | }, 25 | "CustomLabels": [], 26 | "NextButton": { 27 | "Content": { 28 | "ContentType": 1, 29 | "ImagePath": null, 30 | "HoveredImagePath": null, 31 | "ClickedImagePath": null, 32 | "FontFamily": "Segoe MDL2 Assets", 33 | "Text": "", 34 | "TextColor": "#45FFFFFF", 35 | "HoveredTextColor": "#FFFFFFFF", 36 | "ClickedTextColor": "#FF1E90FF" 37 | }, 38 | "CornerRadius": 1, 39 | "BackgroundColor": "#00FFFFFF", 40 | "HoveredBackgroundColor": "#19FFFFFF", 41 | "ClickedBackgroundColor": "#0FFFFFFF", 42 | "IsVisible": false, 43 | "Width": 11.0, 44 | "Height": 15.0, 45 | "XPosition": 0.0, 46 | "YPosition": 0.0, 47 | "Anchor": 3 48 | }, 49 | "PreviousButton": { 50 | "Content": { 51 | "ContentType": 1, 52 | "ImagePath": null, 53 | "HoveredImagePath": null, 54 | "ClickedImagePath": null, 55 | "FontFamily": "Segoe MDL2 Assets", 56 | "Text": "", 57 | "TextColor": "#45FFFFFF", 58 | "HoveredTextColor": "#FFFFFFFF", 59 | "ClickedTextColor": "#FF1E90FF" 60 | }, 61 | "CornerRadius": 1, 62 | "BackgroundColor": "#00FFFFFF", 63 | "HoveredBackgroundColor": "#19FFFFFF", 64 | "ClickedBackgroundColor": "#0FFFFFFF", 65 | "IsVisible": false, 66 | "Width": 11.0, 67 | "Height": 15.0, 68 | "XPosition": 46.0, 69 | "YPosition": 0.0, 70 | "Anchor": 3 71 | }, 72 | "PlayPauseButton": { 73 | "PlayContent": { 74 | "ContentType": 1, 75 | "ImagePath": null, 76 | "HoveredImagePath": null, 77 | "ClickedImagePath": null, 78 | "FontFamily": "Segoe Fluent Icons", 79 | "Text": "", 80 | "TextColor": "#94FFFFFF", 81 | "HoveredTextColor": "#FFFFFFFF", 82 | "ClickedTextColor": "#FF1E90FF" 83 | }, 84 | "PauseContent": { 85 | "ContentType": 1, 86 | "ImagePath": null, 87 | "HoveredImagePath": null, 88 | "ClickedImagePath": null, 89 | "FontFamily": "Segoe Fluent Icons", 90 | "Text": "", 91 | "TextColor": "#64FFFFFF", 92 | "HoveredTextColor": "#FFFFFFFF", 93 | "ClickedTextColor": "#FF1E90FF" 94 | }, 95 | "CornerRadius": 0, 96 | "BackgroundColor": "#64000000", 97 | "HoveredBackgroundColor": "#A2000000", 98 | "ClickedBackgroundColor": "#0FFFFFFF", 99 | "IsVisible": true, 100 | "Width": 41.0, 101 | "Height": 38.0, 102 | "XPosition": -0.5, 103 | "YPosition": -1.5, 104 | "Anchor": 9 105 | }, 106 | "RepeatModeButton": { 107 | "RepeatOffContent": { 108 | "ContentType": 1, 109 | "ImagePath": null, 110 | "HoveredImagePath": null, 111 | "ClickedImagePath": null, 112 | "FontFamily": "Segoe MDL2 Assets", 113 | "Text": "", 114 | "TextColor": "#FF696969", 115 | "HoveredTextColor": "#FFFFFFFF", 116 | "ClickedTextColor": "#FF808080" 117 | }, 118 | "RepeatContextContent": { 119 | "ContentType": 1, 120 | "ImagePath": null, 121 | "HoveredImagePath": null, 122 | "ClickedImagePath": null, 123 | "FontFamily": "Segoe MDL2 Assets", 124 | "Text": "", 125 | "TextColor": "#FF1E90FF", 126 | "HoveredTextColor": "#FF6495ED", 127 | "ClickedTextColor": "#FF4169E1" 128 | }, 129 | "RepeatTrackContent": { 130 | "ContentType": 1, 131 | "ImagePath": null, 132 | "HoveredImagePath": null, 133 | "ClickedImagePath": null, 134 | "FontFamily": "Segoe MDL2 Assets", 135 | "Text": "", 136 | "TextColor": "#FF1E90FF", 137 | "HoveredTextColor": "#FF6495ED", 138 | "ClickedTextColor": "#FF4169E1" 139 | }, 140 | "CornerRadius": 10, 141 | "BackgroundColor": "#00FFFFFF", 142 | "HoveredBackgroundColor": "#19FFFFFF", 143 | "ClickedBackgroundColor": "#0FFFFFFF", 144 | "IsVisible": false, 145 | "Width": 40.0, 146 | "Height": 15.0, 147 | "XPosition": 270.0, 148 | "YPosition": 5.0, 149 | "Anchor": 9 150 | }, 151 | "ShuffleModeButton": { 152 | "ShuffleOffContent": { 153 | "ContentType": 1, 154 | "ImagePath": null, 155 | "HoveredImagePath": null, 156 | "ClickedImagePath": null, 157 | "FontFamily": "Segoe MDL2 Assets", 158 | "Text": "", 159 | "TextColor": "#1EFFFFFF", 160 | "HoveredTextColor": "#FFFFFFFF", 161 | "ClickedTextColor": "#FF808080" 162 | }, 163 | "ShuffleOnContent": { 164 | "ContentType": 1, 165 | "ImagePath": null, 166 | "HoveredImagePath": null, 167 | "ClickedImagePath": null, 168 | "FontFamily": "Segoe MDL2 Assets", 169 | "Text": "", 170 | "TextColor": "#FF1E90FF", 171 | "HoveredTextColor": "#FF6495ED", 172 | "ClickedTextColor": "#FF4169E1" 173 | }, 174 | "CornerRadius": 3, 175 | "BackgroundColor": "#00FFFFFF", 176 | "HoveredBackgroundColor": "#19FFFFFF", 177 | "ClickedBackgroundColor": "#0FFFFFFF", 178 | "IsVisible": false, 179 | "Width": 20.0, 180 | "Height": 15.0, 181 | "XPosition": 8.0, 182 | "YPosition": 12.0, 183 | "Anchor": 3 184 | }, 185 | "VolumeButton": { 186 | "PopupWidth": 190.0, 187 | "PopupHeight": 32.0, 188 | "XPopupOffset": 24.5, 189 | "YPopupOffset": -4.0, 190 | "IsHorizontal": true, 191 | "NoVolumeContent": { 192 | "ContentType": 1, 193 | "ImagePath": null, 194 | "HoveredImagePath": null, 195 | "ClickedImagePath": null, 196 | "FontFamily": "Segoe MDL2 Assets", 197 | "Text": "", 198 | "TextColor": "#30FFFFFF", 199 | "HoveredTextColor": "#FFFFFFFF", 200 | "ClickedTextColor": "#FFFFFFFF" 201 | }, 202 | "LowVolumeContent": { 203 | "ContentType": 1, 204 | "ImagePath": null, 205 | "HoveredImagePath": null, 206 | "ClickedImagePath": null, 207 | "FontFamily": "Segoe MDL2 Assets", 208 | "Text": "", 209 | "TextColor": "#30FFFFFF", 210 | "HoveredTextColor": "#FFFFFFFF", 211 | "ClickedTextColor": "#FFFFFFFF" 212 | }, 213 | "MidVolumeContent": { 214 | "ContentType": 1, 215 | "ImagePath": null, 216 | "HoveredImagePath": null, 217 | "ClickedImagePath": null, 218 | "FontFamily": "Segoe MDL2 Assets", 219 | "Text": "", 220 | "TextColor": "#30FFFFFF", 221 | "HoveredTextColor": "#FFFFFFFF", 222 | "ClickedTextColor": "#FFFFFFFF" 223 | }, 224 | "HighVolumeContent": { 225 | "ContentType": 1, 226 | "ImagePath": null, 227 | "HoveredImagePath": null, 228 | "ClickedImagePath": null, 229 | "FontFamily": "Segoe MDL2 Assets", 230 | "Text": "", 231 | "TextColor": "#30FFFFFF", 232 | "HoveredTextColor": "#FFFFFFFF", 233 | "ClickedTextColor": "#FFFFFFFF" 234 | }, 235 | "VolumeBarForegroundColor": "#FF1E90FF", 236 | "VolumeBarForegroundGradientColor": "#FF0052A3", 237 | "VolumeBarBackgroundColor": "#FFDC0049", 238 | "PopupBackgroundColor": "#00101010", 239 | "VolumeBarThumbColor": "#FFED16A5", 240 | "VolumeBarThumbBorderColor": "#FF1E90FF", 241 | "CornerRadius": 3, 242 | "BackgroundColor": "#00FFFFFF", 243 | "HoveredBackgroundColor": "#19FFFFFF", 244 | "ClickedBackgroundColor": "#0FFFFFFF", 245 | "IsVisible": false, 246 | "Width": 15.0, 247 | "Height": 15.0, 248 | "XPosition": 30.0, 249 | "YPosition": 12.0, 250 | "Anchor": 3 251 | }, 252 | "ProgressBar": { 253 | "ForegroundColor": "#FFFF0000", 254 | "ForegroundGradientColor": "#FFFF00A9", 255 | "BackgroundColor": "#B5FFFFFF", 256 | "HoverColor": "#FFDD008C", 257 | "ProgressBarThumbColor": "#FFAFEBFF", 258 | "ThumbBorderColor": "#FF00BFFF", 259 | "IsVisible": true, 260 | "Width": 40.0, 261 | "Height": 2.5, 262 | "XPosition": 0.0, 263 | "YPosition": 0.5, 264 | "Anchor": 12 265 | }, 266 | "LikeButton": { 267 | "LikeContent": { 268 | "ContentType": 1, 269 | "ImagePath": null, 270 | "HoveredImagePath": null, 271 | "ClickedImagePath": null, 272 | "FontFamily": "Segoe MDL2 Assets", 273 | "Text": "", 274 | "TextColor": "#10FFFFFF", 275 | "HoveredTextColor": "#FFFFFFFF", 276 | "ClickedTextColor": "#FF1E90FF" 277 | }, 278 | "DislikeContent": { 279 | "ContentType": 1, 280 | "ImagePath": null, 281 | "HoveredImagePath": null, 282 | "ClickedImagePath": null, 283 | "FontFamily": "Segoe MDL2 Assets", 284 | "Text": "", 285 | "TextColor": "#20FFFFFF", 286 | "HoveredTextColor": "#FF1E90FF", 287 | "ClickedTextColor": "#FFFFFFFF" 288 | }, 289 | "CornerRadius": 3, 290 | "BackgroundColor": "#00FFFFFF", 291 | "HoveredBackgroundColor": "#19FFFFFF", 292 | "ClickedBackgroundColor": "#0FFFFFFF", 293 | "IsVisible": false, 294 | "Width": 14.0, 295 | "Height": 14.0, 296 | "XPosition": 96.0, 297 | "YPosition": 5.0, 298 | "Anchor": 3 299 | } 300 | } -------------------------------------------------------------------------------- /Profiles/Compact Pause/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "If a quick way of pausing is all you need.", 3 | "Authors": "Minz💕" 4 | } -------------------------------------------------------------------------------- /Profiles/Compact Spotify (Red)/Compact_Spotify_Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Compact Spotify (Red)/Compact_Spotify_Red.png -------------------------------------------------------------------------------- /Profiles/Compact Spotify (Red)/Compact_Spotify_Red.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v0.0.2", 3 | "Name": "Compact Spotify (Red)", 4 | "AlbumArtPopup": { 5 | "IsVisible": true, 6 | "Width": 350.0, 7 | "Height": 350.0, 8 | "XPosition": 0.0, 9 | "Margin": -2.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "IsVisible": true, 14 | "Width": 41.0, 15 | "Height": 37.0, 16 | "XPosition": 0.0, 17 | "YPosition": 2.0, 18 | "Anchor": 9 19 | }, 20 | "GeneralSettings": { 21 | "Width": 190.0, 22 | "Height": 40.0, 23 | "BackgroundColor": "#00FFFFFF" 24 | }, 25 | "CustomLabels": [ 26 | { 27 | "FontFamily": "Arial", 28 | "FontSize": 13.0, 29 | "Color": "#FFFFFFFF", 30 | "FormatString": "{*song} | {artist}", 31 | "Alignment": 0, 32 | "Name": "Song | Artist", 33 | "ScrollSpeed": 3000, 34 | "TextOverflow": 1, 35 | "ScrollBehavior": 2, 36 | "FadeEffect": 1, 37 | "LeftFadeOffset": 0.0, 38 | "RightFadeOffset": 0.99210526315789471, 39 | "IsVisible": true, 40 | "Width": 146.0, 41 | "Height": 20.0, 42 | "XPosition": 43.0, 43 | "YPosition": 2.0, 44 | "Anchor": 9 45 | } 46 | ], 47 | "NextButton": { 48 | "Content": { 49 | "ContentType": 1, 50 | "ImagePath": null, 51 | "HoveredImagePath": null, 52 | "ClickedImagePath": null, 53 | "FontFamily": "Segoe MDL2 Assets", 54 | "Text": "", 55 | "TextColor": "#FF808080", 56 | "HoveredTextColor": "#FFFFFFFF", 57 | "ClickedTextColor": "#FFE61919" 58 | }, 59 | "CornerRadius": 1, 60 | "BackgroundColor": "#00FFFFFF", 61 | "HoveredBackgroundColor": "#00FFFFFF", 62 | "ClickedBackgroundColor": "#00FFFFFF", 63 | "IsVisible": true, 64 | "Width": 15.0, 65 | "Height": 15.0, 66 | "XPosition": 48.0, 67 | "YPosition": 19.0, 68 | "Anchor": 3 69 | }, 70 | "PreviousButton": { 71 | "Content": { 72 | "ContentType": 1, 73 | "ImagePath": null, 74 | "HoveredImagePath": null, 75 | "ClickedImagePath": null, 76 | "FontFamily": "Segoe MDL2 Assets", 77 | "Text": "", 78 | "TextColor": "#FF808080", 79 | "HoveredTextColor": "#FFFFFFFF", 80 | "ClickedTextColor": "#FFE61919" 81 | }, 82 | "CornerRadius": 1, 83 | "BackgroundColor": "#00FFFFFF", 84 | "HoveredBackgroundColor": "#00FFFFFF", 85 | "ClickedBackgroundColor": "#00FFFFFF", 86 | "IsVisible": true, 87 | "Width": 15.0, 88 | "Height": 15.0, 89 | "XPosition": 83.0, 90 | "YPosition": 19.0, 91 | "Anchor": 3 92 | }, 93 | "PlayPauseButton": { 94 | "PlayContent": { 95 | "ContentType": 1, 96 | "ImagePath": null, 97 | "HoveredImagePath": null, 98 | "ClickedImagePath": null, 99 | "FontFamily": "Segoe MDL2 Assets", 100 | "Text": "", 101 | "TextColor": "#FF808080", 102 | "HoveredTextColor": "#FFFFFFFF", 103 | "ClickedTextColor": "#FFE61919" 104 | }, 105 | "PauseContent": { 106 | "ContentType": 1, 107 | "ImagePath": null, 108 | "HoveredImagePath": null, 109 | "ClickedImagePath": null, 110 | "FontFamily": "Segoe MDL2 Assets", 111 | "Text": "", 112 | "TextColor": "#30FFFFFF", 113 | "HoveredTextColor": "#FFFFFFFF", 114 | "ClickedTextColor": "#FFE61919" 115 | }, 116 | "CornerRadius": 1, 117 | "BackgroundColor": "#00FFFFFF", 118 | "HoveredBackgroundColor": "#00FFFFFF", 119 | "ClickedBackgroundColor": "#00FFFFFF", 120 | "IsVisible": true, 121 | "Width": 15.0, 122 | "Height": 15.0, 123 | "XPosition": 66.0, 124 | "YPosition": 19.0, 125 | "Anchor": 3 126 | }, 127 | "RepeatModeButton": { 128 | "RepeatOffContent": { 129 | "ContentType": 1, 130 | "ImagePath": null, 131 | "HoveredImagePath": null, 132 | "ClickedImagePath": null, 133 | "FontFamily": "Segoe MDL2 Assets", 134 | "Text": "", 135 | "TextColor": "#FF808080", 136 | "HoveredTextColor": "#FFFFFFFF", 137 | "ClickedTextColor": "#FF808080" 138 | }, 139 | "RepeatContextContent": { 140 | "ContentType": 1, 141 | "ImagePath": null, 142 | "HoveredImagePath": null, 143 | "ClickedImagePath": null, 144 | "FontFamily": "Segoe MDL2 Assets", 145 | "Text": "", 146 | "TextColor": "#FFE61919", 147 | "HoveredTextColor": "#FFED7979", 148 | "ClickedTextColor": "#FFFF0000" 149 | }, 150 | "RepeatTrackContent": { 151 | "ContentType": 1, 152 | "ImagePath": null, 153 | "HoveredImagePath": null, 154 | "ClickedImagePath": null, 155 | "FontFamily": "Segoe MDL2 Assets", 156 | "Text": "", 157 | "TextColor": "#FFE61919", 158 | "HoveredTextColor": "#FFED7979", 159 | "ClickedTextColor": "#FFFF0000" 160 | }, 161 | "CornerRadius": 10, 162 | "BackgroundColor": "#00FFFFFF", 163 | "HoveredBackgroundColor": "#00FFFFFF", 164 | "ClickedBackgroundColor": "#00FFFFFF", 165 | "IsVisible": true, 166 | "Width": 20.0, 167 | "Height": 15.0, 168 | "XPosition": 147.0, 169 | "YPosition": 19.0, 170 | "Anchor": 9 171 | }, 172 | "ShuffleModeButton": { 173 | "ShuffleOffContent": { 174 | "ContentType": 1, 175 | "ImagePath": null, 176 | "HoveredImagePath": null, 177 | "ClickedImagePath": null, 178 | "FontFamily": "Segoe MDL2 Assets", 179 | "Text": "", 180 | "TextColor": "#FF808080", 181 | "HoveredTextColor": "#FFFFFFFF", 182 | "ClickedTextColor": "#FF808080" 183 | }, 184 | "ShuffleOnContent": { 185 | "ContentType": 1, 186 | "ImagePath": null, 187 | "HoveredImagePath": null, 188 | "ClickedImagePath": null, 189 | "FontFamily": "Segoe MDL2 Assets", 190 | "Text": "", 191 | "TextColor": "#FFE61919", 192 | "HoveredTextColor": "#FFED7979", 193 | "ClickedTextColor": "#FFFF0000" 194 | }, 195 | "CornerRadius": 3, 196 | "BackgroundColor": "#00FFFFFF", 197 | "HoveredBackgroundColor": "#00FFFFFF", 198 | "ClickedBackgroundColor": "#00FFFFFF", 199 | "IsVisible": true, 200 | "Width": 20.0, 201 | "Height": 18.0, 202 | "XPosition": 104.0, 203 | "YPosition": 18.0, 204 | "Anchor": 3 205 | }, 206 | "VolumeButton": { 207 | "PopupWidth": 190.0, 208 | "PopupHeight": 32.0, 209 | "XPopupOffset": 24.5, 210 | "YPopupOffset": -4.0, 211 | "IsHorizontal": false, 212 | "NoVolumeContent": { 213 | "ContentType": 1, 214 | "ImagePath": null, 215 | "HoveredImagePath": null, 216 | "ClickedImagePath": null, 217 | "FontFamily": "Segoe MDL2 Assets", 218 | "Text": "", 219 | "TextColor": "#FF808080", 220 | "HoveredTextColor": "#FFFFFFFF", 221 | "ClickedTextColor": "#FFFFFFFF" 222 | }, 223 | "LowVolumeContent": { 224 | "ContentType": 1, 225 | "ImagePath": null, 226 | "HoveredImagePath": null, 227 | "ClickedImagePath": null, 228 | "FontFamily": "Segoe MDL2 Assets", 229 | "Text": "", 230 | "TextColor": "#FF808080", 231 | "HoveredTextColor": "#FFFFFFFF", 232 | "ClickedTextColor": "#FFFFFFFF" 233 | }, 234 | "MidVolumeContent": { 235 | "ContentType": 1, 236 | "ImagePath": null, 237 | "HoveredImagePath": null, 238 | "ClickedImagePath": null, 239 | "FontFamily": "Segoe MDL2 Assets", 240 | "Text": "", 241 | "TextColor": "#FF808080", 242 | "HoveredTextColor": "#FFFFFFFF", 243 | "ClickedTextColor": "#FFFFFFFF" 244 | }, 245 | "HighVolumeContent": { 246 | "ContentType": 1, 247 | "ImagePath": null, 248 | "HoveredImagePath": null, 249 | "ClickedImagePath": null, 250 | "FontFamily": "Segoe MDL2 Assets", 251 | "Text": "", 252 | "TextColor": "#FF808080", 253 | "HoveredTextColor": "#FFFFFFFF", 254 | "ClickedTextColor": "#FFFFFFFF" 255 | }, 256 | "VolumeBarForegroundColor": "#FFE64848", 257 | "VolumeBarForegroundGradientColor": "#FFE61919", 258 | "VolumeBarBackgroundColor": "#FF808080", 259 | "PopupBackgroundColor": "#C9101010", 260 | "VolumeBarThumbColor": "#FFE1E1E1", 261 | "VolumeBarThumbBorderColor": "#FFE64848", 262 | "CornerRadius": 3, 263 | "BackgroundColor": "#00FFFFFF", 264 | "HoveredBackgroundColor": "#00FFFFFF", 265 | "ClickedBackgroundColor": "#00FFFFFF", 266 | "IsVisible": true, 267 | "Width": 15.0, 268 | "Height": 15.0, 269 | "XPosition": 4.0, 270 | "YPosition": 19.0, 271 | "Anchor": 3 272 | }, 273 | "ProgressBar": { 274 | "ForegroundColor": "#FFE64848", 275 | "ForegroundGradientColor": "#FFE61919", 276 | "BackgroundColor": "#FF808080", 277 | "HoverColor": "#FFED7979", 278 | "ProgressBarThumbColor": "#FFF1DFDF", 279 | "ThumbBorderColor": "#FFE64848", 280 | "IsVisible": true, 281 | "Width": 147.0, 282 | "Height": 3.0, 283 | "XPosition": 0.0, 284 | "YPosition": -1.0, 285 | "Anchor": 6 286 | }, 287 | "LikeButton": { 288 | "LikeContent": { 289 | "ContentType": 1, 290 | "ImagePath": null, 291 | "HoveredImagePath": null, 292 | "ClickedImagePath": null, 293 | "FontFamily": "Segoe MDL2 Assets", 294 | "Text": "", 295 | "TextColor": "#FF808080", 296 | "HoveredTextColor": "#FFFFFFFF", 297 | "ClickedTextColor": "#FFFF0000" 298 | }, 299 | "DislikeContent": { 300 | "ContentType": 1, 301 | "ImagePath": null, 302 | "HoveredImagePath": null, 303 | "ClickedImagePath": null, 304 | "FontFamily": "Segoe MDL2 Assets", 305 | "Text": "", 306 | "TextColor": "#FFE61919", 307 | "HoveredTextColor": "#FFED7979", 308 | "ClickedTextColor": "#FFFFFFFF" 309 | }, 310 | "CornerRadius": 3, 311 | "BackgroundColor": "#00FFFFFF", 312 | "HoveredBackgroundColor": "#00FFFFFF", 313 | "ClickedBackgroundColor": "#00FFFFFF", 314 | "IsVisible": true, 315 | "Width": 20.0, 316 | "Height": 15.0, 317 | "XPosition": 127.0, 318 | "YPosition": 19.0, 319 | "Anchor": 3 320 | } 321 | } -------------------------------------------------------------------------------- /Profiles/Compact Spotify (Red)/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Compact version of spotify interface with red color.", 3 | "Authors": "JR_Hille" 4 | } -------------------------------------------------------------------------------- /Profiles/Compact/Compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Compact/Compact.png -------------------------------------------------------------------------------- /Profiles/Compact/Compact.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v1.0.1", 3 | "Name": "Compact", 4 | "AlbumArtPopup": { 5 | "IsVisible": true, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "IsVisible": true, 14 | "Width": 25.0, 15 | "Height": 25.0, 16 | "XPosition": 5.0, 17 | "YPosition": -1.5, 18 | "Anchor": 9 19 | }, 20 | "GeneralSettings": { 21 | "Width": 210.0, 22 | "Height": 30.0, 23 | "BackgroundColor": "#00FFFFFF" 24 | }, 25 | "CustomLabels": [ 26 | { 27 | "FontFamily": "Segoe UI", 28 | "FontSize": 12.0, 29 | "Color": "#FFC3C3C3", 30 | "FormatString": "{artist} - {song}", 31 | "Alignment": 2, 32 | "Name": "Artist - Name", 33 | "ScrollSpeed": 4000, 34 | "TextOverflow": 1, 35 | "ScrollBehavior": 0, 36 | "FadeEffect": 2, 37 | "LeftFadeOffset": 0.1, 38 | "RightFadeOffset": 0.9, 39 | "IsVisible": true, 40 | "Width": 163.0, 41 | "Height": 20.0, 42 | "XPosition": 35.0, 43 | "YPosition": -2.0, 44 | "Anchor": 9 45 | } 46 | ], 47 | "NextButton": { 48 | "Content": { 49 | "ContentType": 1, 50 | "ImagePath": null, 51 | "HoveredImagePath": null, 52 | "ClickedImagePath": null, 53 | "FontFamily": "Segoe MDL2 Assets", 54 | "Text": "", 55 | "TextColor": "#FFFFFFFF", 56 | "HoveredTextColor": "#FFFFFFFF", 57 | "ClickedTextColor": "#FFFFFFFF" 58 | }, 59 | "CornerRadius": 10, 60 | "BackgroundColor": "#00FFFFFF", 61 | "HoveredBackgroundColor": "#19FFFFFF", 62 | "ClickedBackgroundColor": "#0FFFFFFF", 63 | "IsVisible": true, 64 | "Width": 24.0, 65 | "Height": 12.0, 66 | "XPosition": 135.0, 67 | "YPosition": 13.5, 68 | "Anchor": 9 69 | }, 70 | "PreviousButton": { 71 | "Content": { 72 | "ContentType": 1, 73 | "ImagePath": null, 74 | "HoveredImagePath": null, 75 | "ClickedImagePath": null, 76 | "FontFamily": "Segoe MDL2 Assets", 77 | "Text": "", 78 | "TextColor": "#FFFFFFFF", 79 | "HoveredTextColor": "#FFFFFFFF", 80 | "ClickedTextColor": "#FFFFFFFF" 81 | }, 82 | "CornerRadius": 10, 83 | "BackgroundColor": "#00FFFFFF", 84 | "HoveredBackgroundColor": "#19FFFFFF", 85 | "ClickedBackgroundColor": "#0FFFFFFF", 86 | "IsVisible": true, 87 | "Width": 30.0, 88 | "Height": 12.0, 89 | "XPosition": 45.0, 90 | "YPosition": 13.5, 91 | "Anchor": 9 92 | }, 93 | "PlayPauseButton": { 94 | "PlayContent": { 95 | "ContentType": 1, 96 | "ImagePath": null, 97 | "HoveredImagePath": null, 98 | "ClickedImagePath": null, 99 | "FontFamily": "Segoe MDL2 Assets", 100 | "Text": "", 101 | "TextColor": "#FFFFFFFF", 102 | "HoveredTextColor": "#FFFFFFFF", 103 | "ClickedTextColor": "#FFFFFFFF" 104 | }, 105 | "PauseContent": { 106 | "ContentType": 1, 107 | "ImagePath": null, 108 | "HoveredImagePath": null, 109 | "ClickedImagePath": null, 110 | "FontFamily": "Segoe MDL2 Assets", 111 | "Text": "", 112 | "TextColor": "#FFFFFFFF", 113 | "HoveredTextColor": "#FFFFFFFF", 114 | "ClickedTextColor": "#FFFFFFFF" 115 | }, 116 | "CornerRadius": 10, 117 | "BackgroundColor": "#00FFFFFF", 118 | "HoveredBackgroundColor": "#19FFFFFF", 119 | "ClickedBackgroundColor": "#0FFFFFFF", 120 | "IsVisible": true, 121 | "Width": 24.0, 122 | "Height": 12.0, 123 | "XPosition": 90.0, 124 | "YPosition": 13.5, 125 | "Anchor": 9 126 | }, 127 | "RepeatModeButton": { 128 | "RepeatOffContent": { 129 | "ContentType": 1, 130 | "ImagePath": null, 131 | "HoveredImagePath": null, 132 | "ClickedImagePath": null, 133 | "FontFamily": "Segoe MDL2 Assets", 134 | "Text": "", 135 | "TextColor": "#FF696969", 136 | "HoveredTextColor": "#FFFFFFFF", 137 | "ClickedTextColor": "#FF808080" 138 | }, 139 | "RepeatContextContent": { 140 | "ContentType": 1, 141 | "ImagePath": null, 142 | "HoveredImagePath": null, 143 | "ClickedImagePath": null, 144 | "FontFamily": "Segoe MDL2 Assets", 145 | "Text": "", 146 | "TextColor": "#FF1E90FF", 147 | "HoveredTextColor": "#FF6495ED", 148 | "ClickedTextColor": "#FF4169E1" 149 | }, 150 | "RepeatTrackContent": { 151 | "ContentType": 1, 152 | "ImagePath": null, 153 | "HoveredImagePath": null, 154 | "ClickedImagePath": null, 155 | "FontFamily": "Segoe MDL2 Assets", 156 | "Text": "", 157 | "TextColor": "#FF1E90FF", 158 | "HoveredTextColor": "#FF6495ED", 159 | "ClickedTextColor": "#FF4169E1" 160 | }, 161 | "CornerRadius": 10, 162 | "BackgroundColor": "#00FFFFFF", 163 | "HoveredBackgroundColor": "#19FFFFFF", 164 | "ClickedBackgroundColor": "#0FFFFFFF", 165 | "IsVisible": false, 166 | "Width": 40.0, 167 | "Height": 15.0, 168 | "XPosition": 450.0, 169 | "YPosition": 3.0, 170 | "Anchor": 9 171 | }, 172 | "ShuffleModeButton": { 173 | "ShuffleOffContent": { 174 | "ContentType": 1, 175 | "ImagePath": null, 176 | "HoveredImagePath": null, 177 | "ClickedImagePath": null, 178 | "FontFamily": "Segoe MDL2 Assets", 179 | "Text": "", 180 | "TextColor": "#FF696969", 181 | "HoveredTextColor": "#FFFFFFFF", 182 | "ClickedTextColor": "#FF808080" 183 | }, 184 | "ShuffleOnContent": { 185 | "ContentType": 1, 186 | "ImagePath": null, 187 | "HoveredImagePath": null, 188 | "ClickedImagePath": null, 189 | "FontFamily": "Segoe MDL2 Assets", 190 | "Text": "", 191 | "TextColor": "#FF1E90FF", 192 | "HoveredTextColor": "#FF6495ED", 193 | "ClickedTextColor": "#FF4169E1" 194 | }, 195 | "CornerRadius": 10, 196 | "BackgroundColor": "#00FFFFFF", 197 | "HoveredBackgroundColor": "#19FFFFFF", 198 | "ClickedBackgroundColor": "#0FFFFFFF", 199 | "IsVisible": false, 200 | "Width": 40.0, 201 | "Height": 15.0, 202 | "XPosition": 290.0, 203 | "YPosition": 3.0, 204 | "Anchor": 9 205 | }, 206 | "VolumeButton": { 207 | "PopupWidth": 190.0, 208 | "PopupHeight": 36.0, 209 | "XPopupOffset": 24.5, 210 | "YPopupOffset": -11.0, 211 | "IsHorizontal": false, 212 | "NoVolumeContent": { 213 | "ContentType": 1, 214 | "ImagePath": null, 215 | "HoveredImagePath": null, 216 | "ClickedImagePath": null, 217 | "FontFamily": "Segoe MDL2 Assets", 218 | "Text": "", 219 | "TextColor": "#FFFFFFFF", 220 | "HoveredTextColor": "#FFFFFFFF", 221 | "ClickedTextColor": "#FFFFFFFF" 222 | }, 223 | "LowVolumeContent": { 224 | "ContentType": 1, 225 | "ImagePath": null, 226 | "HoveredImagePath": null, 227 | "ClickedImagePath": null, 228 | "FontFamily": "Segoe MDL2 Assets", 229 | "Text": "", 230 | "TextColor": "#FFFFFFFF", 231 | "HoveredTextColor": "#FFFFFFFF", 232 | "ClickedTextColor": "#FFFFFFFF" 233 | }, 234 | "MidVolumeContent": { 235 | "ContentType": 1, 236 | "ImagePath": null, 237 | "HoveredImagePath": null, 238 | "ClickedImagePath": null, 239 | "FontFamily": "Segoe MDL2 Assets", 240 | "Text": "", 241 | "TextColor": "#FFFFFFFF", 242 | "HoveredTextColor": "#FFFFFFFF", 243 | "ClickedTextColor": "#FFFFFFFF" 244 | }, 245 | "HighVolumeContent": { 246 | "ContentType": 1, 247 | "ImagePath": null, 248 | "HoveredImagePath": null, 249 | "ClickedImagePath": null, 250 | "FontFamily": "Segoe MDL2 Assets", 251 | "Text": "", 252 | "TextColor": "#FFFFFFFF", 253 | "HoveredTextColor": "#FFFFFFFF", 254 | "ClickedTextColor": "#FFFFFFFF" 255 | }, 256 | "VolumeBarForegroundColor": "#FF1E90FF", 257 | "VolumeBarForegroundGradientColor": "#FF0052A3", 258 | "VolumeBarBackgroundColor": "#FF696969", 259 | "PopupBackgroundColor": "#FFA9A9A9", 260 | "VolumeBarThumbColor": "#FF696969", 261 | "VolumeBarThumbBorderColor": "#FF1E90FF", 262 | "CornerRadius": 10, 263 | "BackgroundColor": "#00FFFFFF", 264 | "HoveredBackgroundColor": "#19FFFFFF", 265 | "ClickedBackgroundColor": "#0FFFFFFF", 266 | "IsVisible": false, 267 | "Width": 18.0, 268 | "Height": 18.0, 269 | "XPosition": 251.0, 270 | "YPosition": 6.0, 271 | "Anchor": 9 272 | }, 273 | "ProgressBar": { 274 | "ForegroundColor": "#FF1E90FF", 275 | "ForegroundGradientColor": "#FF0052A3", 276 | "BackgroundColor": "#FF696969", 277 | "HoverColor": "#FF00BFFF", 278 | "ProgressBarThumbColor": "#FF696969", 279 | "ThumbBorderColor": "#FF00BFFF", 280 | "IsVisible": true, 281 | "Width": 200.0, 282 | "Height": 2.5, 283 | "XPosition": 0.0, 284 | "YPosition": 26.0, 285 | "Anchor": 9 286 | }, 287 | "LikeButton": { 288 | "LikeContent": { 289 | "ContentType": 1, 290 | "ImagePath": null, 291 | "HoveredImagePath": null, 292 | "ClickedImagePath": null, 293 | "FontFamily": "Segoe MDL2 Assets", 294 | "Text": "", 295 | "TextColor": "#FFFFFFFF", 296 | "HoveredTextColor": "#FFFFFFFF", 297 | "ClickedTextColor": "#FFFFFFFF" 298 | }, 299 | "DislikeContent": { 300 | "ContentType": 1, 301 | "ImagePath": null, 302 | "HoveredImagePath": null, 303 | "ClickedImagePath": null, 304 | "FontFamily": "Segoe MDL2 Assets", 305 | "Text": "", 306 | "TextColor": "#FFFF0000", 307 | "HoveredTextColor": "#FFDD3636", 308 | "ClickedTextColor": "#FFA51919" 309 | }, 310 | "CornerRadius": 10, 311 | "BackgroundColor": "#00FFFFFF", 312 | "HoveredBackgroundColor": "#19FFFFFF", 313 | "ClickedBackgroundColor": "#0FFFFFFF", 314 | "IsVisible": false, 315 | "Width": 40.0, 316 | "Height": 15.0, 317 | "XPosition": 0.0, 318 | "YPosition": 3.0, 319 | "Anchor": 9 320 | } 321 | } -------------------------------------------------------------------------------- /Profiles/Compact/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "The standard Compact profile, perfect for minimal space usage.", 3 | "Authors": "svr333" 4 | } -------------------------------------------------------------------------------- /Profiles/Default (Compact)/Default (Compact).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Default (Compact)/Default (Compact).png -------------------------------------------------------------------------------- /Profiles/Default (Compact)/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A compacted version of the Default profile, for those who like functionality but don't want to occupy a lot of space.", 3 | "Authors": "svr333", 4 | "Version": "v1.0.0" 5 | } -------------------------------------------------------------------------------- /Profiles/Default Clean/Default Clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Default Clean/Default Clean.png -------------------------------------------------------------------------------- /Profiles/Default Clean/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A simplified version of Default, with controls front and center", 3 | "Authors": "Joseph Hansen" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/Default/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Default/Default.png -------------------------------------------------------------------------------- /Profiles/Default/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "The default profile, with full functionality. Occupies a wide space.", 3 | "Authors": "Dsafa, svr333" 4 | } -------------------------------------------------------------------------------- /Profiles/Dynamic Bar/Dynamic Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Dynamic Bar/Dynamic Bar.png -------------------------------------------------------------------------------- /Profiles/Dynamic Bar/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A large profile with enough room for text and a big progress bar [450x40]. Can be resized by changing general & progress bar width.", 3 | "Authors": "Biiox" 4 | } -------------------------------------------------------------------------------- /Profiles/Essentials 2/Essentials 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Essentials 2/Essentials 2.png -------------------------------------------------------------------------------- /Profiles/Essentials 2/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Essentials but with a like button that is easily swapped with volume, shuffle, etc. Spotify green motif for like button and optional volume/progress bars.", 3 | "Authors": "Zimpery" 4 | } -------------------------------------------------------------------------------- /Profiles/Essentials/Essentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Essentials/Essentials.png -------------------------------------------------------------------------------- /Profiles/Essentials/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Small, non-distracting, and only what you need. Click album art to pause/play. Optional mini progress bar. Built for Windows 10 small taskbar from Default.", 3 | "Authors": "Zimpery" 4 | } -------------------------------------------------------------------------------- /Profiles/Idle/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Idle/Idle.png -------------------------------------------------------------------------------- /Profiles/Idle/Idle.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v1.0.1", 3 | "Name": "Idle", 4 | "AlbumArtPopup": { 5 | "IsVisible": false, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "IsVisible": true, 14 | "Width": 30.0, 15 | "Height": 30.0, 16 | "XPosition": 0.0, 17 | "YPosition": 0.0, 18 | "Anchor": 9 19 | }, 20 | "GeneralSettings": { 21 | "Width": 40.0, 22 | "Height": 30.0, 23 | "BackgroundColor": "#00FFFFFF" 24 | }, 25 | "CustomLabels": [], 26 | "NextButton": { 27 | "Content": { 28 | "ContentType": 1, 29 | "ImagePath": null, 30 | "HoveredImagePath": null, 31 | "ClickedImagePath": null, 32 | "FontFamily": "Segoe MDL2 Assets", 33 | "Text": "", 34 | "TextColor": "#FFFFFFFF", 35 | "HoveredTextColor": "#FFFFFFFF", 36 | "ClickedTextColor": "#FFFFFFFF" 37 | }, 38 | "CornerRadius": 10, 39 | "BackgroundColor": "#00FFFFFF", 40 | "HoveredBackgroundColor": "#19FFFFFF", 41 | "ClickedBackgroundColor": "#0FFFFFFF", 42 | "IsVisible": false, 43 | "Width": 40.0, 44 | "Height": 15.0, 45 | "XPosition": 410.0, 46 | "YPosition": 3.0, 47 | "Anchor": 9 48 | }, 49 | "PreviousButton": { 50 | "Content": { 51 | "ContentType": 1, 52 | "ImagePath": null, 53 | "HoveredImagePath": null, 54 | "ClickedImagePath": null, 55 | "FontFamily": "Segoe MDL2 Assets", 56 | "Text": "", 57 | "TextColor": "#FFFFFFFF", 58 | "HoveredTextColor": "#FFFFFFFF", 59 | "ClickedTextColor": "#FFFFFFFF" 60 | }, 61 | "CornerRadius": 10, 62 | "BackgroundColor": "#00FFFFFF", 63 | "HoveredBackgroundColor": "#19FFFFFF", 64 | "ClickedBackgroundColor": "#0FFFFFFF", 65 | "IsVisible": false, 66 | "Width": 40.0, 67 | "Height": 15.0, 68 | "XPosition": 330.0, 69 | "YPosition": 3.0, 70 | "Anchor": 9 71 | }, 72 | "PlayPauseButton": { 73 | "PlayContent": { 74 | "ContentType": 1, 75 | "ImagePath": null, 76 | "HoveredImagePath": null, 77 | "ClickedImagePath": null, 78 | "FontFamily": "Segoe MDL2 Assets", 79 | "Text": "", 80 | "TextColor": "#FFFFFFFF", 81 | "HoveredTextColor": "#FFFFFFFF", 82 | "ClickedTextColor": "#FFFFFFFF" 83 | }, 84 | "PauseContent": { 85 | "ContentType": 1, 86 | "ImagePath": null, 87 | "HoveredImagePath": null, 88 | "ClickedImagePath": null, 89 | "FontFamily": "Segoe MDL2 Assets", 90 | "Text": "", 91 | "TextColor": "#FFFFFFFF", 92 | "HoveredTextColor": "#FFFFFFFF", 93 | "ClickedTextColor": "#FFFFFFFF" 94 | }, 95 | "CornerRadius": 10, 96 | "BackgroundColor": "#00FFFFFF", 97 | "HoveredBackgroundColor": "#19FFFFFF", 98 | "ClickedBackgroundColor": "#0FFFFFFF", 99 | "IsVisible": false, 100 | "Width": 40.0, 101 | "Height": 15.0, 102 | "XPosition": 370.0, 103 | "YPosition": 3.0, 104 | "Anchor": 9 105 | }, 106 | "RepeatModeButton": { 107 | "RepeatOffContent": { 108 | "ContentType": 1, 109 | "ImagePath": null, 110 | "HoveredImagePath": null, 111 | "ClickedImagePath": null, 112 | "FontFamily": "Segoe MDL2 Assets", 113 | "Text": "", 114 | "TextColor": "#FF696969", 115 | "HoveredTextColor": "#FFFFFFFF", 116 | "ClickedTextColor": "#FF808080" 117 | }, 118 | "RepeatContextContent": { 119 | "ContentType": 1, 120 | "ImagePath": null, 121 | "HoveredImagePath": null, 122 | "ClickedImagePath": null, 123 | "FontFamily": "Segoe MDL2 Assets", 124 | "Text": "", 125 | "TextColor": "#FF1E90FF", 126 | "HoveredTextColor": "#FF6495ED", 127 | "ClickedTextColor": "#FF4169E1" 128 | }, 129 | "RepeatTrackContent": { 130 | "ContentType": 1, 131 | "ImagePath": null, 132 | "HoveredImagePath": null, 133 | "ClickedImagePath": null, 134 | "FontFamily": "Segoe MDL2 Assets", 135 | "Text": "", 136 | "TextColor": "#FF1E90FF", 137 | "HoveredTextColor": "#FF6495ED", 138 | "ClickedTextColor": "#FF4169E1" 139 | }, 140 | "CornerRadius": 10, 141 | "BackgroundColor": "#00FFFFFF", 142 | "HoveredBackgroundColor": "#19FFFFFF", 143 | "ClickedBackgroundColor": "#0FFFFFFF", 144 | "IsVisible": false, 145 | "Width": 40.0, 146 | "Height": 15.0, 147 | "XPosition": 450.0, 148 | "YPosition": 3.0, 149 | "Anchor": 9 150 | }, 151 | "ShuffleModeButton": { 152 | "ShuffleOffContent": { 153 | "ContentType": 1, 154 | "ImagePath": null, 155 | "HoveredImagePath": null, 156 | "ClickedImagePath": null, 157 | "FontFamily": "Segoe MDL2 Assets", 158 | "Text": "", 159 | "TextColor": "#FF696969", 160 | "HoveredTextColor": "#FFFFFFFF", 161 | "ClickedTextColor": "#FF808080" 162 | }, 163 | "ShuffleOnContent": { 164 | "ContentType": 1, 165 | "ImagePath": null, 166 | "HoveredImagePath": null, 167 | "ClickedImagePath": null, 168 | "FontFamily": "Segoe MDL2 Assets", 169 | "Text": "", 170 | "TextColor": "#FF1E90FF", 171 | "HoveredTextColor": "#FF6495ED", 172 | "ClickedTextColor": "#FF4169E1" 173 | }, 174 | "CornerRadius": 10, 175 | "BackgroundColor": "#00FFFFFF", 176 | "HoveredBackgroundColor": "#19FFFFFF", 177 | "ClickedBackgroundColor": "#0FFFFFFF", 178 | "IsVisible": false, 179 | "Width": 40.0, 180 | "Height": 15.0, 181 | "XPosition": 290.0, 182 | "YPosition": 3.0, 183 | "Anchor": 9 184 | }, 185 | "VolumeButton": { 186 | "PopupWidth": 190.0, 187 | "PopupHeight": 36.0, 188 | "XPopupOffset": 24.5, 189 | "YPopupOffset": -11.0, 190 | "IsHorizontal": false, 191 | "NoVolumeContent": { 192 | "ContentType": 1, 193 | "ImagePath": null, 194 | "HoveredImagePath": null, 195 | "ClickedImagePath": null, 196 | "FontFamily": "Segoe MDL2 Assets", 197 | "Text": "", 198 | "TextColor": "#FFFFFFFF", 199 | "HoveredTextColor": "#FFFFFFFF", 200 | "ClickedTextColor": "#FFFFFFFF" 201 | }, 202 | "LowVolumeContent": { 203 | "ContentType": 1, 204 | "ImagePath": null, 205 | "HoveredImagePath": null, 206 | "ClickedImagePath": null, 207 | "FontFamily": "Segoe MDL2 Assets", 208 | "Text": "", 209 | "TextColor": "#FFFFFFFF", 210 | "HoveredTextColor": "#FFFFFFFF", 211 | "ClickedTextColor": "#FFFFFFFF" 212 | }, 213 | "MidVolumeContent": { 214 | "ContentType": 1, 215 | "ImagePath": null, 216 | "HoveredImagePath": null, 217 | "ClickedImagePath": null, 218 | "FontFamily": "Segoe MDL2 Assets", 219 | "Text": "", 220 | "TextColor": "#FFFFFFFF", 221 | "HoveredTextColor": "#FFFFFFFF", 222 | "ClickedTextColor": "#FFFFFFFF" 223 | }, 224 | "HighVolumeContent": { 225 | "ContentType": 1, 226 | "ImagePath": null, 227 | "HoveredImagePath": null, 228 | "ClickedImagePath": null, 229 | "FontFamily": "Segoe MDL2 Assets", 230 | "Text": "", 231 | "TextColor": "#FFFFFFFF", 232 | "HoveredTextColor": "#FFFFFFFF", 233 | "ClickedTextColor": "#FFFFFFFF" 234 | }, 235 | "VolumeBarForegroundColor": "#FF1E90FF", 236 | "VolumeBarForegroundGradientColor": "#FF0052A3", 237 | "VolumeBarBackgroundColor": "#FF696969", 238 | "PopupBackgroundColor": "#FFA9A9A9", 239 | "VolumeBarThumbColor": "#FF696969", 240 | "VolumeBarThumbBorderColor": "#FF1E90FF", 241 | "CornerRadius": 10, 242 | "BackgroundColor": "#00FFFFFF", 243 | "HoveredBackgroundColor": "#19FFFFFF", 244 | "ClickedBackgroundColor": "#0FFFFFFF", 245 | "IsVisible": false, 246 | "Width": 18.0, 247 | "Height": 18.0, 248 | "XPosition": 251.0, 249 | "YPosition": 6.0, 250 | "Anchor": 9 251 | }, 252 | "ProgressBar": { 253 | "ForegroundColor": "#FF1E90FF", 254 | "ForegroundGradientColor": "#FF0052A3", 255 | "BackgroundColor": "#FF696969", 256 | "HoverColor": "#FF00BFFF", 257 | "ProgressBarThumbColor": "#FF696969", 258 | "ThumbBorderColor": "#FF00BFFF", 259 | "IsVisible": false, 260 | "Width": 130.0, 261 | "Height": 4.0, 262 | "XPosition": 325.0, 263 | "YPosition": 22.0, 264 | "Anchor": 9 265 | }, 266 | "LikeButton": { 267 | "LikeContent": { 268 | "ContentType": 1, 269 | "ImagePath": null, 270 | "HoveredImagePath": null, 271 | "ClickedImagePath": null, 272 | "FontFamily": "Segoe MDL2 Assets", 273 | "Text": "", 274 | "TextColor": "#FFFFFFFF", 275 | "HoveredTextColor": "#FFFFFFFF", 276 | "ClickedTextColor": "#FFFFFFFF" 277 | }, 278 | "DislikeContent": { 279 | "ContentType": 1, 280 | "ImagePath": null, 281 | "HoveredImagePath": null, 282 | "ClickedImagePath": null, 283 | "FontFamily": "Segoe MDL2 Assets", 284 | "Text": "", 285 | "TextColor": "#FFFF0000", 286 | "HoveredTextColor": "#FFDD3636", 287 | "ClickedTextColor": "#FFA51919" 288 | }, 289 | "CornerRadius": 10, 290 | "BackgroundColor": "#00FFFFFF", 291 | "HoveredBackgroundColor": "#19FFFFFF", 292 | "ClickedBackgroundColor": "#0FFFFFFF", 293 | "IsVisible": false, 294 | "Width": 40.0, 295 | "Height": 15.0, 296 | "XPosition": 0.0, 297 | "YPosition": 3.0, 298 | "Anchor": 9 299 | } 300 | } -------------------------------------------------------------------------------- /Profiles/Idle/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "The standard idle profile, very small and optimally used together with the automatic idle profile switch functionality.", 3 | "Authors": "svr333" 4 | } -------------------------------------------------------------------------------- /Profiles/Minimal Rust/Minimal Rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Minimal Rust/Minimal Rust.png -------------------------------------------------------------------------------- /Profiles/Minimal Rust/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A slightly less minimal profile with control buttons and a rusty accent color.", 3 | "Authors": "ohitsdylan" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/Minimal/Minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Minimal/Minimal.png -------------------------------------------------------------------------------- /Profiles/Minimal/Minimal.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v0.0.1", 3 | "Name": "Minimal", 4 | "AlbumArtPopup": { 5 | "IsVisible": false, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "IsVisible": false, 14 | "Width": 30.0, 15 | "Height": 30.0, 16 | "XPosition": 210.0, 17 | "YPosition": 0.0, 18 | "Anchor": 9 19 | }, 20 | "GeneralSettings": { 21 | "Width": 176.0, 22 | "Height": 30.0, 23 | "BackgroundColor": "#00FFFFFF" 24 | }, 25 | "CustomLabels": [ 26 | { 27 | "FontFamily": "Segoe UI", 28 | "FontSize": 12.0, 29 | "Color": "#FFFFFFFF", 30 | "FormatString": "{song} - {artist}", 31 | "Alignment": 0, 32 | "Name": "Label", 33 | "ScrollSpeed": 5000, 34 | "TextOverflow": 1, 35 | "ScrollBehavior": 2, 36 | "FadeEffect": 1, 37 | "LeftFadeOffset": 0.0, 38 | "RightFadeOffset": 0.79736842105263162, 39 | "IsVisible": true, 40 | "Width": 152.0, 41 | "Height": 30.0, 42 | "XPosition": 24.0, 43 | "YPosition": 6.0, 44 | "Anchor": 9 45 | } 46 | ], 47 | "NextButton": { 48 | "Content": { 49 | "ContentType": 1, 50 | "ImagePath": null, 51 | "HoveredImagePath": null, 52 | "ClickedImagePath": null, 53 | "FontFamily": "Segoe MDL2 Assets", 54 | "Text": "", 55 | "TextColor": "#FFFFFFFF", 56 | "HoveredTextColor": "#FFFFFFFF", 57 | "ClickedTextColor": "#FFFFFFFF" 58 | }, 59 | "CornerRadius": 10, 60 | "BackgroundColor": "#00FFFFFF", 61 | "HoveredBackgroundColor": "#19FFFFFF", 62 | "ClickedBackgroundColor": "#0FFFFFFF", 63 | "IsVisible": false, 64 | "Width": 40.0, 65 | "Height": 15.0, 66 | "XPosition": 410.0, 67 | "YPosition": 3.0, 68 | "Anchor": 9 69 | }, 70 | "PreviousButton": { 71 | "Content": { 72 | "ContentType": 1, 73 | "ImagePath": null, 74 | "HoveredImagePath": null, 75 | "ClickedImagePath": null, 76 | "FontFamily": "Segoe MDL2 Assets", 77 | "Text": "", 78 | "TextColor": "#FFFFFFFF", 79 | "HoveredTextColor": "#FFFFFFFF", 80 | "ClickedTextColor": "#FFFFFFFF" 81 | }, 82 | "CornerRadius": 10, 83 | "BackgroundColor": "#00FFFFFF", 84 | "HoveredBackgroundColor": "#19FFFFFF", 85 | "ClickedBackgroundColor": "#0FFFFFFF", 86 | "IsVisible": false, 87 | "Width": 40.0, 88 | "Height": 15.0, 89 | "XPosition": 330.0, 90 | "YPosition": 3.0, 91 | "Anchor": 9 92 | }, 93 | "PlayPauseButton": { 94 | "PlayContent": { 95 | "ContentType": 1, 96 | "ImagePath": null, 97 | "HoveredImagePath": null, 98 | "ClickedImagePath": null, 99 | "FontFamily": "Segoe MDL2 Assets", 100 | "Text": "", 101 | "TextColor": "#FFFFFFFF", 102 | "HoveredTextColor": "#FFFFFFFF", 103 | "ClickedTextColor": "#FFFFFFFF" 104 | }, 105 | "PauseContent": { 106 | "ContentType": 1, 107 | "ImagePath": null, 108 | "HoveredImagePath": null, 109 | "ClickedImagePath": null, 110 | "FontFamily": "Segoe MDL2 Assets", 111 | "Text": "", 112 | "TextColor": "#FFFFFFFF", 113 | "HoveredTextColor": "#FFFFFFFF", 114 | "ClickedTextColor": "#FFFFFFFF" 115 | }, 116 | "CornerRadius": 10, 117 | "BackgroundColor": "#00FFFFFF", 118 | "HoveredBackgroundColor": "#00FFFFFF", 119 | "ClickedBackgroundColor": "#00FFFFFF", 120 | "IsVisible": true, 121 | "Width": 20.0, 122 | "Height": 12.0, 123 | "XPosition": 0.0, 124 | "YPosition": 9.0, 125 | "Anchor": 9 126 | }, 127 | "RepeatModeButton": { 128 | "RepeatOffContent": { 129 | "ContentType": 1, 130 | "ImagePath": null, 131 | "HoveredImagePath": null, 132 | "ClickedImagePath": null, 133 | "FontFamily": "Segoe MDL2 Assets", 134 | "Text": "", 135 | "TextColor": "#FF696969", 136 | "HoveredTextColor": "#FFFFFFFF", 137 | "ClickedTextColor": "#FF808080" 138 | }, 139 | "RepeatContextContent": { 140 | "ContentType": 1, 141 | "ImagePath": null, 142 | "HoveredImagePath": null, 143 | "ClickedImagePath": null, 144 | "FontFamily": "Segoe MDL2 Assets", 145 | "Text": "", 146 | "TextColor": "#FF1E90FF", 147 | "HoveredTextColor": "#FF6495ED", 148 | "ClickedTextColor": "#FF4169E1" 149 | }, 150 | "RepeatTrackContent": { 151 | "ContentType": 1, 152 | "ImagePath": null, 153 | "HoveredImagePath": null, 154 | "ClickedImagePath": null, 155 | "FontFamily": "Segoe MDL2 Assets", 156 | "Text": "", 157 | "TextColor": "#FF1E90FF", 158 | "HoveredTextColor": "#FF6495ED", 159 | "ClickedTextColor": "#FF4169E1" 160 | }, 161 | "CornerRadius": 10, 162 | "BackgroundColor": "#00FFFFFF", 163 | "HoveredBackgroundColor": "#19FFFFFF", 164 | "ClickedBackgroundColor": "#0FFFFFFF", 165 | "IsVisible": false, 166 | "Width": 40.0, 167 | "Height": 15.0, 168 | "XPosition": 450.0, 169 | "YPosition": 3.0, 170 | "Anchor": 9 171 | }, 172 | "ShuffleModeButton": { 173 | "ShuffleOffContent": { 174 | "ContentType": 1, 175 | "ImagePath": null, 176 | "HoveredImagePath": null, 177 | "ClickedImagePath": null, 178 | "FontFamily": "Segoe MDL2 Assets", 179 | "Text": "", 180 | "TextColor": "#FF696969", 181 | "HoveredTextColor": "#FFFFFFFF", 182 | "ClickedTextColor": "#FF808080" 183 | }, 184 | "ShuffleOnContent": { 185 | "ContentType": 1, 186 | "ImagePath": null, 187 | "HoveredImagePath": null, 188 | "ClickedImagePath": null, 189 | "FontFamily": "Segoe MDL2 Assets", 190 | "Text": "", 191 | "TextColor": "#FF1E90FF", 192 | "HoveredTextColor": "#FF6495ED", 193 | "ClickedTextColor": "#FF4169E1" 194 | }, 195 | "CornerRadius": 10, 196 | "BackgroundColor": "#00FFFFFF", 197 | "HoveredBackgroundColor": "#19FFFFFF", 198 | "ClickedBackgroundColor": "#0FFFFFFF", 199 | "IsVisible": false, 200 | "Width": 40.0, 201 | "Height": 15.0, 202 | "XPosition": 290.0, 203 | "YPosition": 3.0, 204 | "Anchor": 9 205 | }, 206 | "VolumeButton": { 207 | "PopupWidth": 190.0, 208 | "PopupHeight": 36.0, 209 | "XPopupOffset": 24.5, 210 | "YPopupOffset": -11.0, 211 | "IsHorizontal": false, 212 | "NoVolumeContent": { 213 | "ContentType": 1, 214 | "ImagePath": null, 215 | "HoveredImagePath": null, 216 | "ClickedImagePath": null, 217 | "FontFamily": "Segoe MDL2 Assets", 218 | "Text": "", 219 | "TextColor": "#FFFFFFFF", 220 | "HoveredTextColor": "#FFFFFFFF", 221 | "ClickedTextColor": "#FFFFFFFF" 222 | }, 223 | "LowVolumeContent": { 224 | "ContentType": 1, 225 | "ImagePath": null, 226 | "HoveredImagePath": null, 227 | "ClickedImagePath": null, 228 | "FontFamily": "Segoe MDL2 Assets", 229 | "Text": "", 230 | "TextColor": "#FFFFFFFF", 231 | "HoveredTextColor": "#FFFFFFFF", 232 | "ClickedTextColor": "#FFFFFFFF" 233 | }, 234 | "MidVolumeContent": { 235 | "ContentType": 1, 236 | "ImagePath": null, 237 | "HoveredImagePath": null, 238 | "ClickedImagePath": null, 239 | "FontFamily": "Segoe MDL2 Assets", 240 | "Text": "", 241 | "TextColor": "#FFFFFFFF", 242 | "HoveredTextColor": "#FFFFFFFF", 243 | "ClickedTextColor": "#FFFFFFFF" 244 | }, 245 | "HighVolumeContent": { 246 | "ContentType": 1, 247 | "ImagePath": null, 248 | "HoveredImagePath": null, 249 | "ClickedImagePath": null, 250 | "FontFamily": "Segoe MDL2 Assets", 251 | "Text": "", 252 | "TextColor": "#FFFFFFFF", 253 | "HoveredTextColor": "#FFFFFFFF", 254 | "ClickedTextColor": "#FFFFFFFF" 255 | }, 256 | "VolumeBarForegroundColor": "#FF1E90FF", 257 | "VolumeBarForegroundGradientColor": "#FF0052A3", 258 | "VolumeBarBackgroundColor": "#FF696969", 259 | "PopupBackgroundColor": "#FFA9A9A9", 260 | "VolumeBarThumbColor": "#FF696969", 261 | "VolumeBarThumbBorderColor": "#FF1E90FF", 262 | "CornerRadius": 10, 263 | "BackgroundColor": "#00FFFFFF", 264 | "HoveredBackgroundColor": "#19FFFFFF", 265 | "ClickedBackgroundColor": "#0FFFFFFF", 266 | "IsVisible": false, 267 | "Width": 18.0, 268 | "Height": 18.0, 269 | "XPosition": 251.0, 270 | "YPosition": 6.0, 271 | "Anchor": 9 272 | }, 273 | "ProgressBar": { 274 | "ForegroundColor": "#28FFFFFF", 275 | "ForegroundGradientColor": "#FF0052A3", 276 | "BackgroundColor": "#00FFFFFF", 277 | "HoverColor": "#FF0078D7", 278 | "ProgressBarThumbColor": "#FF696969", 279 | "ThumbBorderColor": "#FF00BFFF", 280 | "IsVisible": true, 281 | "Width": 176.0, 282 | "Height": 1.0, 283 | "XPosition": 0.0, 284 | "YPosition": 0.0, 285 | "Anchor": 9 286 | }, 287 | "LikeButton": { 288 | "LikeContent": { 289 | "ContentType": 1, 290 | "ImagePath": null, 291 | "HoveredImagePath": null, 292 | "ClickedImagePath": null, 293 | "FontFamily": "Segoe MDL2 Assets", 294 | "Text": "", 295 | "TextColor": "#FFFFFFFF", 296 | "HoveredTextColor": "#FFFFFFFF", 297 | "ClickedTextColor": "#FFFFFFFF" 298 | }, 299 | "DislikeContent": { 300 | "ContentType": 1, 301 | "ImagePath": null, 302 | "HoveredImagePath": null, 303 | "ClickedImagePath": null, 304 | "FontFamily": "Segoe MDL2 Assets", 305 | "Text": "", 306 | "TextColor": "#FFFF0000", 307 | "HoveredTextColor": "#FFDD3636", 308 | "ClickedTextColor": "#FFA51919" 309 | }, 310 | "CornerRadius": 10, 311 | "BackgroundColor": "#00FFFFFF", 312 | "HoveredBackgroundColor": "#19FFFFFF", 313 | "ClickedBackgroundColor": "#0FFFFFFF", 314 | "IsVisible": false, 315 | "Width": 40.0, 316 | "Height": 15.0, 317 | "XPosition": 0.0, 318 | "YPosition": 3.0, 319 | "Anchor": 9 320 | } 321 | } -------------------------------------------------------------------------------- /Profiles/Minimal/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A minimal profile with a subtle progressbar for small taskbars", 3 | "Authors": "Gustavo Pimentel" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/MinimalButExtraLong/Assets/MinimalButExtraLong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/MinimalButExtraLong/Assets/MinimalButExtraLong.png -------------------------------------------------------------------------------- /Profiles/MinimalButExtraLong/MinimalButItsExtraLong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/MinimalButExtraLong/MinimalButItsExtraLong.png -------------------------------------------------------------------------------- /Profiles/MinimalButExtraLong/MinimalButItsExtraLong.profile.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v0.0.1", 3 | "Name": "MinimalButItsExtraLong", 4 | "AlbumArtPopup": { 5 | "IsVisible": false, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "%AssetsFolder%\\MinimalButExtraLong\\MinimalButExtraLong.png", 13 | "CornerRadius": 2, 14 | "IsVisible": true, 15 | "Width": 30.0, 16 | "Height": 30.0, 17 | "XPosition": 0.0, 18 | "YPosition": 0.0, 19 | "Anchor": 9 20 | }, 21 | "GeneralSettings": { 22 | "Width": 360.0, 23 | "Height": 30.0, 24 | "BackgroundColor": "#00FFFFFF" 25 | }, 26 | "CustomLabels": [ 27 | { 28 | "FontFamily": "Segoe UI", 29 | "FontSize": 12.0, 30 | "Color": "#FFFFFFFF", 31 | "FormatString": "{song} - {artist}", 32 | "Alignment": 0, 33 | "Name": "Label", 34 | "ScrollSpeed": 5000, 35 | "TextOverflow": 1, 36 | "ScrollBehavior": 2, 37 | "FadeEffect": 1, 38 | "LeftFadeOffset": 0.0, 39 | "RightFadeOffset": 0.79736842105263162, 40 | "BorderColor": "#FFFFFFFF", 41 | "BorderThickness": 0, 42 | "BorderCornerRadius": 0, 43 | "IsVisible": true, 44 | "Width": 360.0, 45 | "Height": 30.0, 46 | "XPosition": 49.0, 47 | "YPosition": 7.0, 48 | "Anchor": 9 49 | } 50 | ], 51 | "NextButton": { 52 | "Content": { 53 | "ContentType": 1, 54 | "ImagePath": null, 55 | "HoveredImagePath": null, 56 | "ClickedImagePath": null, 57 | "FontFamily": "Segoe MDL2 Assets", 58 | "Text": "", 59 | "TextColor": "#FFFFFFFF", 60 | "HoveredTextColor": "#FFFFFFFF", 61 | "ClickedTextColor": "#FFFFFFFF" 62 | }, 63 | "CornerRadius": 10, 64 | "BackgroundColor": "#00FFFFFF", 65 | "HoveredBackgroundColor": "#19FFFFFF", 66 | "ClickedBackgroundColor": "#0FFFFFFF", 67 | "IsVisible": false, 68 | "Width": 40.0, 69 | "Height": 15.0, 70 | "XPosition": 410.0, 71 | "YPosition": 3.0, 72 | "Anchor": 9 73 | }, 74 | "PreviousButton": { 75 | "Content": { 76 | "ContentType": 1, 77 | "ImagePath": null, 78 | "HoveredImagePath": null, 79 | "ClickedImagePath": null, 80 | "FontFamily": "Segoe MDL2 Assets", 81 | "Text": "", 82 | "TextColor": "#FFFFFFFF", 83 | "HoveredTextColor": "#FFFFFFFF", 84 | "ClickedTextColor": "#FFFFFFFF" 85 | }, 86 | "CornerRadius": 10, 87 | "BackgroundColor": "#00FFFFFF", 88 | "HoveredBackgroundColor": "#19FFFFFF", 89 | "ClickedBackgroundColor": "#0FFFFFFF", 90 | "IsVisible": false, 91 | "Width": 40.0, 92 | "Height": 15.0, 93 | "XPosition": 330.0, 94 | "YPosition": 3.0, 95 | "Anchor": 9 96 | }, 97 | "PlayPauseButton": { 98 | "PlayContent": { 99 | "ContentType": 1, 100 | "ImagePath": null, 101 | "HoveredImagePath": null, 102 | "ClickedImagePath": null, 103 | "FontFamily": "Segoe MDL2 Assets", 104 | "Text": "", 105 | "TextColor": "#FFFFFFFF", 106 | "HoveredTextColor": "#FFFFFFFF", 107 | "ClickedTextColor": "#FFFFFFFF" 108 | }, 109 | "PauseContent": { 110 | "ContentType": 1, 111 | "ImagePath": null, 112 | "HoveredImagePath": null, 113 | "ClickedImagePath": null, 114 | "FontFamily": "Segoe MDL2 Assets", 115 | "Text": "", 116 | "TextColor": "#FFFFFFFF", 117 | "HoveredTextColor": "#FFFFFFFF", 118 | "ClickedTextColor": "#FFFFFFFF" 119 | }, 120 | "CornerRadius": 10, 121 | "BackgroundColor": "#00FFFFFF", 122 | "HoveredBackgroundColor": "#00FFFFFF", 123 | "ClickedBackgroundColor": "#00FFFFFF", 124 | "IsVisible": true, 125 | "Width": 20.0, 126 | "Height": 12.0, 127 | "XPosition": 29.5, 128 | "YPosition": 10.0, 129 | "Anchor": 9 130 | }, 131 | "RepeatModeButton": { 132 | "RepeatOffContent": { 133 | "ContentType": 1, 134 | "ImagePath": null, 135 | "HoveredImagePath": null, 136 | "ClickedImagePath": null, 137 | "FontFamily": "Segoe MDL2 Assets", 138 | "Text": "", 139 | "TextColor": "#FF696969", 140 | "HoveredTextColor": "#FFFFFFFF", 141 | "ClickedTextColor": "#FF808080" 142 | }, 143 | "RepeatContextContent": { 144 | "ContentType": 1, 145 | "ImagePath": null, 146 | "HoveredImagePath": null, 147 | "ClickedImagePath": null, 148 | "FontFamily": "Segoe MDL2 Assets", 149 | "Text": "", 150 | "TextColor": "#FF1E90FF", 151 | "HoveredTextColor": "#FF6495ED", 152 | "ClickedTextColor": "#FF4169E1" 153 | }, 154 | "RepeatTrackContent": { 155 | "ContentType": 1, 156 | "ImagePath": null, 157 | "HoveredImagePath": null, 158 | "ClickedImagePath": null, 159 | "FontFamily": "Segoe MDL2 Assets", 160 | "Text": "", 161 | "TextColor": "#FF1E90FF", 162 | "HoveredTextColor": "#FF6495ED", 163 | "ClickedTextColor": "#FF4169E1" 164 | }, 165 | "CornerRadius": 10, 166 | "BackgroundColor": "#00FFFFFF", 167 | "HoveredBackgroundColor": "#19FFFFFF", 168 | "ClickedBackgroundColor": "#0FFFFFFF", 169 | "IsVisible": false, 170 | "Width": 40.0, 171 | "Height": 15.0, 172 | "XPosition": 450.0, 173 | "YPosition": 3.0, 174 | "Anchor": 9 175 | }, 176 | "ShuffleModeButton": { 177 | "ShuffleOffContent": { 178 | "ContentType": 1, 179 | "ImagePath": null, 180 | "HoveredImagePath": null, 181 | "ClickedImagePath": null, 182 | "FontFamily": "Segoe MDL2 Assets", 183 | "Text": "", 184 | "TextColor": "#FF696969", 185 | "HoveredTextColor": "#FFFFFFFF", 186 | "ClickedTextColor": "#FF808080" 187 | }, 188 | "ShuffleOnContent": { 189 | "ContentType": 1, 190 | "ImagePath": null, 191 | "HoveredImagePath": null, 192 | "ClickedImagePath": null, 193 | "FontFamily": "Segoe MDL2 Assets", 194 | "Text": "", 195 | "TextColor": "#FF1E90FF", 196 | "HoveredTextColor": "#FF6495ED", 197 | "ClickedTextColor": "#FF4169E1" 198 | }, 199 | "CornerRadius": 10, 200 | "BackgroundColor": "#00FFFFFF", 201 | "HoveredBackgroundColor": "#19FFFFFF", 202 | "ClickedBackgroundColor": "#0FFFFFFF", 203 | "IsVisible": false, 204 | "Width": 40.0, 205 | "Height": 15.0, 206 | "XPosition": 290.0, 207 | "YPosition": 3.0, 208 | "Anchor": 9 209 | }, 210 | "VolumeButton": { 211 | "PopupWidth": 190.0, 212 | "PopupHeight": 36.0, 213 | "XPopupOffset": 24.5, 214 | "YPopupOffset": -11.0, 215 | "IsHorizontal": false, 216 | "NoVolumeContent": { 217 | "ContentType": 1, 218 | "ImagePath": null, 219 | "HoveredImagePath": null, 220 | "ClickedImagePath": null, 221 | "FontFamily": "Segoe MDL2 Assets", 222 | "Text": "", 223 | "TextColor": "#FFFFFFFF", 224 | "HoveredTextColor": "#FFFFFFFF", 225 | "ClickedTextColor": "#FFFFFFFF" 226 | }, 227 | "LowVolumeContent": { 228 | "ContentType": 1, 229 | "ImagePath": null, 230 | "HoveredImagePath": null, 231 | "ClickedImagePath": null, 232 | "FontFamily": "Segoe MDL2 Assets", 233 | "Text": "", 234 | "TextColor": "#FFFFFFFF", 235 | "HoveredTextColor": "#FFFFFFFF", 236 | "ClickedTextColor": "#FFFFFFFF" 237 | }, 238 | "MidVolumeContent": { 239 | "ContentType": 1, 240 | "ImagePath": null, 241 | "HoveredImagePath": null, 242 | "ClickedImagePath": null, 243 | "FontFamily": "Segoe MDL2 Assets", 244 | "Text": "", 245 | "TextColor": "#FFFFFFFF", 246 | "HoveredTextColor": "#FFFFFFFF", 247 | "ClickedTextColor": "#FFFFFFFF" 248 | }, 249 | "HighVolumeContent": { 250 | "ContentType": 1, 251 | "ImagePath": null, 252 | "HoveredImagePath": null, 253 | "ClickedImagePath": null, 254 | "FontFamily": "Segoe MDL2 Assets", 255 | "Text": "", 256 | "TextColor": "#FFFFFFFF", 257 | "HoveredTextColor": "#FFFFFFFF", 258 | "ClickedTextColor": "#FFFFFFFF" 259 | }, 260 | "VolumeBarForegroundColor": "#FF1E90FF", 261 | "VolumeBarForegroundGradientColor": "#FF0052A3", 262 | "VolumeBarBackgroundColor": "#FF696969", 263 | "PopupBackgroundColor": "#FFA9A9A9", 264 | "VolumeBarThumbColor": "#FF696969", 265 | "VolumeBarThumbBorderColor": "#FF1E90FF", 266 | "CornerRadius": 10, 267 | "BackgroundColor": "#00FFFFFF", 268 | "HoveredBackgroundColor": "#19FFFFFF", 269 | "ClickedBackgroundColor": "#0FFFFFFF", 270 | "IsVisible": false, 271 | "Width": 18.0, 272 | "Height": 18.0, 273 | "XPosition": 251.0, 274 | "YPosition": 6.0, 275 | "Anchor": 9 276 | }, 277 | "ProgressBar": { 278 | "ForegroundColor": "#FF0052A3", 279 | "ForegroundGradientColor": "#FF5AA8F4", 280 | "BackgroundColor": "#00FFFFFF", 281 | "HoverColor": "#FF5AA8F4", 282 | "ProgressBarThumbColor": "#005AA8F4", 283 | "ThumbBorderColor": "#0000BFFF", 284 | "IsVisible": true, 285 | "Width": 300.0, 286 | "Height": 2.5, 287 | "XPosition": 29.5, 288 | "YPosition": 0.0, 289 | "Anchor": 9 290 | }, 291 | "LikeButton": { 292 | "LikeContent": { 293 | "ContentType": 1, 294 | "ImagePath": null, 295 | "HoveredImagePath": null, 296 | "ClickedImagePath": null, 297 | "FontFamily": "Segoe MDL2 Assets", 298 | "Text": "", 299 | "TextColor": "#FFFFFFFF", 300 | "HoveredTextColor": "#FFFFFFFF", 301 | "ClickedTextColor": "#FFFFFFFF" 302 | }, 303 | "DislikeContent": { 304 | "ContentType": 1, 305 | "ImagePath": null, 306 | "HoveredImagePath": null, 307 | "ClickedImagePath": null, 308 | "FontFamily": "Segoe MDL2 Assets", 309 | "Text": "", 310 | "TextColor": "#FFFF0000", 311 | "HoveredTextColor": "#FFDD3636", 312 | "ClickedTextColor": "#FFA51919" 313 | }, 314 | "CornerRadius": 10, 315 | "BackgroundColor": "#00FFFFFF", 316 | "HoveredBackgroundColor": "#19FFFFFF", 317 | "ClickedBackgroundColor": "#0FFFFFFF", 318 | "IsVisible": false, 319 | "Width": 40.0, 320 | "Height": 15.0, 321 | "XPosition": 0.0, 322 | "YPosition": 3.0, 323 | "Anchor": 9 324 | } 325 | } 326 | -------------------------------------------------------------------------------- /Profiles/MinimalButExtraLong/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Minimal by Gustavo Pimentel but it's extra long for those stupidly long title that was named for no apparent reason.", 3 | "Authors": "Random Cat On The Internet" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/MinimalMod/MinimalMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/MinimalMod/MinimalMod.png -------------------------------------------------------------------------------- /Profiles/MinimalMod/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Some changes from Minimal version by Gustavo Pimentel", 3 | "Authors": "Keeni Ngo" 4 | } -------------------------------------------------------------------------------- /Profiles/MinimalMod2/MinimalMod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/MinimalMod2/MinimalMod2.png -------------------------------------------------------------------------------- /Profiles/MinimalMod2/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Some changes from MinimalMod version with album art", 3 | "Authors": "Keeni Ngo" 4 | } -------------------------------------------------------------------------------- /Profiles/MinimalSquare/MinimalSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/MinimalSquare/MinimalSquare.png -------------------------------------------------------------------------------- /Profiles/MinimalSquare/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A profile that has a medium sized AlbumArt with play/pause and next song buttons in the top corners.", 3 | "Authors": "Herbmeister" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/No Controls/No Controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/No Controls/No Controls.png -------------------------------------------------------------------------------- /Profiles/No Controls/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "The standard Compact profile, perfect for minimal space usage.", 3 | "Authors": "svr333" 4 | } -------------------------------------------------------------------------------- /Profiles/Qt Pie/Qt Pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Qt Pie/Qt Pie.png -------------------------------------------------------------------------------- /Profiles/Qt Pie/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "The first pink profile for AudioBand tehe; semi-compact and full of character! NOTE: The volume button is displayed when hovering the center of the album art.", 3 | "Authors": "Klementine" 4 | } -------------------------------------------------------------------------------- /Profiles/SUPER Super Mini Album Art/SUPER Super Mini Album Art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/SUPER Super Mini Album Art/SUPER Super Mini Album Art.png -------------------------------------------------------------------------------- /Profiles/SUPER Super Mini Album Art/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Random, Shuffle, Next Previous, Play Pause, Like Unlike Song, Seekbar Progress Bar buttons. VOLUME BAR ON ALBUM ART CLICK! Tested with compact windows 10 taskbar on 1080p resolution.", 3 | "Authors": "inevitablesgather" 4 | } -------------------------------------------------------------------------------- /Profiles/Show Me EVERYTHING/Show Me EVERYTHING.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Show Me EVERYTHING/Show Me EVERYTHING.png -------------------------------------------------------------------------------- /Profiles/Show Me EVERYTHING/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Shows you EVERYTHING, themed after Spotify's UI without having to install additional assets. Song titles will generally show in their entirety (the only exceptions in my library are addended with live performances). Most artist names will show fine and so will the album names. If they don't, they will scroll at a readable pace.", 3 | "Authors": "Freezing Dart" 4 | } -------------------------------------------------------------------------------- /Profiles/SimpleCompact/SimpleCompact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/SimpleCompact/SimpleCompact.png -------------------------------------------------------------------------------- /Profiles/SimpleCompact/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Simple & Compact layout contains just what you need.", 3 | "Authors": "Akın Özgen" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/CircularSp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify Mini/Assets/CircularSp.ttf -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Heart/heart empty (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Heart/heart empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Heart/heart filled (click).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Heart/heart filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/pause (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/pause.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/play (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/with background/pause 2 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/with background/pause 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/with background/play 2 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Play & Pause/with background/play 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Previous & Next/next (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Previous & Next/next.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Previous & Next/previous (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Previous & Next/previous.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat off (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat on (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat one (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/repeat one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/shuffle off (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/shuffle off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/shuffle on (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Shuffle & Repeat/shuffle on.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 0 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 14 | 15 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 1 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 2 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 3 (hover).svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 13 | 14 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Assets/Volume/volume level 3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 11 | 13 | 14 | -------------------------------------------------------------------------------- /Profiles/Spotify Mini/Spotify Mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify Mini/Spotify Mini.png -------------------------------------------------------------------------------- /Profiles/Spotify Mini/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "(font requires install) Smaller/more compact version of ariccb's Spotify Style Refined, with spotify native font, icons, and colours. Based on dark theme but shouldn't be too hard to modify for light theme. I included the font in the assets folder so you can install and use it if you'd like :)", 3 | "Authors": "iZeeh (IZeeLikeEyeZee) ❤" 4 | } -------------------------------------------------------------------------------- /Profiles/Spotify Style Refined/Spotify Style Refined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify Style Refined/Spotify Style Refined.png -------------------------------------------------------------------------------- /Profiles/Spotify Style Refined/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Fine tuned alignment of song length and progress to look good even with very long songs. Colors adjusted to give good visibility using light theme on windows 11", 3 | "Authors": "ariccb" 4 | } -------------------------------------------------------------------------------- /Profiles/Spotify Style/Spotify Style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify Style/Spotify Style.png -------------------------------------------------------------------------------- /Profiles/Spotify Style/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "An alternative Spotify themed profile similar to the Default profile.", 3 | "Authors": "tanc" 4 | } -------------------------------------------------------------------------------- /Profiles/Spotify/Assets/SpotifyLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify/Assets/SpotifyLogo.png -------------------------------------------------------------------------------- /Profiles/Spotify/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Spotify/Spotify.png -------------------------------------------------------------------------------- /Profiles/Spotify/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A theme mainly focused on Spotify's Like Button, using Spotify's color scheme to replicate its theme.", 3 | "Authors": "svr333" 4 | } -------------------------------------------------------------------------------- /Profiles/Super Mini Album Art/Super Mini Album Art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Super Mini Album Art/Super Mini Album Art.jpg -------------------------------------------------------------------------------- /Profiles/Super Mini Album Art/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Tested with compact Windows 10 taskbar. Random, Shuffle, Next Previous, Play Pause buttons", 3 | "Authors": "inevitablesgather" 4 | } -------------------------------------------------------------------------------- /Profiles/Tall&Narrow/Tall&Narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Tall&Narrow/Tall&Narrow.png -------------------------------------------------------------------------------- /Profiles/Tall&Narrow/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Designed for Windows 10 with \"Use small taskbar buttons\" setting on, and taskbar resized to accommodate two rows. For the oldschool, informative look for powerusers I suggest trying to turn off \"Combine taskbar buttons\" as well. Skin features a HUGE album art popup!", 3 | "Authors": "raveren" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/TitlesAndNothingElse/TitlesAndNothingElse.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "v0.0.1", 3 | "Name": "TitlesAndNothingElse", 4 | "AlbumArtPopup": { 5 | "IsVisible": false, 6 | "Width": 250.0, 7 | "Height": 250.0, 8 | "XPosition": -110.0, 9 | "Margin": 4.0 10 | }, 11 | "AlbumArt": { 12 | "PlaceholderPath": "", 13 | "CornerRadius": 2, 14 | "IsVisible": false, 15 | "Width": 30.0, 16 | "Height": 30.0, 17 | "XPosition": 0.0, 18 | "YPosition": 0.0, 19 | "Anchor": 9 20 | }, 21 | "GeneralSettings": { 22 | "Width": 375.0, 23 | "Height": 30.0, 24 | "BackgroundColor": "#00FFFFFF" 25 | }, 26 | "CustomLabels": [ 27 | { 28 | "FontFamily": "Segoe UI", 29 | "FontSize": 11.0, 30 | "Color": "#FFFFFFFF", 31 | "FormatString": " {artist} - {song} ", 32 | "Alignment": 0, 33 | "Name": "Label", 34 | "ScrollSpeed": 5000, 35 | "TextOverflow": 1, 36 | "ScrollBehavior": 2, 37 | "FadeEffect": 1, 38 | "LeftFadeOffset": 0.0, 39 | "RightFadeOffset": 0.94736842105263164, 40 | "BorderColor": "#FFFFFFFF", 41 | "BorderThickness": 0, 42 | "BorderCornerRadius": 0, 43 | "IsVisible": true, 44 | "Width": 375.0, 45 | "Height": 30.0, 46 | "XPosition": -1.5, 47 | "YPosition": 7.5, 48 | "Anchor": 9 49 | } 50 | ], 51 | "NextButton": { 52 | "Content": { 53 | "ContentType": 1, 54 | "ImagePath": null, 55 | "HoveredImagePath": null, 56 | "ClickedImagePath": null, 57 | "FontFamily": "Segoe MDL2 Assets", 58 | "Text": "", 59 | "TextColor": "#FFFFFFFF", 60 | "HoveredTextColor": "#FFFFFFFF", 61 | "ClickedTextColor": "#FFFFFFFF" 62 | }, 63 | "CornerRadius": 10, 64 | "BackgroundColor": "#00FFFFFF", 65 | "HoveredBackgroundColor": "#19FFFFFF", 66 | "ClickedBackgroundColor": "#0FFFFFFF", 67 | "IsVisible": false, 68 | "Width": 40.0, 69 | "Height": 15.0, 70 | "XPosition": 410.0, 71 | "YPosition": 3.0, 72 | "Anchor": 9 73 | }, 74 | "PreviousButton": { 75 | "Content": { 76 | "ContentType": 1, 77 | "ImagePath": null, 78 | "HoveredImagePath": null, 79 | "ClickedImagePath": null, 80 | "FontFamily": "Segoe MDL2 Assets", 81 | "Text": "", 82 | "TextColor": "#FFFFFFFF", 83 | "HoveredTextColor": "#FFFFFFFF", 84 | "ClickedTextColor": "#FFFFFFFF" 85 | }, 86 | "CornerRadius": 10, 87 | "BackgroundColor": "#00FFFFFF", 88 | "HoveredBackgroundColor": "#19FFFFFF", 89 | "ClickedBackgroundColor": "#0FFFFFFF", 90 | "IsVisible": false, 91 | "Width": 40.0, 92 | "Height": 15.0, 93 | "XPosition": 330.0, 94 | "YPosition": 3.0, 95 | "Anchor": 9 96 | }, 97 | "PlayPauseButton": { 98 | "PlayContent": { 99 | "ContentType": 1, 100 | "ImagePath": null, 101 | "HoveredImagePath": null, 102 | "ClickedImagePath": null, 103 | "FontFamily": "Segoe MDL2 Assets", 104 | "Text": "", 105 | "TextColor": "#00FFFFFF", 106 | "HoveredTextColor": "#FFFFFFFF", 107 | "ClickedTextColor": "#FFFFFFFF" 108 | }, 109 | "PauseContent": { 110 | "ContentType": 1, 111 | "ImagePath": null, 112 | "HoveredImagePath": null, 113 | "ClickedImagePath": null, 114 | "FontFamily": "Segoe MDL2 Assets", 115 | "Text": "", 116 | "TextColor": "#00FFFFFF", 117 | "HoveredTextColor": "#FFFFFFFF", 118 | "ClickedTextColor": "#FFFFFFFF" 119 | }, 120 | "CornerRadius": 10, 121 | "BackgroundColor": "#00FFFFFF", 122 | "HoveredBackgroundColor": "#00FFFFFF", 123 | "ClickedBackgroundColor": "#00FFFFFF", 124 | "IsVisible": false, 125 | "Width": 20.0, 126 | "Height": 12.0, 127 | "XPosition": 5.0, 128 | "YPosition": 10.0, 129 | "Anchor": 9 130 | }, 131 | "RepeatModeButton": { 132 | "RepeatOffContent": { 133 | "ContentType": 1, 134 | "ImagePath": null, 135 | "HoveredImagePath": null, 136 | "ClickedImagePath": null, 137 | "FontFamily": "Segoe MDL2 Assets", 138 | "Text": "", 139 | "TextColor": "#FF696969", 140 | "HoveredTextColor": "#FFFFFFFF", 141 | "ClickedTextColor": "#FF808080" 142 | }, 143 | "RepeatContextContent": { 144 | "ContentType": 1, 145 | "ImagePath": null, 146 | "HoveredImagePath": null, 147 | "ClickedImagePath": null, 148 | "FontFamily": "Segoe MDL2 Assets", 149 | "Text": "", 150 | "TextColor": "#FF1E90FF", 151 | "HoveredTextColor": "#FF6495ED", 152 | "ClickedTextColor": "#FF4169E1" 153 | }, 154 | "RepeatTrackContent": { 155 | "ContentType": 1, 156 | "ImagePath": null, 157 | "HoveredImagePath": null, 158 | "ClickedImagePath": null, 159 | "FontFamily": "Segoe MDL2 Assets", 160 | "Text": "", 161 | "TextColor": "#FF1E90FF", 162 | "HoveredTextColor": "#FF6495ED", 163 | "ClickedTextColor": "#FF4169E1" 164 | }, 165 | "CornerRadius": 10, 166 | "BackgroundColor": "#00FFFFFF", 167 | "HoveredBackgroundColor": "#19FFFFFF", 168 | "ClickedBackgroundColor": "#0FFFFFFF", 169 | "IsVisible": false, 170 | "Width": 40.0, 171 | "Height": 15.0, 172 | "XPosition": 450.0, 173 | "YPosition": 3.0, 174 | "Anchor": 9 175 | }, 176 | "ShuffleModeButton": { 177 | "ShuffleOffContent": { 178 | "ContentType": 1, 179 | "ImagePath": null, 180 | "HoveredImagePath": null, 181 | "ClickedImagePath": null, 182 | "FontFamily": "Segoe MDL2 Assets", 183 | "Text": "", 184 | "TextColor": "#FF696969", 185 | "HoveredTextColor": "#FFFFFFFF", 186 | "ClickedTextColor": "#FF808080" 187 | }, 188 | "ShuffleOnContent": { 189 | "ContentType": 1, 190 | "ImagePath": null, 191 | "HoveredImagePath": null, 192 | "ClickedImagePath": null, 193 | "FontFamily": "Segoe MDL2 Assets", 194 | "Text": "", 195 | "TextColor": "#FF1E90FF", 196 | "HoveredTextColor": "#FF6495ED", 197 | "ClickedTextColor": "#FF4169E1" 198 | }, 199 | "CornerRadius": 10, 200 | "BackgroundColor": "#00FFFFFF", 201 | "HoveredBackgroundColor": "#19FFFFFF", 202 | "ClickedBackgroundColor": "#0FFFFFFF", 203 | "IsVisible": false, 204 | "Width": 40.0, 205 | "Height": 15.0, 206 | "XPosition": 290.0, 207 | "YPosition": 3.0, 208 | "Anchor": 9 209 | }, 210 | "VolumeButton": { 211 | "PopupWidth": 190.0, 212 | "PopupHeight": 36.0, 213 | "XPopupOffset": 24.5, 214 | "YPopupOffset": -11.0, 215 | "IsHorizontal": false, 216 | "NoVolumeContent": { 217 | "ContentType": 1, 218 | "ImagePath": null, 219 | "HoveredImagePath": null, 220 | "ClickedImagePath": null, 221 | "FontFamily": "Segoe MDL2 Assets", 222 | "Text": "", 223 | "TextColor": "#FFFFFFFF", 224 | "HoveredTextColor": "#FFFFFFFF", 225 | "ClickedTextColor": "#FFFFFFFF" 226 | }, 227 | "LowVolumeContent": { 228 | "ContentType": 1, 229 | "ImagePath": null, 230 | "HoveredImagePath": null, 231 | "ClickedImagePath": null, 232 | "FontFamily": "Segoe MDL2 Assets", 233 | "Text": "", 234 | "TextColor": "#FFFFFFFF", 235 | "HoveredTextColor": "#FFFFFFFF", 236 | "ClickedTextColor": "#FFFFFFFF" 237 | }, 238 | "MidVolumeContent": { 239 | "ContentType": 1, 240 | "ImagePath": null, 241 | "HoveredImagePath": null, 242 | "ClickedImagePath": null, 243 | "FontFamily": "Segoe MDL2 Assets", 244 | "Text": "", 245 | "TextColor": "#FFFFFFFF", 246 | "HoveredTextColor": "#FFFFFFFF", 247 | "ClickedTextColor": "#FFFFFFFF" 248 | }, 249 | "HighVolumeContent": { 250 | "ContentType": 1, 251 | "ImagePath": null, 252 | "HoveredImagePath": null, 253 | "ClickedImagePath": null, 254 | "FontFamily": "Segoe MDL2 Assets", 255 | "Text": "", 256 | "TextColor": "#FFFFFFFF", 257 | "HoveredTextColor": "#FFFFFFFF", 258 | "ClickedTextColor": "#FFFFFFFF" 259 | }, 260 | "VolumeBarForegroundColor": "#FF1E90FF", 261 | "VolumeBarForegroundGradientColor": "#FF0052A3", 262 | "VolumeBarBackgroundColor": "#FF696969", 263 | "PopupBackgroundColor": "#FFA9A9A9", 264 | "VolumeBarThumbColor": "#FF696969", 265 | "VolumeBarThumbBorderColor": "#FF1E90FF", 266 | "CornerRadius": 10, 267 | "BackgroundColor": "#00FFFFFF", 268 | "HoveredBackgroundColor": "#19FFFFFF", 269 | "ClickedBackgroundColor": "#0FFFFFFF", 270 | "IsVisible": false, 271 | "Width": 18.0, 272 | "Height": 18.0, 273 | "XPosition": 251.0, 274 | "YPosition": 6.0, 275 | "Anchor": 9 276 | }, 277 | "ProgressBar": { 278 | "ForegroundColor": "#FFFFFFFF", 279 | "ForegroundGradientColor": "#FFFFFFFF", 280 | "BackgroundColor": "#00FFFFFF", 281 | "HoverColor": "#FFFFFFFF", 282 | "ProgressBarThumbColor": "#005AA8F4", 283 | "ThumbBorderColor": "#FFFFC5B3", 284 | "IsVisible": true, 285 | "Width": 375.0, 286 | "Height": 1.5, 287 | "XPosition": 0.0, 288 | "YPosition": 0.0, 289 | "Anchor": 9 290 | }, 291 | "LikeButton": { 292 | "LikeContent": { 293 | "ContentType": 1, 294 | "ImagePath": null, 295 | "HoveredImagePath": null, 296 | "ClickedImagePath": null, 297 | "FontFamily": "Segoe MDL2 Assets", 298 | "Text": "", 299 | "TextColor": "#FFFFFFFF", 300 | "HoveredTextColor": "#FFFFFFFF", 301 | "ClickedTextColor": "#FFFFFFFF" 302 | }, 303 | "DislikeContent": { 304 | "ContentType": 1, 305 | "ImagePath": null, 306 | "HoveredImagePath": null, 307 | "ClickedImagePath": null, 308 | "FontFamily": "Segoe MDL2 Assets", 309 | "Text": "", 310 | "TextColor": "#FFFF0000", 311 | "HoveredTextColor": "#FFDD3636", 312 | "ClickedTextColor": "#FFA51919" 313 | }, 314 | "CornerRadius": 10, 315 | "BackgroundColor": "#00FFFFFF", 316 | "HoveredBackgroundColor": "#19FFFFFF", 317 | "ClickedBackgroundColor": "#0FFFFFFF", 318 | "IsVisible": false, 319 | "Width": 40.0, 320 | "Height": 15.0, 321 | "XPosition": 0.0, 322 | "YPosition": 3.0, 323 | "Anchor": 9 324 | } 325 | } -------------------------------------------------------------------------------- /Profiles/TitlesAndNothingElse/TitlesAndNothingElse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/TitlesAndNothingElse/TitlesAndNothingElse.png -------------------------------------------------------------------------------- /Profiles/TitlesAndNothingElse/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "It's here for the vibe and vibe only! No pesky buttons ensure maximum title visibility!", 3 | "Authors": "Random Cat On The Internet" 4 | } -------------------------------------------------------------------------------- /Profiles/Ultracompact/Ultracompact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Ultracompact/Ultracompact.png -------------------------------------------------------------------------------- /Profiles/Ultracompact/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "This will really stay out of your way. Only 30x80 pixels, containing all the essentials.", 3 | "Authors": "diggoran" 4 | } -------------------------------------------------------------------------------- /Profiles/Win Blend/Win Blend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Win Blend/Win Blend.png -------------------------------------------------------------------------------- /Profiles/Win Blend/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "Simple and without buttons, blends with Win10 taskbar", 3 | "Authors": "eoln-br" 4 | } 5 | -------------------------------------------------------------------------------- /Profiles/Windows 11/Windows 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioBand/CommunityProfiles/8237551924e25b7aa02f2b2e6a4294831f36817c/Profiles/Windows 11/Windows 11.png -------------------------------------------------------------------------------- /Profiles/Windows 11/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description": "A style made specifically for StartAllBack's plump taskbar", 3 | "Authors": "ThePixelDude" 4 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CommunityProfiles 2 | This repository houses all the profiles uploaded by CommunityMembers, feel free to add yours to the list! 3 | If you have any questions, you can always reach out for help on our [Discord Server](https://discord.gg/yWDHdH2za5)! 4 | 5 | # Adding your profile 6 | If you have no knowledge of Git and don't want to bother learning, feel free to contact me in an issue or on Discord to upload it for you. 7 | 8 | First, fork and then clone your fork locally, and create a new subfolder within the `Profiles\` folder. 9 | The name of that folder will be the name of your profile. 10 | 11 | **Make sure the profile name is identical everywhere, this is very important.** 12 | 13 | ## Adding the required files 14 | Inside this folder you want to drag your `PROFILE_NAME.profile.json` (these can be found in `%appdata%/AudioBand/Profiles`). 15 | You also want to create a file called `about.json` in the subfolder with the following content: 16 | 17 | ```json 18 | { 19 | "Description": "YOUR_DESCRIPTION", 20 | "Authors": "YOUR_NAME" 21 | } 22 | ``` 23 | 24 | This is the bare minimum required to upload your profile, however I do highly recommend adding a preview image too (Image fits best at 280px by 70px). 25 | 26 | Just name the file `PROFILE_NAME.png` (PROFILE_NAME being the name of your profile). 27 | 28 | **That's it!** 29 | 30 | ## Using local images in a profile 31 | Some people use local images for their buttons instead of text, which will require some extra work to setup. 32 | 33 | First, create a subfolder called `Assets` inside of your profile's folder. In here you want to add all images that are referenced in your `profile.json`. 34 | 35 | Next you have to add path placeholders in your `profile.json`, because the paths will be different for every user. 36 | I'll give a concrete example of how to do it: 37 | 38 | Example of what a profile could look like locally: 39 | 40 | ```json 41 | "NextButton": { 42 | "Content": { 43 | "ContentType": 0, 44 | "ImagePath": "C:\\Users\\vanro\\Pictures\\AudioBand.png", 45 | "HoveredImagePath": null, 46 | "ClickedImagePath": null, 47 | "FontFamily": "Segoe MDL2 Assets", 48 | "Text": "", 49 | "TextColor": "#FFFFFFFF", 50 | "HoveredTextColor": "#FFFFFFFF", 51 | "ClickedTextColor": "#FFFFFFFF" 52 | }, 53 | "CornerRadius": 10, 54 | "BackgroundColor": "#00FFFFFF", 55 | "HoveredBackgroundColor": "#19FFFFFF", 56 | "ClickedBackgroundColor": "#0FFFFFFF", 57 | "IsVisible": true, 58 | "Width": 40.0, 59 | "Height": 15.0, 60 | "XPosition": 410.0, 61 | "YPosition": 3.0, 62 | "Anchor": 9 63 | }, 64 | ``` 65 | 66 | As you can see the `ImagePath` will not work for every user, so we have to change it so it can adapt whenever someone downloads it. 67 | 68 | You have to change the path to `%AssetsFolder%/YOUR_PROFILE/IMAGE.png`, in my case that would be `%AssetsFolder%/Default/AudioBand.png`. 69 | 70 | **Make sure that the image is called AudioBand.png inside of the Assets/ folder you uploaed** 71 | 72 | This is what my `profile.json` would look like: 73 | 74 | ```json 75 | "NextButton": { 76 | "Content": { 77 | "ContentType": 0, 78 | "ImagePath": "%AssetsFolder%\\Default\\AudioBand.png", 79 | "HoveredImagePath": null, 80 | "ClickedImagePath": null, 81 | "FontFamily": "Segoe MDL2 Assets", 82 | "Text": "", 83 | "TextColor": "#FFFFFFFF", 84 | "HoveredTextColor": "#FFFFFFFF", 85 | "ClickedTextColor": "#FFFFFFFF" 86 | }, 87 | "CornerRadius": 10, 88 | "BackgroundColor": "#00FFFFFF", 89 | "HoveredBackgroundColor": "#19FFFFFF", 90 | "ClickedBackgroundColor": "#0FFFFFFF", 91 | "IsVisible": true, 92 | "Width": 40.0, 93 | "Height": 15.0, 94 | "XPosition": 410.0, 95 | "YPosition": 3.0, 96 | "Anchor": 9 97 | }, 98 | ``` 99 | --------------------------------------------------------------------------------