diff --git a/src/etc/nobara/scripts/nobara-layouts/.goutputstream-59TLS1 b/src/etc/nobara/scripts/nobara-layouts/.goutputstream-59TLS1 deleted file mode 100644 index ca47fd7..0000000 --- a/src/etc/nobara/scripts/nobara-layouts/.goutputstream-59TLS1 +++ /dev/null @@ -1,185 +0,0 @@ -#### Audio Switch #### - - audio_switch = self.builder.get_object("audio_switch") - - audio_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep volume-mixer@evermiss.net"], shell=True) - - if (audio_output.returncode) == 0: - audio_switch.set_active(True) - - def on_audio_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/audio.sh"], shell=True) - return 0 - #### Blur Switch #### - - blur_switch = self.builder.get_object("blur_switch") - - blur_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep blur-my-shell@aunetx"], shell=True) - - if (blur_output.returncode) == 0: - blur_switch.set_active(True) - - def on_blur_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/blur.sh"], shell=True) - return 0 - #### Tray Switch #### - - tray_switch = self.builder.get_object("tray_switch") - - tray_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep trayIconsReloaded@selfmade.pl"], shell=True) - - if (tray_output.returncode) == 0: - tray_switch.set_active(True) - - def on_tray_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/tray.sh"], shell=True) - return 0 - #### workspace Switch #### - - workspace_switch = self.builder.get_object("workspace_switch") - - workspace_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep auto-move-windows@gnome-shell-extensions.gcampax.github.com"], shell=True) - - if (workspace_output.returncode) == 0: - workspace_switch.set_active(True) - - def on_workspace_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/workspace.sh"], shell=True) - return 0 - #### x11 Switch #### - - x11_switch = self.builder.get_object("x11_switch") - - x11_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep x11gestures@joseexposito.github.io"], shell=True) - - if (x11_output.returncode) == 0: - x11_switch.set_active(True) - - def on_x11_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/x11.sh"], shell=True) - return 0 - #### clipboard Switch #### - - clipboard_switch = self.builder.get_object("clipboard_switch") - - clipboard_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep gnome-clipboard@b00f.github.io"], shell=True) - - if (clipboard_output.returncode) == 0: - clipboard_switch.set_active(True) - - def on_clipboard_switch_active_notify(self, switch, state): - if switch.get_active() == True : - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/clipboard.sh"], shell=True) - return 0 - - #### caffeine Switch #### - - caffeine_switch = self.builder.get_object("caffeine_switch") - - caffeine_output = subprocess.run( - ["gsettings get org.gnome.shell enabled-extensions | grep espresso@coadmunkee.github.com"], shell=True) - - if (caffeine_output.returncode) == 0: - caffeine_switch.set_active(True) - - def on_caffeine_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/caffeine.sh"], shell=True) - return 0 - - - #### supergfxctl Switch #### - - supergfxctl_switch = self.builder.get_object("supergfxctl_switch") - - supergfxctl_output = subprocess.run( - ["gsettings get org.gnome.shell enabled-extensions | grep supergfxctl-gex@asus-linux.org"], shell=True) - - if (supergfxctl_output.returncode) == 0: - supergfxctl_switch.set_active(True) - - def on_supergfxctl_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/supergfxctl.sh"], shell=True) - return 0 - - #### kde Switch #### - - kde_switch = self.builder.get_object("kde_switch") - - kde_output = subprocess.run( - ["gsettings get org.gnome.shell enabled-extensions | grep gsconnect@andyholmes.github.io"], shell=True) - - if (kde_output.returncode) == 0: - kde_switch.set_active(True) - - def on_kde_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/kde.sh"], shell=True) - return 0 - - #### weather Switch #### - - weather_switch = self.builder.get_object("weather_switch") - - weather_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep openweather-extension@jenslody.de"], shell=True) - - if (weather_output.returncode) == 0: - weather_switch.set_active(True) - - def on_weather_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/weather.sh"], shell=True) - return 0 - - #### spacebar Switch #### - - spacebar_switch = self.builder.get_object("spacebar_switch") - - spacebar_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep space-bar@luchrioh"], shell=True) - - if (spacebar_output.returncode) == 0: - spacebar_switch.set_active(True) - - def on_spacebar_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/spacebar.sh"], shell=True) - return 0 - - - #### stats Switch #### - - stats_switch = self.builder.get_object("stats_switch") - - stats_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep Vitals@CoreCoding.com"], shell=True) - - if (stats_output.returncode) == 0: - stats_switch.set_active(True) - - - def on_stats_switch_active_notify(self, switch, state): - if stats_switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/stats.sh"], shell=True) - else: - print("test") - return 0 - - #### hid Switch #### - - hid_switch = self.builder.get_object("hid_switch") - - hid_output = subprocess.run(["gsettings get org.gnome.shell enabled-extensions | grep wireless-hid@chlumskyvaclav.gmail.com"], shell=True) - - if (hid_output.returncode) == 0: - hid_switch.set_active(True) - - def on_hid_switch_active_notify(self, switch, state): - if switch.get_active() == True: - subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/hid.sh"], shell=True) - return 0 - diff --git a/src/etc/nobara/scripts/nobara-layouts/layout-scripts/.goutputstream-TVFZS1 b/src/etc/nobara/scripts/nobara-layouts/layout-scripts/.goutputstream-TVFZS1 deleted file mode 100644 index aaf65d4..0000000 --- a/src/etc/nobara/scripts/nobara-layouts/layout-scripts/.goutputstream-TVFZS1 +++ /dev/null @@ -1,3 +0,0 @@ -for ext in $(/usr/bin/ls ~/.local/share/gnome-shell/extensions); do - gnome-shell-extension-tool -d $ext; -done diff --git a/src/etc/nobara/scripts/nobara-layouts/layout-scripts/Text file~ b/src/etc/nobara/scripts/nobara-layouts/layout-scripts/Text file~ deleted file mode 100644 index e69de29..0000000 diff --git a/src/etc/nobara/scripts/nobara-layouts/nobara-layouts.ui~ b/src/etc/nobara/scripts/nobara-layouts/nobara-layouts.ui~ deleted file mode 100644 index 3baf00d..0000000 --- a/src/etc/nobara/scripts/nobara-layouts/nobara-layouts.ui~ +++ /dev/null @@ -1,973 +0,0 @@ - - - - - - radiobutton - True - True - False - True - True - - - 600 - 500 - False - Nobara Gnome Layouts - False - - - True - False - vertical - - - True - False - True - main_stack - - - - False - True - end - 0 - - - - - True - False - - - True - True - never - in - - - True - False - - - - True - False - 10 - 10 - True - True - - - True - False - vertical - 2 - - - True - False - center - center - 10 - 10 - 10 - 10 - ../../../../../../../../../etc/nobara/scripts/nobara-layouts/previews/win10.svg - - - False - True - 0 - - - - - Traditional - True - True - False - center - center - True - True - radiobutton1 - - - - True - True - 1 - - - - - 0 - 0 - - - - - True - False - vertical - 2 - - - True - False - center - center - 10 - 10 - 10 - 10 - ../../../../../../../../../etc/nobara/scripts/nobara-layouts/previews/gnome.svg - - - False - True - 0 - - - - - GNOME - True - True - False - center - center - True - True - radiobutton1 - - - - True - True - 1 - - - - - 0 - 1 - - - - - True - False - vertical - 2 - - - True - False - center - center - 10 - 10 - 10 - 10 - ../../../../../../../../../etc/nobara/scripts/nobara-layouts/previews/win11.svg - - - False - True - 0 - - - - - Eleven - True - True - False - center - center - True - True - radiobutton1 - - - - True - True - 1 - - - - - 1 - 0 - - - - - True - False - vertical - 2 - - - True - False - center - center - 10 - 10 - 10 - 10 - ../../../../../../../../../etc/nobara/scripts/nobara-layouts/previews/macos.svg - - - False - True - 0 - - - - - Pineapple - True - True - False - center - center - True - True - radiobutton1 - - - - True - True - 1 - - - - - 1 - 1 - - - - - - - - - Layouts - Layouts - - - - - True - True - never - in - - - True - False - - - - True - False - 10 - 10 - 10 - 10 - 10 - 10 - True - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Desktop Icons - 0 - - - False - True - 10 - 1 - - - - - 0 - 0 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Blur Effects - 0 - - - False - True - 10 - 1 - - - - - 0 - 1 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Advanced Audio Controls - 0 - - - False - True - 10 - 1 - - - - - 1 - 0 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Tray Icons - 0 - - - False - True - 10 - 1 - - - - - 1 - 1 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Auto Move Windows in workspaces - 0 - - - False - True - 10 - 1 - - - - - 0 - 2 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Touchpad Gestures on X11 - 0 - - - False - True - 10 - 1 - - - - - 1 - 2 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Clipboard Indicator - 0 - - - False - True - 10 - 1 - - - - - 0 - 3 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Caffeine Indicator - 0 - - - False - True - 10 - 1 - - - - - 1 - 3 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable 'KDE Connect' Integration - 0 - - - False - True - 10 - 1 - - - - - 1 - 4 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Workspace Indicator - 0 - - - False - True - 10 - 1 - - - - - 1 - 5 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Weather Indicator - 0 - - - False - True - 10 - 1 - - - - - 0 - 5 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Stats & Temp Indicator - 0 - - - False - True - 10 - 1 - - - - - 0 - 6 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable Wireless HID Indicator - 0 - - - False - True - 10 - 1 - - - - - 1 - 6 - - - - - True - False - True - True - - - True - True - start - - - - False - True - 10 - 0 - - - - - True - False - Enable GPU Controls - 0 - - - False - True - 10 - 1 - - - - - 0 - 4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Settings - Settings - 1 - - - - - True - True - 1 - - - - - - diff --git a/src/nobara-gnome-layouts-0.5-1.fc36.tar.gz b/src/nobara-gnome-layouts-0.5-1.fc36.tar.gz deleted file mode 100644 index fde64a5..0000000 Binary files a/src/nobara-gnome-layouts-0.5-1.fc36.tar.gz and /dev/null differ