forked from Opticos/GWSL-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_old dpi system.py
596 lines (481 loc) · 19 KB
/
main_old dpi system.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
# GWSL Service
import os
import subprocess
import sys
import time
import keyboard
import GWSL_profiles as profile
# Copyright Paul-E/Opticos Studios 2020
# https://opticos.github.io/gwsl/
import iset
import pymsgbox
from systray import SysTrayIcon as tray
frozen = 'not'
if getattr(sys, 'frozen', False):
# we are running in a bundle
frozen = 'ever so'
bundle_dir = sys._MEIPASS
else:
# we are running in a normal Python environment
bundle_dir = os.path.dirname(os.path.abspath(__file__))
# Nulls
systray = None
exiter = False
server_PID = 0
# Globals
clipboard = True
display_mode = "m"
hashtag_the_most_default = ["-ac", "-wgl", "-compositewm", "-notrayicon", "-dpi", "auto"]
default_profiles = {"m": hashtag_the_most_default + ["-multiwindow"],
"s": hashtag_the_most_default,
"f": hashtag_the_most_default + ["-fullscreen"]}
current_custom_profile = None
profile_dict = {}
custom_profiles = []
# DPI Stuff
from winreg import *
from winreg import CloseKey, ConnectRegistry, CreateKey, OpenKey, QueryValue, QueryValueEx, SetValueEx
modes = ["~ HIGHDPIAWARE", "~ DPIUNAWARE", "~ GDIDPISCALING DPIUNAWARE"]
REG_PATH = r"SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers"
def set_reg(name, value):
"""Set DPI via registry key"""
try:
CreateKey(HKEY_CURRENT_USER, REG_PATH)
registry_key = OpenKey(HKEY_CURRENT_USER, REG_PATH, 0, KEY_WRITE)
SetValueEx(registry_key, name, 0, REG_SZ, value)
CloseKey(registry_key)
return True
except:
logger.exception("Exception occurred - Cannot Change DPI (set_reg)")
def rescan(systray=False):
"""Rescan profiles"""
global profile_dict, custom_profiles
try:
sett = iset.read()
profile_dict = sett["xserver_profiles"]
if systray != False:
menu = build_menu()
systray.update(menu_options=menu)
custom_profiles = list(profile_dict)
except:
logger.exception("Exception occurred - Cannot scan profiles")
custom_profiles = []
def get_args(profile_name):
"""Get defaults for launching VCXSRV with a given profile"""
return profile_dict[profile_name]
def open_about(systray):
try:
subprocess.Popen(bundle_dir + "\\GWSL.exe --about")
except:
logger.exception("Exception occurred")
def open_dashboard(*args):
try:
subprocess.Popen(bundle_dir + "\\GWSL.exe")
except:
logger.exception("Exception occurred")
def shutdown(systray):
global exiter
exiter = True
def icon(name):
"""Returns path of named icon"""
return f"{bundle_dir}\\assets\\systray\\{name}.ico"
def set_custom_profile(systray, profile):
"""Switch to custom profile"""
global current_custom_profile, display_mode
try:
if profile == current_custom_profile:
return True
if ask():
sett = iset.read()
sett["graphics"]["window_mode"] = profile
iset.set(sett)
display_mode = "c"
current_custom_profile = profile
menu = build_menu()
systray.update(hover_text=f"GWSL Running - {profile}", menu_options=menu)
print("setting", profile)
restart_server()
except:
logger.exception("Exception occurred - Cannot switch to custom profile " + str(profile))
def set_default_profile(systray, mode_type):
"""Sets the default XServer display mode (single, multi, fullscreen)"""
global current_custom_profile, display_mode
try:
if mode_type == display_mode:
return True
if ask():
sett = iset.read()
mode_names = {"m": "multi", "s": "single", "f": "full"}
sett["graphics"]["window_mode"] = mode_names[mode_type]
iset.set(sett)
display_mode = mode_type
current_custom_profile = ""
menu = build_menu()
mode_names = {"m": "Multi Window", "s": "Single Window", "f": "Fullscreen"}
name = mode_names[display_mode]
systray.update(hover_text=f"GWSL Running - {name}", menu_options=menu)
restart_server()
except:
logger.exception("Exception occurred - Cannot switch to profile type " + str(mode_type))
def toggle_clipboard(systray, state):
"""Toggles the clipboard between Windows and WSL graphical apps being on/off. (Only functional in 3 default profiles)"""
global clipboard
try:
if state == True:
phrase = "Enable"
else:
phrase = "Disable"
if ask_clip(phrase):
clipboard = state
menu = build_menu()
systray.update(menu_options=menu)
sett = iset.read()
sett["general"]["clipboard"] = clipboard
iset.set(sett)
restart_server()
except:
logger.exception("Exception occurred - Cannot toggle clipboard")
def config(systray):
"""Open the config file for GWSL (settings.json)"""
try:
path = os.getenv('APPDATA') + "\\GWSL\\"
os.popen(f"{path}settings.json")
except:
logger.exception("Exception occurred - Cannot open Config File")
def open_logs(systray):
"""Launches Notepad to view GWSL logs"""
try:
path = os.getenv('APPDATA') + "\\GWSL\\"
subprocess.Popen(f"notepad {path}service.log")
subprocess.Popen(f"notepad {path}dashboard.log")
except:
logger.exception("Exception occurred - Cannot Open Logs")
def open_help(s):
"""Open browser to GWSL help page"""
import webbrowser
webbrowser.get('windows-default').open('https://opticos.github.io/gwsl/help.html')
def add_profile(systray):
"""Allows one to add a custom XServer profile (config)"""
try:
new_profile = profile.add(bundle_dir)
if new_profile != None:
name = new_profile["name"]
arguments = new_profile["args"].split(" ")
sett = iset.read()
sett["xserver_profiles"][name] = arguments
iset.set(sett)
rescan()
menu = build_menu()
systray.update(menu_options=menu)
except:
logger.exception("Exception occurred - Cannot Create Profile")
def dpi_set(systray, mode):
"""Modifies the DPI registry key in Windows (DPI implementation to chanage soon)"""
server_location = f"{bundle_dir}\\VCXSRV\\GWSL_vcxsrv.exe"
instance_location = f"{bundle_dir}\\VCXSRV\\GWSL_instance.exe"
print(server_location)
print(instance_location)
try:
set_reg(server_location, modes[int(mode)])
set_reg(instance_location, modes[int(mode)])
except:
logger.exception("Exception occurred - Cannot Change DPI (dpi_set)")
if ask_dpi() == True:
restart_server()
def reset_config(systray):
"""Resets settings.json to original config, clears GWSL logs"""
global exiter
if ask_reset():
try:
systray.shutdown()
iset.create(sett_path + "\\settings.json")
print("creating settings")
print("Stopping Logger...")
f_handler.close()
logging.shutdown()
print("Cleaning Logs...")
try:
os.remove(sett_path + '\\dashboard.log')
except:
pass
try:
os.remove(sett_path + '\\service.log')
except:
pass
try:
os.remove(sett_path + '\\settings.json')
except:
pass
exiter = True
kill_server()
sys.exit()
except:
pass
def build_menu():
"""Builds the configuration menu"""
try:
menu = []
modes = {"m": "multi", "s": "single", "f": "full", "c": "custom"}
mode_names = {"m": "Multi Window", "s": "Single Window", "f": "Fullscreen", "c": current_custom_profile}
defaults = [["Multi Window Mode", icon("multi"), set_default_profile, "m"],
["Single Window Mode", icon("single"), set_default_profile, "s"],
["Fullscreen Mode", icon("full"), set_default_profile, "f"]]
dpi_options = [("DPI Scaling Mode", icon("dpi"), [("Linux - Sharper but Slower (active)", icon("dpi_lin"), dpi_set, 0),
("Windows - Faster but Blurrier", icon("dpi_win"), dpi_set, 1)])]#,
#("Windows GDI Enhanced", icon("dpi_enhanced"), dpi_set, 2)])]
options = [("Configure GWSL", icon("config"), config),
("Log and Configuration Cleanup", icon("refresh"), reset_config),
("View Logs", icon("logs"), open_logs),
("Dashboard", icon("dashboard"), open_dashboard),
("About", icon("info"), open_about),
("Help", icon("help"), open_help),
("Exit", icon("quit"), shutdown)]
current_icon = icon(modes[display_mode])
profiles = defaults
for profile in custom_profiles:
text = "Custom - " + str(profile) + ""
prof = [text, icon("custom"), set_custom_profile, profile]
profiles.append(prof)
mode_name = mode_names[display_mode]
for p in profiles:
profile_id = p[3]
if display_mode == "c":
if profile_id == mode_name:
p[0] = p[0] + " (active)"
else:
if display_mode == profile_id:
p[0] = p[0] + " (active)"
profiles = [tuple(l) for l in profiles] #make it a list of tuples
menu.append((f"XServer Profiles ({mode_name})", current_icon,
profiles + [("Add A Profile", icon("add"), add_profile)]))
menu.append(("Rescan Profiles", icon("refresh"), rescan))
if display_mode != "c":
# Clipboard options are only enabled for multi, single, and fullscreen default modes
if clipboard:
ico = icon("check")
command = False
phrase = "On"
else:
ico = icon("quit")
command = True
phrase = "Off"
menu.append((f"Shared Clipboard ({phrase})", ico, toggle_clipboard, command))
menu += dpi_options
menu += options
return menu
except:
logger.exception("Exception occurred - Cannot Build Menu")
return []
def ask():
"""Prompts user to confirm switching XServer profiles"""
choice = pymsgbox.confirm(text="Switch XServer profiles? Be sure to save any work open in GWSL programs. "
"This might force-close some windows.",
title="Switch Profile",
buttons=["Yes", "No"])
if choice == "Yes":
return True
else:
return False
def ask_clip(phrase):
"""Prompts user to confirm enabling/disabling the shared clipboard"""
choice = pymsgbox.confirm(text="Toggle the shared clipboard? Be sure to save any work open in GWSL programs. "
"This might force-close some windows.",
title=f"{phrase} Clipboard",
buttons=["Yes", "No"])
if choice == "Yes":
return True
else:
return False
def ask_dpi():
"""Prompts user to confirm changing DPI"""
choice = pymsgbox.confirm(text="To apply changes, the GWSL will close. Be sure to save any work open in GWSL "
"programs. This will force close windows running in GWSL. Restart now?",
title=f"Restart XServer to Apply Changes?",
buttons=["Yes", "No"])
if choice == "Yes":
return True
else:
return False
def ask_reset():
"""Prompts user to confirm clearing logs and resetting config"""
choice = pymsgbox.confirm(text="Delete GWSL logs and reset configuration? This will not delete shortcuts. "
"The GWSL XServer will need to be restarted. Be sure to save any work open in GWSL "
"programs. This will force close windows running in GWSL.",
title=f"Clear GWSL Data?",
buttons=["Yes", "No"])
if choice == "Yes":
return True
else:
return False
def ask_restart():
"""Prompts user to confirm restarting the GWSL service"""
answer = pymsgbox.confirm(
text="Hmm... The GWSL service just crashed or was closed. Do you want to restart the service?",
title="XServer Has Stopped",
buttons=['Yes', 'No'])
if answer == "Yes":
return True
else:
return False
def restart_server():
"""Restarts GWSL services"""
global server_PID
server_PID = "reloading"
kill_server()
start_server()
def kill_server():
"""Stops the GWSL services"""
"""
#subprocess.getoutput('taskkill /F /IM vcxsrv.exe')
#subprocess.getoutput('taskkill /F /IM GWSL_vcxsrv.exe')
print("startkill")
#Make sure PID actually points to vcxsrv
service_name = subprocess.getoutput(f'tasklist /nh /fo csv /FI "PID eq {server_PID}"').split(",")[0]
if "GWSL_vcxsrv" in service_name:
print(f'taskkill /F /pid {server_PID}')
subprocess.getoutput(f'taskkill /F /pid {server_PID}')
else:
#resort to older method
print("killing all vcxsrv")
"""
subprocess.getoutput('taskkill /F /IM vcxsrv.exe')
subprocess.getoutput('taskkill /F /IM GWSL_vcxsrv.exe')
subprocess.getoutput('taskkill /F /IM GWSL_vcxsrv_hidpi.exe')
def start_server():
"""Starts the GWSL services"""
global server_PID
try:
if display_mode != "c":
default_arguments = default_profiles[display_mode]
if clipboard:
default_arguments.append("-clipboard")
default_arguments.append("-primary")
else:
default_arguments.append("-noclipboard")
default_arguments.append("-noprimary")
else:
default_arguments = ["-ac"] + get_args(current_custom_profile)
proc = subprocess.Popen(["VCXSRV/GWSL_vcxsrv.exe"] + default_arguments)
server_PID = proc.pid
except:
logger.exception("Exception occurred - Cannot Start VcXsrv")
def get_running():
"""Checks whether the GWSL service is currently running"""
service_name = subprocess.getoutput(f'tasklist /nh /fo csv /FI "PID eq {server_PID}"').split(",")[0]
if server_PID == "reloading":
return True
#print(service_name)
#proc_list = os.popen('tasklist').readlines()
if "GWSL_vcxsrv" in service_name:
return True
return False
def main():
"""Main entry point for application"""
global systray, display_mode, clipboard, exiter, ic, timer
# Kill VcXsrv if already running
#if get_running(): we dont need to check do we...
kill_server()
# Start VcXsrv
start_server()
# Start Tray Icon
menu = build_menu()
if display_mode == "c":
name = current_custom_profile
else:
mode_names = {"m": "Multi Window", "s": "Single Window", "f": "Fullscreen"}
name = mode_names[display_mode]
systray = tray(ic, f"GWSL Running - {name}", menu, default_menu_index=open_dashboard)
systray.start()
# start service listener
timer = time.perf_counter()
while True:
try:
if time.perf_counter() - timer > 4:
timer = timer = time.perf_counter()
if not get_running():
# In case someone closes a single-window server... restart as multi window.
if display_mode == "s":
display_mode = "m"
menu = build_menu()
systray.update(hover_text="GWSL Running - Multi Window", menu_options=menu)
sett = iset.read()
sett["graphics"]["window_mode"] = "multi"
iset.set(sett)
restart_server()
elif ask_restart():
restart_server()
else:
systray.shutdown()
kill_server()
subprocess.getoutput('taskkill /F /IM GWSL.exe')
sys.exit()
if exiter:
kill_server()
subprocess.getoutput('taskkill /F /IM GWSL.exe')
systray.shutdown()
sys.exit()
except:
logger.exception("Exception occurred in main loop")
kill_server()
systray.shutdown()
sys.exit()
time.sleep(2)
kill_server()
systray.shutdown()
sys.exit()
if __name__ == "__main__":
# main_thread
# Create Appdata directory if manager has not done so
try:
sett_path = os.getenv('APPDATA') + "\\GWSL"
if not os.path.isdir(sett_path):
os.mkdir(sett_path)
print("creating appdata directory")
if not os.path.exists(sett_path + "\\settings.json"):
iset.create(sett_path + "\\settings.json")
print("creating settings")
iset.path = sett_path + "\\settings.json"
# Start Logging
import logging
logger = logging.getLogger(__name__)
# Create handlers
f_handler = logging.FileHandler(sett_path + '\\service.log')
f_handler.setLevel(logging.ERROR)
f_format = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
f_handler.setFormatter(f_format)
# Add handlers to the logger
logger.addHandler(f_handler)
except:
sett_path = os.getenv('APPDATA') + "\\GWSL\\errorbegin"
if not os.path.isdir(sett_path):
os.mkdir(sett_path)
sys.exit()
try:
import ctypes
import platform
if int(platform.release()) >= 8:
ctypes.windll.shcore.SetProcessDpiAwareness(True)
except:
logger.exception("Exception occurred - Cannot Set DPI Aware")
try:
mode = iset.read()["graphics"]["window_mode"]
key = {"multi": "m", "single": "s", "full": "f"}
try:
if key[mode] == "m" or key[mode] == "s" or key[mode] == "f":
print("We have a default!! Hooray!")
display_mode = key[mode]
clipboard = iset.read()["general"]["clipboard"]
else:
print("We have a custom profile")
current_custom_profile = mode
except:
print("We have a custom profile")
current_custom_profile = mode
display_mode = "c"
rescan()
menu = build_menu()
keyboard.add_hotkey('alt+ctrl+g', open_dashboard, args=systray)
ic = icon("systray")
main()
except:
logger.exception("Exception occurred - Cannot Start Service. Make sure the settings file is not corrupted.")