aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/Applications/Shifter.vb
blob: cea6fe332e41bbdf5ec57f4473ca47f02e79ac75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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