winotch
No description available.
File Explorer
- ci.yml
- architecture.md
- AssemblyInfo.cs
- WinotchTray.ico
- AccountPictureService.cs
- App.xaml
- App.xaml.cs
- AppBarReservationService.cs
- AssemblyInfo.cs
- AudioDeviceService.cs
- AudioService.cs
- AudioSessionService.cs
- BatteryVisual.cs
- BrightnessService.cs
- CalendarAgenda.cs
- CalendarModels.cs
- CalendarRefreshService.cs
- CalendarSubscriptionUrl.cs
- CalendarTimeZoneResolver.cs
- CalendarToastTracker.cs
- CameraMirrorModels.cs
- CameraMirrorService.cs
- CameraMirrorWindow.xaml
- CameraMirrorWindow.xaml.cs
- ClipboardContentReader.cs
- ClipboardHistoryEntry.cs
- ClipboardHistoryFormatting.cs
- ClipboardHistoryMonitor.cs
- ClipboardHistoryPanel.xaml
- ClipboardHistoryPanel.xaml.cs
- ClipboardHistoryStore.cs
- ClipboardPrivacyPolicy.cs
- ClipboardThumbnail.cs
- ClipboardUpdateQueue.cs
- ControlCenterModels.cs
- CoreAudioInterfaces.cs
- CoreAudioInterop.cs
- DdcBrightness.cs
- DiagnosticsReport.cs
- DisplayRefreshRateService.cs
- FocusTimerModels.cs
- FocusTimerState.cs
- FocusTimerStore.cs
- ForegroundWindowService.cs
- IcsContent.cs
- IcsDateTimeParser.cs
- IcsParser.cs
- IcsRecurrence.cs
- JoinLinkDetector.cs
- MainWindow.Calendar.cs
- MainWindow.xaml
- MainWindow.xaml.cs
- MediaService.cs
- MonitorTargeting.cs
- NotificationChangeTracker.cs
- NotificationService.cs
- NotificationSilenceService.cs
- PolicyConfigInterop.cs
- PriorityStatus.cs
- SettingsService.cs
- SettingsWindow.xaml
- SettingsWindow.xaml.cs
- ShellAnimationTiming.cs
- ShellAnimator.cs
- ShellMetrics.cs
- ShellMode.cs
- StartupService.cs
- SystemStats.cs
- SystemStatsService.cs
- SystemStatus.cs
- TrayIconService.cs
- WifiProfileFallback.cs
- WifiService.cs
- WindowChromeInterop.cs
- Winotch.csproj
- WmiBrightness.cs
- CalendarAgendaTests.cs
- CalendarRefreshServiceTests.cs
- CameraMirrorTests.cs
- ClipboardHistoryTests.cs
- ControlCenterTests.cs
- DiagnosticsReportTests.cs
- FocusTimerTests.cs
- IcsParserTests.cs
- LifecycleTests.cs
- MonitorTargetingTests.cs
- SettingsPolishTests.cs
- SettingsServiceTests.cs
- StatusShellTests.cs
- SystemStatsTests.cs
- Winotch.Tests.csproj
- .gitignore
- AGENTS.md
- DESIGN.md
- LICENSE
- README.md
- Winotch.slnx
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dotnet build
View Details ▼
dotnet build
Builds a .NET application and its dependencies.
dotnet build
Compile the project or solution in the current directory:
dotnet build {{path/to/project_or_solution}}
Compile a .NET project or solution in debug mode:
dotnet build {{[-c|--configuration]}} {{Release}}
Compile in release mode:
dotnet publish
View Details ▼
dotnet publish
Publish a .NET application and its dependencies to a directory for deployment to a hosting system.
dotnet publish {{[-c|--configuration]}} Release {{path/to/project_file}}
Compile a .NET project in release mode:
dotnet publish {{[-sc|--self-contained]}} true {{[-r|--runtime]}} {{runtime_identifier}} {{path/to/project_file}}
Publish the .NET Core runtime with your application for the specified runtime:
dotnet publish {{[-r|--runtime]}} {{runtime_identifier}} -p:PublishSingleFile=true {{path/to/project_file}}
Package the application into a platform-specific single-file executable:
dotnet run
View Details ▼
dotnet run
Run a .NET application without explicit compile or launch commands.
dotnet run
Run the project in the current directory:
dotnet run --project {{path/to/file.csproj}}
Run a specific project:
dotnet run -- {{arg1=foo arg2=bar ...}}
Run the project with specific arguments:
dotnet test
View Details ▼
dotnet test
Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.
dotnet test
Execute tests for a .NET project/solution in the current directory:
dotnet test {{path/to/project_or_solution}}
Execute tests for a .NET project/solution in a specific location:
dotnet test --filter {{Name~TestMethod1}}
Execute tests matching the given filter expression:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
http
View Details ▼
http
HTTPie: an HTTP client designed for testing, debugging, and generally interacting with APIs and HTTP servers.
See also: `xh`.
http {{https://example.com}}
Make a simple GET request (shows response headers and content):
http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}
Print specific parts of the content (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata):
http {{GET|POST|HEAD|PUT|PATCH|DELETE|...}} --proxy {{http|https}}:{{http://localhost:8080|socks5://localhost:9050|...}} {{https://example.com}}
Specify the HTTP method when sending a request and use a proxy to intercept the request:
https
View Details ▼
https
This command is an alias of `http`.
tldr http
View documentation for the original command:
netsh wlan
View Details ▼
netsh wlan
Manage wireless networks.
netsh wlan show networks
Show all available wireless networks:
netsh wlan connect name={{ssid}}
Connect to a wireless network with a specific SSID:
netsh wlan disconnect
Disconnect from the current wireless network:
