keyboard layout fixed in vmenu.
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributors.
|
||||
|
||||
from fenrirscreenreader.core.i18n import _
|
||||
from fenrirscreenreader.core import debug
|
||||
|
||||
|
||||
class command:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
|
||||
def shutdown(self):
|
||||
pass
|
||||
|
||||
def get_description(self):
|
||||
return _(
|
||||
"TUI focus mode handler - suppresses screen update spam "
|
||||
"for interactive TUI applications"
|
||||
)
|
||||
|
||||
def run(self):
|
||||
# Check if TUI mode is enabled
|
||||
if not self.env["runtime"]["SettingsManager"].get_setting_as_bool(
|
||||
"focus", "tui"
|
||||
):
|
||||
return
|
||||
|
||||
# TUI mode is active - set suppression flag for incoming handler
|
||||
# This prevents the 70000-incoming.py command from announcing
|
||||
# screen updates
|
||||
self.env["commandBuffer"]["tuiSuppressIncoming"] = True
|
||||
|
||||
self.env["runtime"]["DebugManager"].write_debug_out(
|
||||
"tui_focus_handler: TUI mode active, suppressing incoming text",
|
||||
debug.DebugLevel.INFO
|
||||
)
|
||||
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
@@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import importlib.util
|
||||
import os
|
||||
|
||||
from fenrirscreenreader.core.i18n import _
|
||||
|
||||
# Load base configuration class
|
||||
_base_path = os.path.join(os.path.dirname(__file__), "..", "config_base.py")
|
||||
_spec = importlib.util.spec_from_file_location("config_base", _base_path)
|
||||
_module = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(_module)
|
||||
config_command = _module.config_command
|
||||
|
||||
|
||||
class command(config_command):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def get_description(self):
|
||||
return "Set keyboard layout to Desktop"
|
||||
|
||||
def run(self):
|
||||
current_layout = self.get_setting("keyboard", "keyboardLayout", "desktop")
|
||||
|
||||
if current_layout.lower() == "desktop":
|
||||
self.present_text("Keyboard layout already set to Desktop")
|
||||
return
|
||||
|
||||
success = self.set_setting("keyboard", "keyboardLayout", "desktop")
|
||||
|
||||
if success:
|
||||
self.present_text("Keyboard layout set to Desktop")
|
||||
self.present_text("Please restart Fenrir for this change to take effect")
|
||||
self.play_sound("Accept")
|
||||
else:
|
||||
self.present_text("Failed to change keyboard layout")
|
||||
self.play_sound("Error")
|
||||
@@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import importlib.util
|
||||
import os
|
||||
|
||||
from fenrirscreenreader.core.i18n import _
|
||||
|
||||
# Load base configuration class
|
||||
_base_path = os.path.join(os.path.dirname(__file__), "..", "config_base.py")
|
||||
_spec = importlib.util.spec_from_file_location("config_base", _base_path)
|
||||
_module = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(_module)
|
||||
config_command = _module.config_command
|
||||
|
||||
|
||||
class command(config_command):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def get_description(self):
|
||||
return "Set keyboard layout to Laptop"
|
||||
|
||||
def run(self):
|
||||
current_layout = self.get_setting("keyboard", "keyboardLayout", "desktop")
|
||||
|
||||
if current_layout.lower() == "laptop":
|
||||
self.present_text("Keyboard layout already set to Laptop")
|
||||
return
|
||||
|
||||
success = self.set_setting("keyboard", "keyboardLayout", "laptop")
|
||||
|
||||
if success:
|
||||
self.present_text("Keyboard layout set to Laptop")
|
||||
self.present_text("Please restart Fenrir for this change to take effect")
|
||||
self.play_sound("Accept")
|
||||
else:
|
||||
self.present_text("Failed to change keyboard layout")
|
||||
self.play_sound("Error")
|
||||
@@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import importlib.util
|
||||
import os
|
||||
|
||||
from fenrirscreenreader.core.i18n import _
|
||||
|
||||
# Load base configuration class
|
||||
_base_path = os.path.join(os.path.dirname(__file__), "..", "config_base.py")
|
||||
_spec = importlib.util.spec_from_file_location("config_base", _base_path)
|
||||
_module = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(_module)
|
||||
config_command = _module.config_command
|
||||
|
||||
|
||||
class command(config_command):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def get_description(self):
|
||||
return "Set keyboard layout to PTY (terminal emulation)"
|
||||
|
||||
def run(self):
|
||||
current_layout = self.get_setting("keyboard", "keyboardLayout", "desktop")
|
||||
|
||||
if current_layout.lower() == "pty":
|
||||
self.present_text("Keyboard layout already set to PTY")
|
||||
return
|
||||
|
||||
success = self.set_setting("keyboard", "keyboardLayout", "pty")
|
||||
|
||||
if success:
|
||||
self.present_text("Keyboard layout set to PTY for terminal emulation")
|
||||
self.present_text("Please restart Fenrir for this change to take effect")
|
||||
self.play_sound("Accept")
|
||||
else:
|
||||
self.present_text("Failed to change keyboard layout")
|
||||
self.play_sound("Error")
|
||||
@@ -1,38 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import importlib.util
|
||||
import os
|
||||
|
||||
from fenrirscreenreader.core.i18n import _
|
||||
|
||||
# Load base configuration class
|
||||
_base_path = os.path.join(os.path.dirname(__file__), "..", "config_base.py")
|
||||
_spec = importlib.util.spec_from_file_location("config_base", _base_path)
|
||||
_module = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(_module)
|
||||
config_command = _module.config_command
|
||||
|
||||
|
||||
class command(config_command):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
def get_description(self):
|
||||
return "Set keyboard layout to PTY2 (alternative terminal layout)"
|
||||
|
||||
def run(self):
|
||||
current_layout = self.get_setting("keyboard", "keyboardLayout", "desktop")
|
||||
|
||||
if current_layout.lower() == "pty2":
|
||||
self.present_text("Keyboard layout already set to PTY2")
|
||||
return
|
||||
|
||||
success = self.set_setting("keyboard", "keyboardLayout", "pty2")
|
||||
|
||||
if success:
|
||||
self.present_text("Keyboard layout set to PTY2 alternative terminal layout")
|
||||
self.present_text("Please restart Fenrir for this change to take effect")
|
||||
self.play_sound("Accept")
|
||||
else:
|
||||
self.present_text("Failed to change keyboard layout")
|
||||
self.play_sound("Error")
|
||||
Reference in New Issue
Block a user