summaryrefslogtreecommitdiff
path: root/_windows/VirtualDesktopSwitcher/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to '_windows/VirtualDesktopSwitcher/Program.cs')
-rw-r--r--_windows/VirtualDesktopSwitcher/Program.cs43
1 files changed, 0 insertions, 43 deletions
diff --git a/_windows/VirtualDesktopSwitcher/Program.cs b/_windows/VirtualDesktopSwitcher/Program.cs
deleted file mode 100644
index eba2e44..0000000
--- a/_windows/VirtualDesktopSwitcher/Program.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-using System.Runtime.InteropServices;
-using WindowsDesktop;
-
-
-
-class Program
-{
- [DllImport("user32.dll")] private static extern IntPtr GetForegroundWindow();
-
- private static int RealIndex(int index)
- {
- if (index == 0)
- return 9;
-
- return index - 1;
- }
-
- [STAThread]
- public static int Main(string[] args)
- {
- if (args[0] == "prepare")
- {
- while (VirtualDesktop.GetDesktops().Length < 10)
- VirtualDesktop.Create();
- return 0;
- }
- if (args[0] == "switch")
- {
- var desktops = VirtualDesktop.GetDesktops();
- desktops[RealIndex(int.Parse(args[1]))].Switch();
- return 0;
- }
- if (args[0] == "move")
- {
- var desktops = VirtualDesktop.GetDesktops();
- var targetDesktop = desktops[RealIndex(int.Parse(args[1]))];
- VirtualDesktop.MoveToDesktop(GetForegroundWindow(), targetDesktop);
- }
-
- return 1;
- }
-}
-