mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
5130f85300
+ redesign (again!) the playlist cards
15 lines
419 B
TypeScript
15 lines
419 B
TypeScript
import { Setting, SettingType } from "@/interfaces/settings";
|
|
import useSettingsStore from "@/stores/settings";
|
|
|
|
const settings = useSettingsStore;
|
|
|
|
const use_alt_np: Setting = {
|
|
title: "Use alternate now playing card",
|
|
type: SettingType.binary,
|
|
source: () => settings().use_alt_np,
|
|
inactive: () => settings().disable_show_alt_np,
|
|
action: () => settings().toggleUseRightNP(),
|
|
};
|
|
|
|
export default [use_alt_np];
|