updated control access

This commit is contained in:
Quality System Admin
2025-10-16 02:36:32 +03:00
parent 50c791e242
commit c96039542d
266 changed files with 32656 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env python3
import os
def notify(title, message):
os.system(f"notify-send '{title}' '{message}'")
title=os.getenv('APP_TITLE')
version=os.getenv('APP_VERSION')
printer="\U0001F5A8"
tada="\U0001F389"
notify("{} {}".format(printer, title), """{} This is a sample message from {} {}.
This message indicates that provisioning startup tasks are working.""".format(tada, title, version))