├── .gitignore ├── .licignore ├── CustomApps └── wmpvis │ ├── .gitattributes │ ├── .gitignore │ ├── dist │ ├── index.js │ └── manifest.json │ ├── package-lock.json │ ├── package.json │ └── src │ ├── DesktopAudio.js │ ├── UpdateCheck.js │ ├── app.jsx │ ├── butterchurn │ ├── adaptor.jsx │ ├── butterchurn.min.js │ ├── butterchurnExtraImages.min.js │ ├── butterchurnPresets.min.js │ ├── butterchurnPresetsExtra.min.js │ ├── butterchurnPresetsExtra2.min.js │ └── fft.js │ ├── config.jsx │ ├── dialogs.jsx │ ├── icon.svg │ ├── lang │ ├── en-US.js │ └── ko-KR.js │ ├── lyrics │ ├── MadIdb.js │ ├── caching.js │ ├── lrcparse.js │ ├── main.js │ ├── search.jsx │ └── spotify.js │ ├── settings.json │ ├── spadapter.js │ ├── strings.js │ └── wmpvis.js ├── README.md ├── SpotifyCrExt ├── README.md ├── mv2 │ ├── background.js │ ├── content.js │ ├── exposed.js │ └── manifest.json └── mv3 │ ├── background.js │ ├── content.js │ ├── exposed.js │ └── manifest.json ├── cte.wh.cpp ├── installer ├── Functions.psm1 ├── install.ps1 ├── install.sh └── uninstall.sh ├── license.txt ├── manifest.json ├── screenshots ├── color_applied_aero.png ├── color_applied_aero_2.png ├── color_applied_xp.png ├── config_color_aero.png ├── config_general_xp.png ├── config_general_xp_old.png ├── config_speed_aero.png ├── discography_aero.png ├── discography_basic.png ├── fonts_perm_recovery.png ├── fullscreen_aero.png ├── fullscreen_xp.png ├── fullscreen_xp_bugged.png ├── home_aero.png ├── home_aero_dark.png ├── home_basic.png ├── home_classic.png ├── home_hcblack.png ├── home_xp.png ├── home_xp_nativeframe.png ├── home_xp_nativeframe_old.png ├── library_compact_aero.png ├── library_compact_aero_2.png ├── library_grid_aero.png ├── library_list_aero.png ├── library_list_xp.png ├── minimode_aero.png ├── minimode_aero_2.png ├── minimode_basic.png ├── minimode_classic.png ├── minimode_hcblack.png ├── minimode_vol_xp.png ├── minimode_xp.png ├── playlist_aero.png ├── playlist_basic.png ├── playlist_scrolled_aero.png ├── search_xp.png ├── wmpvis_aero.png ├── wmpvis_aero_2.png ├── wmpvis_aero_3.png ├── wmpvis_aero_4.png ├── wmpvis_bars_xp.png ├── wmpvis_basic.png ├── wmpvis_menu_config_general_color_aero.png ├── wmpvis_menu_xp.png ├── wmpvis_options.png ├── wmpvis_options_old.png ├── wmpvis_options_older.png ├── wmpvis_xp.png └── wmpvis_xp_nativeframe.png └── theme ├── build.js ├── dist ├── color.ini ├── theme.js └── user.css ├── package-lock.json ├── package.json └── src ├── color.ini ├── controls ├── 10 │ ├── button.scss │ ├── checkbox.scss │ ├── dialog.scss │ ├── dropdown.scss │ ├── menu.scss │ ├── scrollbar.scss │ ├── textbox.scss │ └── tooltip.scss ├── aero │ ├── button.scss │ ├── checkbox.scss │ ├── dialog.scss │ ├── dropdown.scss │ ├── menu.scss │ ├── scrollbar.scss │ ├── textbox.scss │ └── tooltip.scss ├── button.scss ├── checkbox.scss ├── classic │ ├── button.scss │ ├── checkbox.scss │ ├── dialog.scss │ ├── dropdown.scss │ ├── menu.scss │ ├── scrollbar.scss │ ├── textbox.scss │ └── tooltip.scss ├── common.scss ├── dialog.scss ├── dropdown.scss ├── menu.scss ├── scrollbar.scss ├── search.scss ├── slider.scss ├── textbox.scss ├── tooltip.scss └── xp │ ├── button.scss │ ├── checkbox.scss │ ├── dialog.scss │ ├── dropdown.scss │ ├── menu.scss │ ├── scrollbar.scss │ └── textbox.scss ├── global.scss ├── index.scss ├── js ├── WindhawkComm.js ├── lang │ ├── en-US.js │ └── ko-KR.js ├── main.js ├── managers │ ├── ControlManager.js │ ├── PageManager.js │ ├── SidebarManager.js │ ├── ThemeManager.js │ └── WindowManager.js ├── pages │ ├── config.js │ ├── discography.js │ ├── libx.js │ ├── playlist.js │ └── queue.js ├── strings.js ├── ui │ ├── dialogs.js │ ├── playerbar.js │ ├── tinting.js │ ├── titlebar.js │ └── topbar.js └── utils │ ├── DirectUserStorage.js │ ├── FontDetective.js │ ├── MadMenu.js │ ├── UpdateCheck.js │ ├── appearance.js │ └── functions.js ├── pages ├── album.scss ├── artist.scss ├── cinema.scss ├── discography.scss ├── genre.scss ├── home.scss ├── nowplaying.scss ├── playlist.scss ├── profile.scss ├── search.scss └── settings.scss ├── panels ├── config.scss ├── friends.scss ├── libx.scss ├── npv.scss └── queue.scss ├── resources ├── config │ ├── close.png │ ├── close_hover.png │ ├── close_pressed.png │ ├── hue.png │ ├── next.png │ ├── next_hover.png │ ├── next_pressed.png │ ├── prev.png │ ├── prev_hover.png │ ├── prev_pressed.png │ ├── sat.png │ ├── skipback.png │ ├── skipback_hover.png │ ├── skipback_pressed.png │ ├── skipforward.png │ ├── skipforward_hover.png │ ├── skipforward_pressed.png │ └── speed.png ├── frame │ ├── close.png │ ├── close_hover.png │ ├── close_pressed.png │ ├── closeonly_hover.png │ ├── closeonly_pressed.png │ ├── leftframe.png │ ├── maximize.png │ ├── maximize_hover.png │ ├── maximize_pressed.png │ ├── minimize.png │ ├── minimize_hover.png │ ├── minimize_pressed.png │ ├── restore.png │ ├── rightframe.png │ ├── spotify_16.png │ ├── spotify_16_2013.png │ ├── titlebar.png │ ├── titlebar_closeonly.png │ ├── titlebar_closeonly_noedge.png │ ├── titlebar_nocontrols.png │ ├── titlebar_nocontrols_noedge.png │ └── titlebar_noedge.png ├── icon │ ├── 10 │ │ ├── checkmark-active.svg │ │ ├── checkmark-hover.svg │ │ ├── checkmark-menu-dark.svg │ │ ├── checkmark-menu.svg │ │ ├── checkmark.svg │ │ ├── expand.svg │ │ ├── scroll-down-active.png │ │ ├── scroll-down-hover.png │ │ ├── scroll-down.png │ │ ├── scroll-left-active.png │ │ ├── scroll-left-hover.png │ │ ├── scroll-left.png │ │ ├── scroll-right-active.png │ │ ├── scroll-right-hover.png │ │ ├── scroll-right.png │ │ ├── scroll-up-active.png │ │ ├── scroll-up-hover.png │ │ └── scroll-up.png │ ├── 98 │ │ ├── button-down-active.svg │ │ ├── button-down.svg │ │ ├── button-left.svg │ │ ├── button-right.svg │ │ ├── button-up.svg │ │ ├── checkmark-disabled.svg │ │ ├── checkmark.svg │ │ └── scrollbar-background.svg │ ├── 10dark │ │ ├── expand.svg │ │ ├── scroll-down-active.png │ │ ├── scroll-down-hover.png │ │ ├── scroll-down.png │ │ ├── scroll-left-active.png │ │ ├── scroll-left-hover.png │ │ ├── scroll-left.png │ │ ├── scroll-right-active.png │ │ ├── scroll-right-hover.png │ │ ├── scroll-right.png │ │ ├── scroll-up-active.png │ │ ├── scroll-up-hover.png │ │ └── scroll-up.png │ ├── 2k │ │ ├── button-down-active.svg │ │ ├── button-down.svg │ │ ├── button-left.svg │ │ ├── button-right.svg │ │ ├── button-up.svg │ │ └── scrollbar-background.svg │ ├── 98dark │ │ ├── button-down-active.svg │ │ ├── button-down.svg │ │ ├── button-left.svg │ │ ├── button-right.svg │ │ ├── button-up.svg │ │ ├── checkmark-disabled.svg │ │ ├── checkmark.svg │ │ └── scrollbar-background.svg │ ├── button-down.svg │ ├── button-left.svg │ ├── button-right.svg │ ├── button-up.svg │ ├── close.png │ ├── close_hover.png │ ├── close_pressed.png │ ├── compact.png │ ├── error.png │ ├── grabber.png │ ├── grid.png │ ├── hcblack │ │ ├── button-down-active.svg │ │ ├── button-down.svg │ │ ├── button-left.svg │ │ ├── button-right.svg │ │ ├── button-up.svg │ │ ├── checkmark-disabled.svg │ │ ├── checkmark.svg │ │ └── scrollbar-background.svg │ ├── hcwhite │ │ ├── button-down-active.svg │ │ ├── button-down.svg │ │ ├── button-left.svg │ │ ├── button-right.svg │ │ ├── button-up.svg │ │ └── scrollbar-background.svg │ ├── info.png │ ├── list.png │ ├── list_discography.png │ ├── marlett │ │ ├── bullet_menu.svg │ │ ├── bullet_radio.svg │ │ ├── check_checkbox.svg │ │ ├── check_menu.svg │ │ ├── check_menu_dark.svg │ │ ├── check_menu_hcblack.svg │ │ ├── close.svg │ │ ├── downexpand.svg │ │ ├── grabber.svg │ │ ├── grabber_top.svg │ │ ├── help.svg │ │ ├── max.svg │ │ ├── min.svg │ │ ├── restore.svg │ │ ├── rtl_grabber.svg │ │ ├── rtl_grabber_top.svg │ │ ├── rtl_submenu.svg │ │ └── submenu.svg │ ├── nowplaying_album_art_placeholder.png │ ├── question.png │ ├── scroll-thumb-horizontal.png │ ├── scroll-thumb.png │ ├── search.svg │ ├── slider-indicator-active.png │ ├── slider-indicator-box-active.png │ ├── slider-indicator-box.png │ ├── slider-indicator.png │ ├── spinner.gif │ ├── spinner.png │ ├── spinner.webp │ ├── userframe.png │ ├── warning.png │ ├── wmpotify.png │ ├── wmpotify_48.pdn │ ├── wmpotify_48.png │ └── xp │ │ ├── checkmark-disabled.svg │ │ ├── checkmark.svg │ │ ├── dropdown-active.svg │ │ ├── dropdown-hover.svg │ │ ├── dropdown.svg │ │ ├── scroll-arrow-down.svg │ │ ├── scroll-arrow-left.svg │ │ ├── scroll-arrow-right.svg │ │ ├── scroll-arrow-up.svg │ │ ├── scroll-background-horizontal.svg │ │ ├── scroll-background.svg │ │ ├── scroll-thumb-horizontal.svg │ │ └── scroll-thumb.svg ├── library │ ├── album.png │ ├── artist.png │ ├── chevron.png │ ├── chevron_collapsed.png │ ├── chevron_collapsed_dark.png │ ├── chevron_collapsed_hover.png │ ├── chevron_dark.png │ ├── chevron_hover.png │ ├── download.png │ ├── download_192.png │ ├── folder_192.png │ ├── library.png │ ├── liked_192.png │ ├── music.png │ ├── music_192.png │ ├── playlist.png │ ├── playlist_192.png │ ├── playlist_auto.png │ ├── playlist_user.pdn │ ├── playlist_user.png │ ├── playlist_user2.pdn │ ├── playlist_user2.png │ ├── podcast.png │ ├── podcast_192.png │ └── song.png ├── playerbar │ ├── bg_large.png │ ├── bg_small.png │ ├── btn_21_hover.png │ ├── btn_21_pressed.png │ ├── btn_hover.png │ ├── btn_pressed.png │ ├── connect.png │ ├── connect_hover.png │ ├── connect_phone.png │ ├── connect_pressed.png │ ├── fastforward_pressed.png │ ├── fullscreen.png │ ├── fullscreen_disabled.png │ ├── fullscreen_exit.png │ ├── fullscreen_exit_disabled.png │ ├── fullscreen_exit_hover.png │ ├── fullscreen_exit_pressed.png │ ├── fullscreen_hover.png │ ├── fullscreen_pressed.png │ ├── hcblack │ │ ├── bg_large.png │ │ ├── bg_small.png │ │ ├── btn.png │ │ ├── btn_21.png │ │ ├── fastforward.pdn │ │ ├── fastforward.png │ │ ├── fullscreen.png │ │ ├── fullscreen_exit.png │ │ ├── miniplayer.png │ │ ├── next.pdn │ │ ├── next.png │ │ ├── pause.pdn │ │ ├── pause.png │ │ ├── play.pdn │ │ ├── play.png │ │ ├── prev.pdn │ │ ├── prev.png │ │ ├── repeat.png │ │ ├── repeat_active.png │ │ ├── seekhandle.png │ │ ├── shuffle.png │ │ ├── shuffle_active.png │ │ ├── stop.png │ │ ├── vol_high.png │ │ ├── vol_low.png │ │ ├── vol_mid.png │ │ ├── vol_mini.png │ │ ├── vol_mini_expand.png │ │ ├── vol_muted.png │ │ └── volhandle.png │ ├── hcwhite │ │ ├── bg_large.png │ │ ├── bg_small.png │ │ ├── btn.png │ │ ├── btn_21.png │ │ ├── fastforward.pdn │ │ ├── fastforward.png │ │ ├── fullscreen.png │ │ ├── fullscreen_exit.png │ │ ├── miniplayer.png │ │ ├── next.pdn │ │ ├── next.png │ │ ├── pause.pdn │ │ ├── pause.png │ │ ├── play.pdn │ │ ├── play.png │ │ ├── prev.pdn │ │ ├── prev.png │ │ ├── repeat.png │ │ ├── repeat_active.png │ │ ├── seekhandle.png │ │ ├── shuffle.png │ │ ├── shuffle_active.png │ │ ├── stop.png │ │ ├── vol_high.png │ │ ├── vol_low.png │ │ ├── vol_mid.png │ │ ├── vol_mini.png │ │ ├── vol_mini_expand.png │ │ ├── vol_muted.png │ │ └── volhandle.png │ ├── lyrics.png │ ├── lyrics_hover.png │ ├── lyrics_pressed.png │ ├── miniplayer.png │ ├── miniplayer_disabled.png │ ├── miniplayer_hover.png │ ├── miniplayer_pressed.png │ ├── next.png │ ├── next_disabled.png │ ├── next_fullscreen.png │ ├── next_fullscreen_disabled.png │ ├── next_hover.png │ ├── next_pressed.png │ ├── npv.png │ ├── npv_hover.png │ ├── npv_pressed.png │ ├── pause.png │ ├── pause_25.png │ ├── pause_25_hover.png │ ├── pause_25_pressed.png │ ├── pause_31.png │ ├── pause_31_hover.png │ ├── pause_31_pressed.png │ ├── pause_disabled.png │ ├── pause_hover.png │ ├── pause_pressed.png │ ├── pbfillend.png │ ├── play.png │ ├── play_25.png │ ├── play_25_disabled.png │ ├── play_25_hover.png │ ├── play_25_pressed.png │ ├── play_31.png │ ├── play_31_glow.png │ ├── play_31_hover.png │ ├── play_31_pressed.png │ ├── play_disabled.png │ ├── play_glow.png │ ├── play_hover.png │ ├── play_pressed.png │ ├── prev.png │ ├── prev_disabled.png │ ├── prev_fullscreen.png │ ├── prev_fullscreen_disabled.png │ ├── prev_hover.png │ ├── prev_pressed.png │ ├── queue.png │ ├── queue_hover.png │ ├── queue_pressed.png │ ├── repeat.png │ ├── repeat_active.png │ ├── righticonbase.pdn │ ├── seekhandle.png │ ├── seekhandle_hover.png │ ├── seekhandle_pressed.png │ ├── shuffle.png │ ├── shuffle_active.png │ ├── stop.png │ ├── stop_disabled.png │ ├── vol_high.png │ ├── vol_low.png │ ├── vol_mid.png │ ├── vol_mini_expand.png │ ├── vol_mini_expand_extrahover.png │ ├── vol_mini_expand_hover.png │ ├── vol_mini_expand_pressed.png │ ├── vol_mini_extrahover.png │ ├── vol_mini_hover.png │ ├── vol_mini_pressed.png │ ├── vol_muted.png │ ├── vol_popup_bg.png │ ├── volhandle.png │ ├── volhandle_hover.png │ ├── volhandle_pressed.png │ └── xp │ │ ├── bg_large.png │ │ ├── bg_small.png │ │ ├── bottom_texture.png │ │ ├── bottom_texture_minheight.png │ │ ├── bottom_texture_mini.png │ │ ├── fastforward_pressed.png │ │ ├── fullscreen.png │ │ ├── fullscreen_disabled.png │ │ ├── fullscreen_exit.png │ │ ├── fullscreen_exit_disabled.png │ │ ├── fullscreen_exit_hover.png │ │ ├── fullscreen_exit_pressed.png │ │ ├── fullscreen_hover.png │ │ ├── fullscreen_pressed.png │ │ ├── miniplayer.png │ │ ├── miniplayer_disabled.png │ │ ├── miniplayer_hover.png │ │ ├── miniplayer_pressed.png │ │ ├── next.pdn │ │ ├── next.png │ │ ├── next_disabled.png │ │ ├── next_hover.png │ │ ├── next_pressed.png │ │ ├── pause.pdn │ │ ├── pause.png │ │ ├── pause_disabled.png │ │ ├── pause_hover.png │ │ ├── pause_pressed.png │ │ ├── play.pdn │ │ ├── play.png │ │ ├── play_disabled.png │ │ ├── play_hover.png │ │ ├── play_pressed.png │ │ ├── prev.pdn │ │ ├── prev.png │ │ ├── prev_disabled.png │ │ ├── prev_hover.png │ │ ├── prev_pressed.png │ │ ├── repeat.png │ │ ├── repeat_active.png │ │ ├── shuffle.png │ │ ├── shuffle_active.png │ │ ├── stop.png │ │ ├── stop_disabled.png │ │ ├── vol_high.png │ │ ├── vol_low.png │ │ ├── vol_mid.png │ │ ├── vol_mini_expand.png │ │ ├── vol_mini_expand_extrahover.png │ │ ├── vol_mini_expand_hover.png │ │ ├── vol_mini_expand_pressed.png │ │ ├── vol_mini_hover.png │ │ └── vol_muted.png ├── sidebar │ ├── album_art_placeholder.png │ ├── clear.png │ ├── clear_disabled.png │ ├── sbclose.png │ └── sbopen.png ├── topbar │ ├── bg.png │ ├── bgstrip.png │ ├── clear.png │ ├── clear_hover.png │ ├── clear_pressed.png │ ├── nav.png │ ├── nav_disabled.png │ ├── nav_hcblack.png │ ├── nav_hcwhite.png │ ├── nav_hover.png │ ├── nav_pressed.png │ ├── overflow.png │ ├── overflow_hcblack.png │ ├── overflow_hcwhite.png │ ├── overflow_hover.png │ ├── search.png │ ├── separator.png │ ├── tab_active.png │ ├── tab_active_hover.png │ ├── tab_active_pressed.png │ ├── tab_hcblack.png │ ├── tab_hcwhite.png │ ├── tab_hover.png │ ├── tab_hover_section.png │ ├── tab_pressed.png │ ├── user.png │ ├── user_hover.png │ └── user_pressed.png └── ui │ ├── listview_header.pdn │ ├── listview_header.png │ ├── listview_header_dark.png │ ├── listview_header_hover.png │ ├── listview_header_pressed.png │ ├── listview_header_selected.png │ ├── toolbarbutton_hover.png │ └── toolbarbutton_pressed.png ├── ui ├── frame.scss ├── fullscreen.scss ├── mainarea.scss ├── playerbar.scss ├── tinting.scss └── topbar.scss └── variables.scss /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.zip -------------------------------------------------------------------------------- /.licignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/.licignore -------------------------------------------------------------------------------- /CustomApps/wmpvis/.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-vendored -------------------------------------------------------------------------------- /CustomApps/wmpvis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/.gitignore -------------------------------------------------------------------------------- /CustomApps/wmpvis/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/dist/index.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/dist/manifest.json -------------------------------------------------------------------------------- /CustomApps/wmpvis/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/package-lock.json -------------------------------------------------------------------------------- /CustomApps/wmpvis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/package.json -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/DesktopAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/DesktopAudio.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/UpdateCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/UpdateCheck.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/app.jsx -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/adaptor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/adaptor.jsx -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/butterchurn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/butterchurn.min.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/butterchurnExtraImages.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/butterchurnExtraImages.min.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/butterchurnPresets.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/butterchurnPresets.min.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/butterchurnPresetsExtra.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/butterchurnPresetsExtra.min.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/butterchurnPresetsExtra2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/butterchurnPresetsExtra2.min.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/butterchurn/fft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/butterchurn/fft.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/config.jsx -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/dialogs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/dialogs.jsx -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/icon.svg -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lang/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lang/en-US.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lang/ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lang/ko-KR.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/MadIdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/MadIdb.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/caching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/caching.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/lrcparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/lrcparse.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/main.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/search.jsx -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/lyrics/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/lyrics/spotify.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/settings.json -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/spadapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/spadapter.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/strings.js -------------------------------------------------------------------------------- /CustomApps/wmpvis/src/wmpvis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/CustomApps/wmpvis/src/wmpvis.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/README.md -------------------------------------------------------------------------------- /SpotifyCrExt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/README.md -------------------------------------------------------------------------------- /SpotifyCrExt/mv2/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv2/background.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv2/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv2/content.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv2/exposed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv2/exposed.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv2/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv2/manifest.json -------------------------------------------------------------------------------- /SpotifyCrExt/mv3/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv3/background.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv3/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv3/content.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv3/exposed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv3/exposed.js -------------------------------------------------------------------------------- /SpotifyCrExt/mv3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/SpotifyCrExt/mv3/manifest.json -------------------------------------------------------------------------------- /cte.wh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/cte.wh.cpp -------------------------------------------------------------------------------- /installer/Functions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/installer/Functions.psm1 -------------------------------------------------------------------------------- /installer/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/installer/install.ps1 -------------------------------------------------------------------------------- /installer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/installer/install.sh -------------------------------------------------------------------------------- /installer/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/installer/uninstall.sh -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/license.txt -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/manifest.json -------------------------------------------------------------------------------- /screenshots/color_applied_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/color_applied_aero.png -------------------------------------------------------------------------------- /screenshots/color_applied_aero_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/color_applied_aero_2.png -------------------------------------------------------------------------------- /screenshots/color_applied_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/color_applied_xp.png -------------------------------------------------------------------------------- /screenshots/config_color_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/config_color_aero.png -------------------------------------------------------------------------------- /screenshots/config_general_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/config_general_xp.png -------------------------------------------------------------------------------- /screenshots/config_general_xp_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/config_general_xp_old.png -------------------------------------------------------------------------------- /screenshots/config_speed_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/config_speed_aero.png -------------------------------------------------------------------------------- /screenshots/discography_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/discography_aero.png -------------------------------------------------------------------------------- /screenshots/discography_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/discography_basic.png -------------------------------------------------------------------------------- /screenshots/fonts_perm_recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/fonts_perm_recovery.png -------------------------------------------------------------------------------- /screenshots/fullscreen_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/fullscreen_aero.png -------------------------------------------------------------------------------- /screenshots/fullscreen_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/fullscreen_xp.png -------------------------------------------------------------------------------- /screenshots/fullscreen_xp_bugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/fullscreen_xp_bugged.png -------------------------------------------------------------------------------- /screenshots/home_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_aero.png -------------------------------------------------------------------------------- /screenshots/home_aero_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_aero_dark.png -------------------------------------------------------------------------------- /screenshots/home_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_basic.png -------------------------------------------------------------------------------- /screenshots/home_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_classic.png -------------------------------------------------------------------------------- /screenshots/home_hcblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_hcblack.png -------------------------------------------------------------------------------- /screenshots/home_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_xp.png -------------------------------------------------------------------------------- /screenshots/home_xp_nativeframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_xp_nativeframe.png -------------------------------------------------------------------------------- /screenshots/home_xp_nativeframe_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/home_xp_nativeframe_old.png -------------------------------------------------------------------------------- /screenshots/library_compact_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/library_compact_aero.png -------------------------------------------------------------------------------- /screenshots/library_compact_aero_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/library_compact_aero_2.png -------------------------------------------------------------------------------- /screenshots/library_grid_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/library_grid_aero.png -------------------------------------------------------------------------------- /screenshots/library_list_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/library_list_aero.png -------------------------------------------------------------------------------- /screenshots/library_list_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/library_list_xp.png -------------------------------------------------------------------------------- /screenshots/minimode_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_aero.png -------------------------------------------------------------------------------- /screenshots/minimode_aero_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_aero_2.png -------------------------------------------------------------------------------- /screenshots/minimode_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_basic.png -------------------------------------------------------------------------------- /screenshots/minimode_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_classic.png -------------------------------------------------------------------------------- /screenshots/minimode_hcblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_hcblack.png -------------------------------------------------------------------------------- /screenshots/minimode_vol_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_vol_xp.png -------------------------------------------------------------------------------- /screenshots/minimode_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/minimode_xp.png -------------------------------------------------------------------------------- /screenshots/playlist_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/playlist_aero.png -------------------------------------------------------------------------------- /screenshots/playlist_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/playlist_basic.png -------------------------------------------------------------------------------- /screenshots/playlist_scrolled_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/playlist_scrolled_aero.png -------------------------------------------------------------------------------- /screenshots/search_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/search_xp.png -------------------------------------------------------------------------------- /screenshots/wmpvis_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_aero.png -------------------------------------------------------------------------------- /screenshots/wmpvis_aero_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_aero_2.png -------------------------------------------------------------------------------- /screenshots/wmpvis_aero_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_aero_3.png -------------------------------------------------------------------------------- /screenshots/wmpvis_aero_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_aero_4.png -------------------------------------------------------------------------------- /screenshots/wmpvis_bars_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_bars_xp.png -------------------------------------------------------------------------------- /screenshots/wmpvis_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_basic.png -------------------------------------------------------------------------------- /screenshots/wmpvis_menu_config_general_color_aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_menu_config_general_color_aero.png -------------------------------------------------------------------------------- /screenshots/wmpvis_menu_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_menu_xp.png -------------------------------------------------------------------------------- /screenshots/wmpvis_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_options.png -------------------------------------------------------------------------------- /screenshots/wmpvis_options_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_options_old.png -------------------------------------------------------------------------------- /screenshots/wmpvis_options_older.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_options_older.png -------------------------------------------------------------------------------- /screenshots/wmpvis_xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_xp.png -------------------------------------------------------------------------------- /screenshots/wmpvis_xp_nativeframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/screenshots/wmpvis_xp_nativeframe.png -------------------------------------------------------------------------------- /theme/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/build.js -------------------------------------------------------------------------------- /theme/dist/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/dist/color.ini -------------------------------------------------------------------------------- /theme/dist/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/dist/theme.js -------------------------------------------------------------------------------- /theme/dist/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/dist/user.css -------------------------------------------------------------------------------- /theme/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/package-lock.json -------------------------------------------------------------------------------- /theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/package.json -------------------------------------------------------------------------------- /theme/src/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/color.ini -------------------------------------------------------------------------------- /theme/src/controls/10/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/button.scss -------------------------------------------------------------------------------- /theme/src/controls/10/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/checkbox.scss -------------------------------------------------------------------------------- /theme/src/controls/10/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/dialog.scss -------------------------------------------------------------------------------- /theme/src/controls/10/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/dropdown.scss -------------------------------------------------------------------------------- /theme/src/controls/10/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/menu.scss -------------------------------------------------------------------------------- /theme/src/controls/10/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/scrollbar.scss -------------------------------------------------------------------------------- /theme/src/controls/10/textbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/textbox.scss -------------------------------------------------------------------------------- /theme/src/controls/10/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/10/tooltip.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/button.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/checkbox.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/dialog.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/dropdown.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/menu.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/scrollbar.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/textbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/textbox.scss -------------------------------------------------------------------------------- /theme/src/controls/aero/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/aero/tooltip.scss -------------------------------------------------------------------------------- /theme/src/controls/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/button.scss -------------------------------------------------------------------------------- /theme/src/controls/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/checkbox.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/button.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/checkbox.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/dialog.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/dropdown.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/menu.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/scrollbar.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/textbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/textbox.scss -------------------------------------------------------------------------------- /theme/src/controls/classic/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/classic/tooltip.scss -------------------------------------------------------------------------------- /theme/src/controls/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/common.scss -------------------------------------------------------------------------------- /theme/src/controls/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/dialog.scss -------------------------------------------------------------------------------- /theme/src/controls/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/dropdown.scss -------------------------------------------------------------------------------- /theme/src/controls/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/menu.scss -------------------------------------------------------------------------------- /theme/src/controls/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/scrollbar.scss -------------------------------------------------------------------------------- /theme/src/controls/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/search.scss -------------------------------------------------------------------------------- /theme/src/controls/slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/slider.scss -------------------------------------------------------------------------------- /theme/src/controls/textbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/textbox.scss -------------------------------------------------------------------------------- /theme/src/controls/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/tooltip.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/button.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/checkbox.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/dialog.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/dropdown.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/menu.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/scrollbar.scss -------------------------------------------------------------------------------- /theme/src/controls/xp/textbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/controls/xp/textbox.scss -------------------------------------------------------------------------------- /theme/src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/global.scss -------------------------------------------------------------------------------- /theme/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/index.scss -------------------------------------------------------------------------------- /theme/src/js/WindhawkComm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/WindhawkComm.js -------------------------------------------------------------------------------- /theme/src/js/lang/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/lang/en-US.js -------------------------------------------------------------------------------- /theme/src/js/lang/ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/lang/ko-KR.js -------------------------------------------------------------------------------- /theme/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/main.js -------------------------------------------------------------------------------- /theme/src/js/managers/ControlManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/managers/ControlManager.js -------------------------------------------------------------------------------- /theme/src/js/managers/PageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/managers/PageManager.js -------------------------------------------------------------------------------- /theme/src/js/managers/SidebarManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/managers/SidebarManager.js -------------------------------------------------------------------------------- /theme/src/js/managers/ThemeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/managers/ThemeManager.js -------------------------------------------------------------------------------- /theme/src/js/managers/WindowManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/managers/WindowManager.js -------------------------------------------------------------------------------- /theme/src/js/pages/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/pages/config.js -------------------------------------------------------------------------------- /theme/src/js/pages/discography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/pages/discography.js -------------------------------------------------------------------------------- /theme/src/js/pages/libx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/pages/libx.js -------------------------------------------------------------------------------- /theme/src/js/pages/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/pages/playlist.js -------------------------------------------------------------------------------- /theme/src/js/pages/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/pages/queue.js -------------------------------------------------------------------------------- /theme/src/js/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/strings.js -------------------------------------------------------------------------------- /theme/src/js/ui/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/ui/dialogs.js -------------------------------------------------------------------------------- /theme/src/js/ui/playerbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/ui/playerbar.js -------------------------------------------------------------------------------- /theme/src/js/ui/tinting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/ui/tinting.js -------------------------------------------------------------------------------- /theme/src/js/ui/titlebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/ui/titlebar.js -------------------------------------------------------------------------------- /theme/src/js/ui/topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/ui/topbar.js -------------------------------------------------------------------------------- /theme/src/js/utils/DirectUserStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/DirectUserStorage.js -------------------------------------------------------------------------------- /theme/src/js/utils/FontDetective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/FontDetective.js -------------------------------------------------------------------------------- /theme/src/js/utils/MadMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/MadMenu.js -------------------------------------------------------------------------------- /theme/src/js/utils/UpdateCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/UpdateCheck.js -------------------------------------------------------------------------------- /theme/src/js/utils/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/appearance.js -------------------------------------------------------------------------------- /theme/src/js/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/js/utils/functions.js -------------------------------------------------------------------------------- /theme/src/pages/album.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/album.scss -------------------------------------------------------------------------------- /theme/src/pages/artist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/artist.scss -------------------------------------------------------------------------------- /theme/src/pages/cinema.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/cinema.scss -------------------------------------------------------------------------------- /theme/src/pages/discography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/discography.scss -------------------------------------------------------------------------------- /theme/src/pages/genre.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/genre.scss -------------------------------------------------------------------------------- /theme/src/pages/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/home.scss -------------------------------------------------------------------------------- /theme/src/pages/nowplaying.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/nowplaying.scss -------------------------------------------------------------------------------- /theme/src/pages/playlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/playlist.scss -------------------------------------------------------------------------------- /theme/src/pages/profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/profile.scss -------------------------------------------------------------------------------- /theme/src/pages/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/pages/search.scss -------------------------------------------------------------------------------- /theme/src/pages/settings.scss: -------------------------------------------------------------------------------- 1 | .x-settings-equalizerSection { 2 | background: none; 3 | } -------------------------------------------------------------------------------- /theme/src/panels/config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/panels/config.scss -------------------------------------------------------------------------------- /theme/src/panels/friends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/panels/friends.scss -------------------------------------------------------------------------------- /theme/src/panels/libx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/panels/libx.scss -------------------------------------------------------------------------------- /theme/src/panels/npv.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/panels/npv.scss -------------------------------------------------------------------------------- /theme/src/panels/queue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/panels/queue.scss -------------------------------------------------------------------------------- /theme/src/resources/config/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/close.png -------------------------------------------------------------------------------- /theme/src/resources/config/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/close_hover.png -------------------------------------------------------------------------------- /theme/src/resources/config/close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/close_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/config/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/hue.png -------------------------------------------------------------------------------- /theme/src/resources/config/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/next.png -------------------------------------------------------------------------------- /theme/src/resources/config/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/next_hover.png -------------------------------------------------------------------------------- /theme/src/resources/config/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/next_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/config/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/prev.png -------------------------------------------------------------------------------- /theme/src/resources/config/prev_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/prev_hover.png -------------------------------------------------------------------------------- /theme/src/resources/config/prev_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/prev_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/config/sat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/sat.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipback.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipback_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipback_hover.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipback_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipback_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipforward.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipforward_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipforward_hover.png -------------------------------------------------------------------------------- /theme/src/resources/config/skipforward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/skipforward_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/config/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/config/speed.png -------------------------------------------------------------------------------- /theme/src/resources/frame/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/close.png -------------------------------------------------------------------------------- /theme/src/resources/frame/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/close_hover.png -------------------------------------------------------------------------------- /theme/src/resources/frame/close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/close_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/frame/closeonly_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/closeonly_hover.png -------------------------------------------------------------------------------- /theme/src/resources/frame/closeonly_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/closeonly_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/frame/leftframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/leftframe.png -------------------------------------------------------------------------------- /theme/src/resources/frame/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/maximize.png -------------------------------------------------------------------------------- /theme/src/resources/frame/maximize_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/maximize_hover.png -------------------------------------------------------------------------------- /theme/src/resources/frame/maximize_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/maximize_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/frame/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/minimize.png -------------------------------------------------------------------------------- /theme/src/resources/frame/minimize_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/minimize_hover.png -------------------------------------------------------------------------------- /theme/src/resources/frame/minimize_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/minimize_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/frame/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/restore.png -------------------------------------------------------------------------------- /theme/src/resources/frame/rightframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/rightframe.png -------------------------------------------------------------------------------- /theme/src/resources/frame/spotify_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/spotify_16.png -------------------------------------------------------------------------------- /theme/src/resources/frame/spotify_16_2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/spotify_16_2013.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar_closeonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar_closeonly.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar_closeonly_noedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar_closeonly_noedge.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar_nocontrols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar_nocontrols.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar_nocontrols_noedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar_nocontrols_noedge.png -------------------------------------------------------------------------------- /theme/src/resources/frame/titlebar_noedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/frame/titlebar_noedge.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/checkmark-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/checkmark-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/checkmark-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/checkmark-hover.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/checkmark-menu-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/checkmark-menu-dark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/checkmark-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/checkmark-menu.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/checkmark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/expand.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-down-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-down-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-down.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-left-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-left-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-left-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-left.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-right-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-right-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-right-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-right.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-up-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-up-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10/scroll-up.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/expand.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-down-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-down-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-down.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-left-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-left-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-left-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-left.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-right-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-right-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-right-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-right.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-up-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-up-hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/10dark/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/10dark/scroll-up.png -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/button-down-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/button-down-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/2k/scrollbar-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/2k/scrollbar-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/button-down-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/button-down-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/checkmark-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/checkmark-disabled.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/checkmark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98/scrollbar-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98/scrollbar-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/button-down-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/button-down-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/checkmark-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/checkmark-disabled.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/checkmark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/98dark/scrollbar-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/98dark/scrollbar-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/close.png -------------------------------------------------------------------------------- /theme/src/resources/icon/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/close_hover.png -------------------------------------------------------------------------------- /theme/src/resources/icon/close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/close_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/icon/compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/compact.png -------------------------------------------------------------------------------- /theme/src/resources/icon/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/error.png -------------------------------------------------------------------------------- /theme/src/resources/icon/grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/grabber.png -------------------------------------------------------------------------------- /theme/src/resources/icon/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/grid.png -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/button-down-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/button-down-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/checkmark-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/checkmark-disabled.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/checkmark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcblack/scrollbar-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcblack/scrollbar-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/button-down-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/button-down-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/button-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/button-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/button-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/button-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/button-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/button-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/button-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/button-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/hcwhite/scrollbar-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/hcwhite/scrollbar-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/info.png -------------------------------------------------------------------------------- /theme/src/resources/icon/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/list.png -------------------------------------------------------------------------------- /theme/src/resources/icon/list_discography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/list_discography.png -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/bullet_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/bullet_menu.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/bullet_radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/bullet_radio.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/check_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/check_checkbox.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/check_menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/check_menu.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/check_menu_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/check_menu_dark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/check_menu_hcblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/check_menu_hcblack.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/close.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/downexpand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/downexpand.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/grabber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/grabber.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/grabber_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/grabber_top.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/help.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/max.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/min.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/restore.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/rtl_grabber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/rtl_grabber.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/rtl_grabber_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/rtl_grabber_top.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/rtl_submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/rtl_submenu.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/marlett/submenu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/marlett/submenu.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/nowplaying_album_art_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/nowplaying_album_art_placeholder.png -------------------------------------------------------------------------------- /theme/src/resources/icon/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/question.png -------------------------------------------------------------------------------- /theme/src/resources/icon/scroll-thumb-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/scroll-thumb-horizontal.png -------------------------------------------------------------------------------- /theme/src/resources/icon/scroll-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/scroll-thumb.png -------------------------------------------------------------------------------- /theme/src/resources/icon/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/search.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/slider-indicator-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/slider-indicator-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/slider-indicator-box-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/slider-indicator-box-active.png -------------------------------------------------------------------------------- /theme/src/resources/icon/slider-indicator-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/slider-indicator-box.png -------------------------------------------------------------------------------- /theme/src/resources/icon/slider-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/slider-indicator.png -------------------------------------------------------------------------------- /theme/src/resources/icon/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/spinner.gif -------------------------------------------------------------------------------- /theme/src/resources/icon/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/spinner.png -------------------------------------------------------------------------------- /theme/src/resources/icon/spinner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/spinner.webp -------------------------------------------------------------------------------- /theme/src/resources/icon/userframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/userframe.png -------------------------------------------------------------------------------- /theme/src/resources/icon/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/warning.png -------------------------------------------------------------------------------- /theme/src/resources/icon/wmpotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/wmpotify.png -------------------------------------------------------------------------------- /theme/src/resources/icon/wmpotify_48.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/wmpotify_48.pdn -------------------------------------------------------------------------------- /theme/src/resources/icon/wmpotify_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/wmpotify_48.png -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/checkmark-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/checkmark-disabled.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/checkmark.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/dropdown-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/dropdown-active.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/dropdown-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/dropdown-hover.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/dropdown.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-arrow-down.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-arrow-left.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-arrow-right.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-arrow-up.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-background-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-background-horizontal.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-background.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-thumb-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-thumb-horizontal.svg -------------------------------------------------------------------------------- /theme/src/resources/icon/xp/scroll-thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/icon/xp/scroll-thumb.svg -------------------------------------------------------------------------------- /theme/src/resources/library/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/album.png -------------------------------------------------------------------------------- /theme/src/resources/library/artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/artist.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron_collapsed.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron_collapsed_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron_collapsed_dark.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron_collapsed_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron_collapsed_hover.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron_dark.png -------------------------------------------------------------------------------- /theme/src/resources/library/chevron_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/chevron_hover.png -------------------------------------------------------------------------------- /theme/src/resources/library/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/download.png -------------------------------------------------------------------------------- /theme/src/resources/library/download_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/download_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/folder_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/folder_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/library.png -------------------------------------------------------------------------------- /theme/src/resources/library/liked_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/liked_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/music.png -------------------------------------------------------------------------------- /theme/src/resources/library/music_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/music_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist.png -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_auto.png -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_user.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_user.pdn -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_user.png -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_user2.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_user2.pdn -------------------------------------------------------------------------------- /theme/src/resources/library/playlist_user2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/playlist_user2.png -------------------------------------------------------------------------------- /theme/src/resources/library/podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/podcast.png -------------------------------------------------------------------------------- /theme/src/resources/library/podcast_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/podcast_192.png -------------------------------------------------------------------------------- /theme/src/resources/library/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/library/song.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/bg_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/bg_large.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/bg_small.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/btn_21_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/btn_21_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/btn_21_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/btn_21_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/btn_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/btn_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/btn_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/btn_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/connect.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/connect_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/connect_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/connect_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/connect_phone.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/connect_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/connect_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fastforward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fastforward_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_exit.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_exit_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_exit_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_exit_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_exit_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_exit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_exit_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/fullscreen_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/fullscreen_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/bg_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/bg_large.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/bg_small.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/btn.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/btn_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/btn_21.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/fastforward.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/fastforward.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/fastforward.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/fullscreen_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/fullscreen_exit.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/miniplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/miniplayer.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/next.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/next.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/next.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/pause.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/pause.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/pause.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/play.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/play.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/play.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/prev.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/prev.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/prev.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/repeat.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/repeat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/repeat_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/seekhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/seekhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/shuffle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/shuffle_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/shuffle_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/stop.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_high.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_low.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_mid.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_mini.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_mini_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_mini_expand.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/vol_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/vol_muted.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcblack/volhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcblack/volhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/bg_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/bg_large.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/bg_small.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/btn.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/btn_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/btn_21.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/fastforward.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/fastforward.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/fastforward.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/fullscreen_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/fullscreen_exit.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/miniplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/miniplayer.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/next.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/next.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/next.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/pause.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/pause.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/pause.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/play.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/play.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/play.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/prev.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/prev.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/prev.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/repeat.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/repeat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/repeat_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/seekhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/seekhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/shuffle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/shuffle_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/shuffle_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/stop.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_high.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_low.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_mid.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_mini.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_mini_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_mini_expand.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/vol_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/vol_muted.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/hcwhite/volhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/hcwhite/volhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/lyrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/lyrics.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/lyrics_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/lyrics_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/lyrics_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/lyrics_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/miniplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/miniplayer.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/miniplayer_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/miniplayer_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/miniplayer_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/miniplayer_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/miniplayer_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/miniplayer_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next_fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next_fullscreen_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next_fullscreen_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/next_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/npv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/npv.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/npv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/npv_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/npv_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/npv_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_25.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_25_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_25_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_25_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_25_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_31.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_31_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_31_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_31_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_31_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pause_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/pbfillend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/pbfillend.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_25.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_25_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_25_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_25_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_25_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_25_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_25_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_31.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_31_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_31_glow.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_31_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_31_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_31_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_31_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_glow.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/play_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev_fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev_fullscreen_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev_fullscreen_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/prev_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/prev_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/queue.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/queue_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/queue_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/queue_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/queue_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/repeat.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/repeat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/repeat_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/righticonbase.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/righticonbase.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/seekhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/seekhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/seekhandle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/seekhandle_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/seekhandle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/seekhandle_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/shuffle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/shuffle_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/shuffle_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/stop.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/stop_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/stop_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_high.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_low.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mid.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_expand.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_expand_extrahover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_expand_extrahover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_expand_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_expand_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_expand_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_extrahover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_extrahover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_mini_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_mini_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_muted.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/vol_popup_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/vol_popup_bg.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/volhandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/volhandle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/volhandle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/volhandle_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/volhandle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/volhandle_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/bg_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/bg_large.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/bg_small.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/bottom_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/bottom_texture.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/bottom_texture_minheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/bottom_texture_minheight.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/bottom_texture_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/bottom_texture_mini.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fastforward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fastforward_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_exit.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_exit_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_exit_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_exit_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_exit_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_exit_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_exit_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/fullscreen_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/fullscreen_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/miniplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/miniplayer.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/miniplayer_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/miniplayer_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/miniplayer_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/miniplayer_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/miniplayer_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/miniplayer_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/next.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/next.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/next.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/next_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/next_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/next_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/pause.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/pause.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/pause.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/pause_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/pause_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/pause_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/pause_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/play.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/play.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/play.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/play_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/play_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/play_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/play_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/prev.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/prev.pdn -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/prev.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/prev_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/prev_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/prev_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/prev_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/prev_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/prev_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/repeat.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/repeat_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/repeat_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/shuffle.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/shuffle_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/shuffle_active.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/stop.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/stop_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/stop_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_high.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_low.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mid.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mini_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mini_expand.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mini_expand_extrahover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mini_expand_extrahover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mini_expand_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mini_expand_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mini_expand_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mini_expand_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_mini_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_mini_hover.png -------------------------------------------------------------------------------- /theme/src/resources/playerbar/xp/vol_muted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/playerbar/xp/vol_muted.png -------------------------------------------------------------------------------- /theme/src/resources/sidebar/album_art_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/sidebar/album_art_placeholder.png -------------------------------------------------------------------------------- /theme/src/resources/sidebar/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/sidebar/clear.png -------------------------------------------------------------------------------- /theme/src/resources/sidebar/clear_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/sidebar/clear_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/sidebar/sbclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/sidebar/sbclose.png -------------------------------------------------------------------------------- /theme/src/resources/sidebar/sbopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/sidebar/sbopen.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/bg.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/bgstrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/bgstrip.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/clear.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/clear_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/clear_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/clear_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/clear_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav_disabled.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav_hcblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav_hcblack.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav_hcwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav_hcwhite.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/nav_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/nav_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/overflow.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/overflow_hcblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/overflow_hcblack.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/overflow_hcwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/overflow_hcwhite.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/overflow_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/overflow_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/search.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/separator.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_active.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_active_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_active_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_active_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_active_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_hcblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_hcblack.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_hcwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_hcwhite.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_hover_section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_hover_section.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/tab_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/tab_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/user.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/user_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/user_hover.png -------------------------------------------------------------------------------- /theme/src/resources/topbar/user_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/topbar/user_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header.pdn -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header.png -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header_dark.png -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header_hover.png -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header_pressed.png -------------------------------------------------------------------------------- /theme/src/resources/ui/listview_header_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/listview_header_selected.png -------------------------------------------------------------------------------- /theme/src/resources/ui/toolbarbutton_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/toolbarbutton_hover.png -------------------------------------------------------------------------------- /theme/src/resources/ui/toolbarbutton_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/resources/ui/toolbarbutton_pressed.png -------------------------------------------------------------------------------- /theme/src/ui/frame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/frame.scss -------------------------------------------------------------------------------- /theme/src/ui/fullscreen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/fullscreen.scss -------------------------------------------------------------------------------- /theme/src/ui/mainarea.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/mainarea.scss -------------------------------------------------------------------------------- /theme/src/ui/playerbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/playerbar.scss -------------------------------------------------------------------------------- /theme/src/ui/tinting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/tinting.scss -------------------------------------------------------------------------------- /theme/src/ui/topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/ui/topbar.scss -------------------------------------------------------------------------------- /theme/src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingan121/WMPotify/HEAD/theme/src/variables.scss --------------------------------------------------------------------------------