34
34
import threading
35
35
from distutils .version import LooseVersion
36
36
from logging .handlers import RotatingFileHandler
37
+ from pathlib import Path
37
38
38
39
import babel .core
39
40
import babel .dates
60
61
SYSTEM_PLUGINS_DIR = os .path .join (BIN_DIRECTORY , 'plugins' )
61
62
USER_PLUGINS_DIR = os .path .join (CONFIG_DIRECTORY , 'plugins' )
62
63
LOCALE_PATH = os .path .join (BIN_DIRECTORY , 'config/locale' )
64
+ SYSTEM_DESKTOP_FILE = os .path .join (BIN_DIRECTORY , "platform/safeeyes.desktop" )
65
+ SYSTEM_ICONS = os .path .join (BIN_DIRECTORY , "platform/icons" )
63
66
DESKTOP_ENVIRONMENT = None
64
67
IS_WAYLAND = False
65
68
@@ -362,35 +365,77 @@ def initialize_safeeyes():
362
365
logging .info ('Copy the config files to ~/.config/safeeyes' )
363
366
364
367
style_dir_path = os .path .join (HOME_DIRECTORY , '.config/safeeyes/style' )
365
- startup_dir_path = os .path .join (HOME_DIRECTORY , '.config/autostart' )
366
-
368
+
367
369
# Remove the ~/.config/safeeyes/safeeyes.json file
368
370
delete (CONFIG_FILE_PATH )
369
371
370
- # Remove the startup file
371
- delete (os .path .join (HOME_DIRECTORY , os .path .join (
372
- startup_dir_path , 'safeeyes.desktop' )))
373
-
374
372
# Create the ~/.config/safeeyes/style directory
375
373
mkdir (style_dir_path )
376
- mkdir (startup_dir_path )
377
374
378
375
# Copy the safeeyes.json
379
376
shutil .copy2 (SYSTEM_CONFIG_FILE_PATH , CONFIG_FILE_PATH )
380
377
os .chmod (CONFIG_FILE_PATH , 0o777 )
381
378
382
- # Copy the new startup file
383
- try :
384
- os .symlink ("/usr/share/applications/safeeyes.desktop" ,
385
- os .path .join (startup_dir_path , 'safeeyes.desktop' ))
386
- except OSError :
387
- pass
388
-
389
379
# Copy the new style sheet
390
380
if not os .path .isfile (STYLE_SHEET_PATH ):
391
381
shutil .copy2 (SYSTEM_STYLE_SHEET_PATH , STYLE_SHEET_PATH )
392
382
os .chmod (STYLE_SHEET_PATH , 0o777 )
393
383
384
+ initialize_platform ()
385
+
386
+
387
+ def initialize_platform ():
388
+ """
389
+ Copy icons and generate desktop entries.
390
+ """
391
+ logging .debug ("Initialize the platform" )
392
+
393
+ applications_dir_path = os .path .join (HOME_DIRECTORY , '.local/share/applications' )
394
+ icons_dir_path = os .path .join (HOME_DIRECTORY , '.local/share/icons' )
395
+ startup_dir_path = os .path .join (HOME_DIRECTORY , '.config/autostart' )
396
+ desktop_entry = os .path .join (applications_dir_path , 'safeeyes.desktop' )
397
+ startup_entry = os .path .join (startup_dir_path , 'safeeyes.desktop' )
398
+
399
+ # Create the folders if not exist
400
+ mkdir (applications_dir_path )
401
+ mkdir (icons_dir_path )
402
+ mkdir (startup_dir_path )
403
+
404
+ # Remove existing files
405
+ delete (desktop_entry )
406
+ delete (startup_entry )
407
+
408
+ # Create a destop entry
409
+ try :
410
+ os .symlink (SYSTEM_DESKTOP_FILE , desktop_entry )
411
+ except OSError :
412
+ logging .error ("Failed to create desktop entry at %s" % desktop_entry )
413
+
414
+ # Create the new startup entry
415
+ try :
416
+ os .symlink (SYSTEM_DESKTOP_FILE , startup_entry )
417
+ except OSError :
418
+ logging .error ("Failed to create startup entry at %s" % startup_entry )
419
+
420
+ # Add links for all icons
421
+ for (path , _ , filenames ) in os .walk (SYSTEM_ICONS ):
422
+ for filename in filenames :
423
+ system_icon = os .path .join (path , filename )
424
+ local_icon = os .path .join (icons_dir_path , os .path .relpath (system_icon , SYSTEM_ICONS ))
425
+ parent_dir = str (Path (local_icon ).parent )
426
+
427
+ # Create the directory if not exists
428
+ mkdir (parent_dir )
429
+
430
+ # Remove the link if already exists
431
+ delete (local_icon )
432
+
433
+ # Add a link for the icon
434
+ try :
435
+ os .symlink (system_icon , local_icon )
436
+ except OSError :
437
+ logging .error ("Failed to create icon link at %s" % local_icon )
438
+
394
439
395
440
def reset_config ():
396
441
# Remove the ~/.config/safeeyes/safeeyes.json and safeeyes_style.css
@@ -405,6 +450,8 @@ def reset_config():
405
450
os .chmod (CONFIG_FILE_PATH , 0o777 )
406
451
os .chmod (STYLE_SHEET_PATH , 0o777 )
407
452
453
+ initialize_platform ()
454
+
408
455
def replace_style_sheet ():
409
456
"""
410
457
Replace the user style sheet by system style sheet.
0 commit comments