mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Flow.Launcher.Plugin.Program.Views.Models;
|
|
|
|
namespace Flow.Launcher.Plugin.Program
|
|
{
|
|
public class Settings
|
|
{
|
|
public DateTime LastIndexTime { get; set; }
|
|
public List<ProgramSource> ProgramSources { get; set; } = new List<ProgramSource>();
|
|
public List<DisabledProgramSource> DisabledProgramSources { get; set; } = new List<DisabledProgramSource>();
|
|
public string[] ProgramSuffixes { get; set; } = {"appref-ms", "exe", "lnk"};
|
|
|
|
public bool EnableStartMenuSource { get; set; } = true;
|
|
|
|
public bool EnableDescription { get; set; } = false;
|
|
public bool HideAppsPath { get; set; } = true;
|
|
public bool EnableRegistrySource { get; set; } = true;
|
|
public string CustomizedExplorer { get; set; } = Explorer;
|
|
public string CustomizedArgs { get; set; } = ExplorerArgs;
|
|
|
|
internal const char SuffixSeperator = ';';
|
|
|
|
internal const string Explorer = "explorer";
|
|
|
|
internal const string ExplorerArgs = "%s";
|
|
}
|
|
}
|