mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Add braces for better readability in shutdown/reboot logic (Main.cs). - Prevent redundant OnPropertyChanged calls in _skipPowerActionConfirmation setter (Settings.cs).
141 lines
3.1 KiB
C#
141 lines
3.1 KiB
C#
using System.Collections.ObjectModel;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Flow.Launcher.Plugin.Sys;
|
|
|
|
public class Settings : BaseModel
|
|
{
|
|
public Settings()
|
|
{
|
|
if (Commands.Count > 0)
|
|
{
|
|
SelectedCommand = Commands[0];
|
|
}
|
|
}
|
|
|
|
public ObservableCollection<Command> Commands { get; set; } =
|
|
[
|
|
new()
|
|
{
|
|
Key = "Shutdown",
|
|
Keyword = "Shutdown"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Restart",
|
|
Keyword = "Restart"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Restart With Advanced Boot Options",
|
|
Keyword = "Restart With Advanced Boot Options"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Log Off/Sign Out",
|
|
Keyword = "Log Off/Sign Out"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Lock",
|
|
Keyword = "Lock"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Sleep",
|
|
Keyword = "Sleep"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Hibernate",
|
|
Keyword = "Hibernate"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Index Option",
|
|
Keyword = "Index Option"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Empty Recycle Bin",
|
|
Keyword = "Empty Recycle Bin"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Open Recycle Bin",
|
|
Keyword = "Open Recycle Bin"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Exit",
|
|
Keyword = "Exit"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Save Settings",
|
|
Keyword = "Save Settings"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Restart Flow Launcher",
|
|
Keyword = "Restart Flow Launcher"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Settings",
|
|
Keyword = "Settings"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Reload Plugin Data",
|
|
Keyword = "Reload Plugin Data"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Check For Update",
|
|
Keyword = "Check For Update"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Open Log Location",
|
|
Keyword = "Open Log Location"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Flow Launcher Tips",
|
|
Keyword = "Flow Launcher Tips"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Flow Launcher UserData Folder",
|
|
Keyword = "Flow Launcher UserData Folder"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Toggle Game Mode",
|
|
Keyword = "Toggle Game Mode"
|
|
},
|
|
new()
|
|
{
|
|
Key = "Set Flow Launcher Theme",
|
|
Keyword = "Set Flow Launcher Theme"
|
|
}
|
|
];
|
|
|
|
[JsonIgnore]
|
|
public Command SelectedCommand { get; set; }
|
|
private bool _skipPowerActionConfirmation;
|
|
public bool SkipPowerActionConfirmation
|
|
{
|
|
get => _skipPowerActionConfirmation;
|
|
set
|
|
{
|
|
if (_skipPowerActionConfirmation == value)
|
|
{
|
|
return;
|
|
}
|
|
_skipPowerActionConfirmation = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|