diff options
| author | EverythingWindows <[email protected]> | 2022-11-20 21:53:17 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-20 21:53:17 +0700 |
| commit | 3f4edf1b79ee4ee5a73251930af641bcd0db225e (patch) | |
| tree | c018dad0d65e9997867f951df94ef907ea18956c /ShiftOS-TheRevival/MainForms/Applications/Shifter.vb | |
| parent | 9d384be17594240918b6b277521d3eaa15151ae9 (diff) | |
| download | shiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.tar.gz shiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.tar.bz2 shiftos-therevival-old-3f4edf1b79ee4ee5a73251930af641bcd0db225e.zip | |
trial on Dual Window Manager
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/Applications/Shifter.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/Applications/Shifter.vb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/Applications/Shifter.vb b/ShiftOS-TheRevival/MainForms/Applications/Shifter.vb new file mode 100644 index 0000000..cea6fe3 --- /dev/null +++ b/ShiftOS-TheRevival/MainForms/Applications/Shifter.vb @@ -0,0 +1,13 @@ +Public Class Shifter + Public DuWM_PID As Integer 'DuWM Process ID + + Private Sub Shifter_Load(sender As Object, e As EventArgs) Handles MyBase.Load + + End Sub + + Private Sub DuWM_Tick(sender As Object, e As EventArgs) + If Strings.ProcessID(DuWM_PID) = 0 Then + Close() + End If + End Sub +End Class
\ No newline at end of file |
