This commit is contained in:
Ward Nakchbandi 2022-12-23 13:07:53 +03:00
parent f8e2ef7ace
commit 0fa4469835
2 changed files with 43 additions and 43 deletions

View File

@ -141,7 +141,7 @@ class Application:
self.window = self.builder.get_object("main_window") self.window = self.builder.get_object("main_window")
self.window.show() self.window.show()
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
@ -170,133 +170,133 @@ class Application:
### Layouts ### ### Layouts ###
def on_win10_button_pressed(self, widget): def on_win10_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 1) settings.set_int("layout-num", 1)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/win10.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/win10.sh"], shell=True)
def on_win11_button_pressed(self, widget): def on_win11_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 2) settings.set_int("layout-num", 2)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/win11.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/win11.sh"], shell=True)
def on_gnome_button_pressed(self, widget): def on_gnome_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 3) settings.set_int("layout-num", 3)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/reset.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/reset.sh"], shell=True)
def on_macos_button_pressed(self, widget): def on_macos_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 4) settings.set_int("layout-num", 4)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/macos.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/macos.sh"], shell=True)
def on_gnome2_button_pressed(self, widget): def on_gnome2_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 5) settings.set_int("layout-num", 5)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/gnome2.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/gnome2.sh"], shell=True)
def on_unity_button_pressed(self, widget): def on_unity_button_pressed(self, widget):
settings = Gio.Settings.new("org.nobara.layouts") settings = Gio.Settings.new("org.pika.layouts")
settings.set_int("layout-num", 6) settings.set_int("layout-num", 6)
subprocess.run(["/etc/nobara/scripts/nobara-layouts/layout-scripts/unity.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/layout-scripts/unity.sh"], shell=True)
### Settings ### ### Settings ###
#### Desktop Switch #### #### Desktop Switch ####
def on_desktop_switch_active_notify(self, switch, state): def on_desktop_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/desktop.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/desktop.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/desktop.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/desktop.sh disable"], shell=True)
pass pass
#### Audio Switch #### #### Audio Switch ####
def on_audio_switch_active_notify(self, switch, state): def on_audio_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/audio.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/audio.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/audio.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/audio.sh disable"], shell=True)
pass pass
#### Blur Switch #### #### Blur Switch ####
def on_blur_switch_active_notify(self, switch, state): def on_blur_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/blur.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/blur.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/blur.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/blur.sh disable"], shell=True)
pass pass
#### Tray Switch #### #### Tray Switch ####
def on_tray_switch_active_notify(self, switch, state): def on_tray_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/tray.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/tray.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/tray.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/tray.sh disable"], shell=True)
pass pass
#### workspace Switch #### #### workspace Switch ####
def on_workspace_switch_active_notify(self, switch, state): def on_workspace_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/workspace.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/workspace.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/workspace.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/workspace.sh disable"], shell=True)
pass pass
#### x11 Switch #### #### x11 Switch ####
def on_x11_switch_active_notify(self, switch, state): def on_x11_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/x11.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/x11.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/x11.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/x11.sh disable"], shell=True)
pass pass
#### clipboard Switch #### #### clipboard Switch ####
def on_clipboard_switch_active_notify(self, switch, state): def on_clipboard_switch_active_notify(self, switch, state):
if switch.get_active() == True : if switch.get_active() == True :
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/clipboard.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/clipboard.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/clipboard.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/clipboard.sh disable"], shell=True)
pass pass
#### caffeine Switch #### #### caffeine Switch ####
def on_caffeine_switch_active_notify(self, switch, state): def on_caffeine_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/caffeine.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/caffeine.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/caffeine.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/caffeine.sh disable"], shell=True)
pass pass
#### supergfxctl Switch #### #### supergfxctl Switch ####
def on_supergfxctl_switch_active_notify(self, switch, state): def on_supergfxctl_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/supergfxctl.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/supergfxctl.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/supergfxctl.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/supergfxctl.sh disable"], shell=True)
pass pass
#### kde Switch #### #### kde Switch ####
def on_kde_switch_active_notify(self, switch, state): def on_kde_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/kde.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/kde.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/kde.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/kde.sh disable"], shell=True)
pass pass
#### weather Switch #### #### weather Switch ####
def on_weather_switch_active_notify(self, switch, state): def on_weather_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/weather.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/weather.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/weather.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/weather.sh disable"], shell=True)
pass pass
#### stats Switch #### #### stats Switch ####
def on_stats_switch_active_notify(self, switch, state): def on_stats_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/stats.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/stats.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/stats.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/stats.sh disable"], shell=True)
pass pass
#### hid Switch #### #### hid Switch ####
def on_hid_switch_active_notify(self, switch, state): def on_hid_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/hid.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/hid.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/hid.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/hid.sh disable"], shell=True)
pass pass
#### Pop Switch #### #### Pop Switch ####
def on_pop_switch_active_notify(self, switch, state): def on_pop_switch_active_notify(self, switch, state):
if switch.get_active() == True: if switch.get_active() == True:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/pop.sh enable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/pop.sh enable"], shell=True)
else: else:
subprocess.run(["/etc/nobara/scripts/nobara-layouts/settings-scripts/pop.sh disable"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/settings-scripts/pop.sh disable"], shell=True)
pass pass
def on_install_all_pressed(self, widget): def on_install_all_pressed(self, widget):
subprocess.run(["/etc/nobara/scripts/nobara-layouts/all.sh"], shell=True) subprocess.run(["/etc/pika/scripts/pika-layouts/all.sh"], shell=True)
pass pass
Application() Application()

View File

@ -14,7 +14,7 @@
<property name="width-request">700</property> <property name="width-request">700</property>
<property name="height-request">535</property> <property name="height-request">535</property>
<property name="can-focus">False</property> <property name="can-focus">False</property>
<property name="title" translatable="yes">Nobara Gnome Layouts</property> <property name="title" translatable="yes">PikaOS Gnome Layouts</property>
<property name="default-width">700</property> <property name="default-width">700</property>
<property name="default-height">535</property> <property name="default-height">535</property>
<property name="show-menubar">False</property> <property name="show-menubar">False</property>