9
9
10
10
window = Tk ()
11
11
window .title ("Sys Master" )
12
- window .geometry ('500x250 ' )
12
+ window .geometry ('500x210 ' )
13
13
menubar = Menu (window )
14
14
15
15
def callback (url ):
@@ -51,10 +51,6 @@ def open_popup():
51
51
lbl .grid (column = 0 , row = 4 )
52
52
btn = Button (window , text = "Run" , width = 8 , command = app .mem )
53
53
btn .grid (column = 1 , row = 4 )
54
- lbl = Label (window , text = "Task Manager" ,font = ('Arial' ,12 ))
55
- lbl .grid (column = 0 , row = 5 )
56
- btn = Button (window , text = "Run" , width = 8 , command = app .task )
57
- btn .grid (column = 1 , row = 5 )
58
54
lbl = Label (window , text = "Discord" ,justify = LEFT ,font = ('Arial' ,12 ))
59
55
lbl .grid (column = 3 , row = 0 )
60
56
btn = Button (window , text = "Run" , width = 8 , command = app .discord )
@@ -67,20 +63,10 @@ def open_popup():
67
63
lbl .grid (column = 3 , row = 2 )
68
64
btn = Button (window , text = "Run" , width = 8 , command = app .vol_mix )
69
65
btn .grid (column = 4 , row = 2 )
70
- lbl = Label (window , text = "Steam " ,font = ('Arial' ,12 ))
66
+ lbl = Label (window , text = "Task Manager " ,font = ('Arial' ,12 ))
71
67
lbl .grid (column = 3 , row = 3 )
72
- btn = Button (window , text = "Run" , width = 8 , command = app .steam )
68
+ btn = Button (window , text = "Run" , width = 8 , command = app .task )
73
69
btn .grid (column = 4 , row = 3 )
74
- lbl = Label (window , text = "Epic games" ,font = ('Arial' ,12 ))
75
- lbl .grid (column = 3 , row = 4 )
76
- btn = Button (window , text = "Run" , width = 8 , command = app .epic )
77
- btn .grid (column = 4 , row = 4 )
78
- lbl = Label (window , text = "Uplay" ,font = ('Arial' ,12 ))
79
- lbl .grid (column = 3 , row = 5 )
80
- btn = Button (window , text = "Run" , width = 8 , command = app .ubi )
81
- btn .grid (column = 4 , row = 5 )
82
-
83
- user_name = Label (window , text = "Made by Jothi Prasath" ,font = ('Arial' ,7 )).place (x = 350 ,y = 220 )
84
70
85
71
window .config (menu = menubar )
86
72
window .mainloop ()
0 commit comments