From 8090793cecc685eb3e951e0962bca61fe0a8dba3 Mon Sep 17 00:00:00 2001 From: Novecento <61213759+Novecento99@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:51:43 +0200 Subject: [PATCH] reassigning --- dist/{soundMonitorAlpha.exe => soundMonitor.exe} | Bin src/{soundMonitorGUI.py => soundMonitor.py} | 5 +++-- src/{soundMonitor_old.py => soundMonitor_bare.py} | 0 3 files changed, 3 insertions(+), 2 deletions(-) rename dist/{soundMonitorAlpha.exe => soundMonitor.exe} (100%) rename src/{soundMonitorGUI.py => soundMonitor.py} (97%) rename src/{soundMonitor_old.py => soundMonitor_bare.py} (100%) diff --git a/dist/soundMonitorAlpha.exe b/dist/soundMonitor.exe similarity index 100% rename from dist/soundMonitorAlpha.exe rename to dist/soundMonitor.exe diff --git a/src/soundMonitorGUI.py b/src/soundMonitor.py similarity index 97% rename from src/soundMonitorGUI.py rename to src/soundMonitor.py index 32e48f7..04b153c 100644 --- a/src/soundMonitorGUI.py +++ b/src/soundMonitor.py @@ -24,6 +24,7 @@ # bug when closing application DONE # max value monitoring # automatic gain +# possibility to run custom script class micMonitorWindow(QMainWindow): @@ -31,8 +32,8 @@ def __init__(self): super().__init__() self.widget = QWidget() - self.setWindowTitle("microphone guardian - by Novecento99") - self.setGeometry(500,120,200,120) + self.setWindowTitle("Microphone Guardian - by Novecento99") + self.setGeometry(500,120,300,280) self.masterGrid = QGridLayout() self.inputDevices = [device for device in sd.query_devices() if (device["max_input_channels"] > 0)] diff --git a/src/soundMonitor_old.py b/src/soundMonitor_bare.py similarity index 100% rename from src/soundMonitor_old.py rename to src/soundMonitor_bare.py