You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
Python
52 lines
1.7 KiB
Python
# misc_screen.py
|
|
|
|
#
|
|
# Copyright 2022 user
|
|
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from gi.repository import Gtk, Adw
|
|
from gettext import gettext as _
|
|
from jade_gui.classes.jade_screen import JadeScreen
|
|
|
|
|
|
@Gtk.Template(resource_path="/al/getcryst/jadegui/pages/misc_screen.ui")
|
|
class MiscScreen(JadeScreen, Adw.Bin):
|
|
__gtype_name__ = "MiscScreen"
|
|
|
|
hostname_entry = Gtk.Template.Child()
|
|
#ipv_switch = Gtk.Template.Child()
|
|
timeshift_switch = Gtk.Template.Child()
|
|
zramd_switch = Gtk.Template.Child()
|
|
|
|
hostname = "crystal"
|
|
ipv_enabled = False
|
|
zramd_enabled = False
|
|
timeshift_enabled = True
|
|
zramd_enabled = True
|
|
move_to_summary = False
|
|
|
|
def __init__(self, window, application, **kwargs):
|
|
super().__init__(**kwargs)
|
|
self.window = window
|
|
|
|
self.set_valid(True)
|
|
|
|
def on_complete(self, *_):
|
|
self.hostname = self.hostname_entry.get_text()
|
|
#self.ipv_enabled = self.ipv_switch.get_state()
|
|
self.zramd_enabled = self.zramd_switch.get_state()
|
|
self.timeshift_enabled = self.timeshift_switch.get_state()
|