Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config file is being partially read #870

Open
sga-13 opened this issue Dec 31, 2024 · 0 comments
Open

config file is being partially read #870

sga-13 opened this issue Dec 31, 2024 · 0 comments

Comments

@sga-13
Copy link

sga-13 commented Dec 31, 2024

I have set some config options (window decoration, render, font, shell, and color), but when I launch a new instance, shell and fonts are not being used, but color is being read, and so is the log-level option. I am not getting any error window during startup. I have also tried to comment out everything and only change shell or colors or fonts at a time, they still dont work. I am a Arch linux user, and using the package in the [extras] repo, though I also tried running the binary from the deb package from release section, the error persists. My config file and log files are as followed. According to log file, the warn lines are only concerned about Noto fonts not being present (which i admittedly do not have installed, but I have not set noto fonts in the config so that shoud not be the breaking thing I suppose)

rio -V
rioterm 0.2.2

Config File

# Hide the cursor while typing
#
# Default is `false`
#
# hide-cursor-when-typing = false

# Ignore theme selection foreground color
#
# Default is false
#
# Example:
# ignore-selection-foreground-color = false

# Theme
#
# It makes Rio look for the specified theme in the themes folder
# (macos and linux: ~/.config/rio/themes/dracula.toml)
# (windows: C:\Users\USER\AppData\Local\rio\themes\dracula.toml)
#
# Example:
# theme = "dracula"

# Padding-x
#
# define x axis padding (default is 0)
#
# Example:
# padding-x = 10

# Padding-y
#
# define y axis padding based on a format [top, left]
# (default is [0, 0])
#
# Example:

# padding-y = [30, 10]

# Option as Alt
#
# This config only works on MacOS.
# Possible choices: 'both', 'left' and 'right'.
#
# Example:
# option-as-alt = 'left'

# Line height
#
# This option will apply an modifier to line-height
# Default is `1.0`
#
# Example:
# line-height = 1.2

# Startup directory
#
# Directory the shell is started in. If this is unset the working
# directory of the parent process will be used.
#
# This configuration only has effect if use-fork is disabled.
#
# Example:
# working-dir = "/Users/raphael/Documents/"

# Environment variables
#
# Example:
# env-vars = []

# Use fork
#
# Defaults for POSIX-based systems (Windows is not configurable):
# MacOS: spawn processes
# Linux/BSD: fork processes
#
# Example:
use-fork = true

# Confirm before exiting Rio
# Default is `true`
#
confirm-before-quit = true

# Cursor
#
# shape - Default cursor shape is 'block'
# Other available options are: 'underline', 'beam' or 'hidden'
#
# blinking - Whether the cursor blinks. The default is false
#
# blinking-interval - Cursor update on milliseconds interval
#
# [cursor]
# shape = 'block'
# blinking = false
# blinking-interval = 800

# Editor
#
# Default editor on Linux and MacOS is "vi",
# on Windows it is "notepad".
#
# Whenever the key binding `OpenConfigEditor` is triggered it will
# use the value of the editor along with the rio configuration path.
[editor]
program = "helix"
# args = []

# Window configuration
#
# • width - define the initial window width.
#   Default: 600
#
# • height - define the initial window height.
#   Default: 400
#
# • mode - define how the window will be created
#     - "Windowed" (default) is based on width and height
#     - "Maximized" window is created with maximized
#     - "Fullscreen" window is created with fullscreen
#
# • opacity - Set window opacity
#
# • blur - Set blur on the window background. Changing this config requires restarting Rio to take effect.
#
# • decorations - Set window decorations, options: "Enabled", "Disabled", "Transparent", "Buttonless"
#
# Example:
[window]
# width = 600
# height = 400
# mode = "Windowed"
# opacity = 1.0
# blur = false
decorations = "Disabled"

# Renderer
#
# • Performance: Set WGPU rendering performance
#   - High: Adapter that has the highest performance. This is often a discrete GPU.
#   - Low: Adapter that uses the least possible power. This is often an integrated GPU.
#
# • Backend: Set WGPU rendering backend
#   - Automatic: Leave Sugarloaf/WGPU to decide
#   - GL: Supported on Linux/Android, and Windows and macOS/iOS via ANGLE
#   - Vulkan: Supported on Windows, Linux/Android
#   - DX12: Supported on Windows 10
#   - Metal: Supported on macOS/iOS
#
# • disable-unfocused-render: This property disable renderer processes while Rio is unfocused.
#
# • level: Configure renderer level
#   - Available options: 0 and 1.
#       Higher the level more rendering features and computations
#       will be done like enable font ligatures or emoji support.
#       For more information please check the docs.
#
# • filters: A list of paths to RetroArch slang shaders. Might not work with OpenGL.
#
# Example:
[renderer]
performance = "Low"
backend = "automatic"
# disable-unfocused-render = false
level = 1
# filters = []

# Keyboard
#
# use-kitty-keyboard-protocol - Enable Kitty Keyboard protocol
#
# disable-ctlseqs-alt - Disable ctlseqs with ALT keys
#   - For example: Terminal.app does not deal with ctlseqs with ALT keys
#
# Example:
# [keyboard]
# use-kitty-keyboard-protocol = false
# disable-ctlseqs-alt = false

# Fonts
#
# Configure fonts used by the terminal
#
# Note: You can set different font families but Rio terminal
# will always look for regular font bounds whene
#
# You can also set family on root to overwrite all fonts.
#
# You can also specify extra fonts to load
# [fonts]
# extras = [{ family = "Microsoft JhengHei" }]
#
# In case you want to specify any font feature:
# [fonts]
# features = ["ss02", "ss03", "ss05", "ss19"]
#
# Note: Font features do not have support to live reload on configuration,
# so to reflect your changes, you will need to close and reopen Rio.
#
# You can also disable font hinting. Font hinting is enabled by default.
# [fonts]
# hinting = false
#
# Example:
# [fonts]
# size = 18
#
[fonts]
family = "DejaVu Sans Mono"
size = 15
[fonts.regular]
family = "DejaVu Sans Mono"
style = "Normal"
weight = 400

[fonts.bold]
family = "DejaVu Sans Mono"
style = "Normal"
weight = 400

[fonts.italic]
family = "DejaVu Sans Mono"
style = "Normal"
weight = 400

[fonts.bold-italic]
family = "DejaVu Sans Mono"
style = "Normal"
weight = 400

# Scroll
#
# You can change how many lines are scrolled each time by setting this option.
#
# Scroll calculation for canonical mode will be based on `lines = (accumulated scroll * multiplier / divider)`,
# If you want a quicker scroll, keep increasing the multiplier.
# If you want to reduce scroll speed you will need to increase the divider.
# You can use both properties also to find the best scroll for you.
#
# Multiplier default is 3.0.
# Divider default is 1.0.
# Example:
# [scroll]
# multiplier = 3.0
# divider = 1.0

# Navigation
#
# "mode" - Define navigation mode
#   • NativeTab (MacOS only)
#   • Bookmark
#   • BottomTab
#   • TopTab
#   • Plain
#
# "hide-if-single" - Hide navigation UI if is single.
# "clickable" - Enable click on tabs to switch.
# "use-current-path" - Use same path whenever a new tab is created (Note: requires `use-fork` to be set to false).
# "color-automation" - Set a specific color for the tab whenever a specific program is running, or in a specific directory.
#
# Example:
# [navigation]
# mode = "bookmark"
# clickable = false
# hide-if-single = true
# use-current-path = false
# color-automation = []

# Shell
#
# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
# Entries in `shell.args` are passed unmodified as arguments to the shell.
#
# Default:
#   - (macOS) user login shell
#   - (Linux/BSD) user login shell
#   - (Windows) powershell
#
# Example 1 using fish shell from bin path:
#
# [shell]
# program = "/bin/fish"
# args = ["--login"]
#
# Example 2 for Windows using powershell
#
# [shell]
# program = "pwsh"
# args = []
#
# Example 3 for Windows using powershell with login
#
# [shell]
# program = "pwsh"
# args = ["-l"]
#
# Example 4 for MacOS with tmux installed by homebrew
#
# [shell]
# program = "/opt/homebrew/bin/tmux"
# args = ["new-session", "-c", "/var/www"]
[shell]
program = "/usr/bin/bash"
args = ["--rcfile", "/home/sg/.local/bin/scripts/bashrc.sh"]

# Colors
#
# Colors definition will overwrite any property in theme
# (considering if theme folder does exists and is being used)
#
# Example:
[colors]
foreground = "#ffffff"
background = "#000000"
cursor = '#ffffff'
tabs = '#0097ab'
tabs-active = '#1690df'
black = "#000000"
red = "#ff007c"
yellow = "#f3fd18"
blue = "#1690df"
magenta = "#D65E75"
cyan = "#0097ab"
green = "#5ada22"
white = "#ffffff"


# Bindings
#
# Create custom Key bindings for Rio terminal
# More information in: https://raphamorim.io/rio/docs/config/bindings
#
# Example:
# [bindings]
# keys = [
#   { key = "q", with = "super", action = "Quit" },
#   # Bytes[27, 91, 53, 126] is equivalent to "\x1b[5~"
#   { key = "home", with = "super | shift", bytes = [27, 91, 53, 126] }
# ]

# Platform
#
# Rio now allows you to have different configurations per OS
# You can write ovewrite properties like `Shell`, `Navigation`
# and `Window`.
#
# Example:
# [shell]
# # default (in this case will be used only on MacOS)
# program = "/bin/fish"
# args = ["--login"]
#
# [platform]
# # Microsoft Windows overwrite
# windows.shell.program = "pwsh"
# windows.shell.args = ["-l"]
#
# # Linux overwrite
# linux.shell.program = "tmux"
# linux.shell.args = ["new-session", "-c", "/var/www"]

# Log level
#
# This property enables log level filter and file. The default level is "OFF" and the logs are not logged to a file as default.
#
# Example:
# [developer]
# log-level = "OFF"
# enable-log-file = false
[developer]
log-level = "INFO"

Log File

2024-12-31T12:06:13.431352Z  INFO logger: frontends/rioterm/src/main.rs:120: logging level: INFO
2024-12-31T12:06:13.431379Z  INFO logger: frontends/rioterm/src/main.rs:122: logging to a file: /home/sg/.config/rio/log/rio.log
2024-12-31T12:06:13.431438Z  INFO setup_environment_variables: frontends/rioterm/src/main.rs:54: terminfo: rio
2024-12-31T12:06:13.437243Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.437325Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans Mono' found in /usr/share/fonts/TTF/DejaVuSansMono.ttf
2024-12-31T12:06:13.437336Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.437574Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans Mono' found in /usr/share/fonts/TTF/DejaVuSansMono.ttf
2024-12-31T12:06:13.437583Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.437812Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans Mono' found in /usr/share/fonts/TTF/DejaVuSansMono.ttf
2024-12-31T12:06:13.437821Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438076Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans Mono' found in /usr/share/fonts/TTF/DejaVuSansMono.ttf
2024-12-31T12:06:13.438087Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("Noto Sans")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438101Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("Noto Sans")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438113Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "Noto Sans", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.438122Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438630Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans' found in /usr/share/fonts/TTF/DejaVuSans.ttf
2024-12-31T12:06:13.438641Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("FreeSans")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438654Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("FreeSans")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438661Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "FreeSans", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.438669Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("Noto Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438697Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("Noto Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438704Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "Noto Sans Mono", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.438712Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("DejaVu Sans Mono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438851Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:620: Font 'DejaVu Sans Mono' found in /usr/share/fonts/TTF/DejaVuSansMono.ttf
2024-12-31T12:06:13.438861Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("FreeMono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438874Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("FreeMono")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438883Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "FreeMono", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.438891Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("Noto Sans Symbols")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438904Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("Noto Sans Symbols")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438911Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "Noto Sans Symbols", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.438919Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:602: Font search: 'Query { families: [Name("Noto Sans Symbols2")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438932Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:639: Failed to find font 'Query { families: [Name("Noto Sans Symbols2")], weight: Weight(400), stretch: Normal, style: Normal }'
2024-12-31T12:06:13.438938Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/font/mod.rs:331: SugarloafFont { family: "Noto Sans Symbols2", weight: None, style: Normal, width: None }
2024-12-31T12:06:13.452054Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-23.0.0/src/vulkan/instance.rs:351: Debug utils not enabled: debug_utils_user_data not passed to Instance::from_raw    
2024-12-31T12:06:13.454117Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-23.0.0/src/gles/egl.rs:842: Using Wayland platform    
2024-12-31T12:06:13.465939Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:77: selected instance: Instance { context: ContextWgpuCore { type: "Native" } }
2024-12-31T12:06:13.465956Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:81: Available adapters:
2024-12-31T12:06:13.467456Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-core-23.0.0/src/instance.rs:308: Adapter AdapterInfo { name: "AMD Radeon Graphics (RADV RENOIR)", vendor: 4098, device: 5607, device_type: IntegratedGpu, driver: "radv", driver_info: "Mesa 24.3.2-arch1.1", backend: Vulkan }    
2024-12-31T12:06:13.468247Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-core-23.0.0/src/instance.rs:308: Adapter AdapterInfo { name: "AMD Radeon Graphics (radeonsi, renoir, LLVM 18.1.8, DRM 3.59, 6.12.7-arch1-1)", vendor: 4098, device: 0, device_type: Other, driver: "", driver_info: "4.6 (Core Profile) Mesa 24.3.2-arch1.1", backend: Gl }    
2024-12-31T12:06:13.468296Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:83:     AdapterInfo { name: "AMD Radeon Graphics (RADV RENOIR)", vendor: 4098, device: 5607, device_type: IntegratedGpu, driver: "radv", driver_info: "Mesa 24.3.2-arch1.1", backend: Vulkan }
2024-12-31T12:06:13.468319Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:83:     AdapterInfo { name: "AMD Radeon Graphics (radeonsi, renoir, LLVM 18.1.8, DRM 3.59, 6.12.7-arch1-1)", vendor: 4098, device: 0, device_type: Other, driver: "", driver_info: "4.6 (Core Profile) Mesa 24.3.2-arch1.1", backend: Gl }
2024-12-31T12:06:13.468341Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:87: initializing the surface
2024-12-31T12:06:13.468371Z  WARN /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-hal-23.0.0/src/gles/egl.rs:996: Re-initializing Gles context due to Wayland window    
2024-12-31T12:06:13.478908Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-core-23.0.0/src/instance.rs:382: Adapter AdapterInfo { name: "AMD Radeon Graphics (RADV RENOIR)", vendor: 4098, device: 5607, device_type: IntegratedGpu, driver: "radv", driver_info: "Mesa 24.3.2-arch1.1", backend: Vulkan }    
2024-12-31T12:06:13.478945Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:104: Selected adapter: AdapterInfo { name: "AMD Radeon Graphics (RADV RENOIR)", vendor: 4098, device: 5607, device_type: IntegratedGpu, driver: "radv", driver_info: "Mesa 24.3.2-arch1.1", backend: Vulkan }
2024-12-31T12:06:13.479641Z  INFO /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/sugarloaf-0.2.2/src/context/mod.rs:50: Sugarloaf selected format: Bgra8Unorm from [Bgra8UnormSrgb, Rgba8UnormSrgb, Bgra8Unorm, Rgba8Unorm]
2024-12-31T12:06:13.505797Z  INFO frontends/rioterm/src/context/mod.rs:244: rio -> teletypewriter: create_pty_with_fork
2024-12-31T12:06:13.505847Z  INFO teletypewriter/src/unix/mod.rs:609: fork "/usr/bin/bash"
2024-12-31T12:06:13.508568Z  INFO frontends/rioterm/src/application.rs:138: Initialisation complete
2024-12-31T12:06:13.512661Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:13.512692Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:13.524368Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:13.528753Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:13.528770Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:20.557700Z  INFO rio-backend/src/crosswords/mod.rs:1225: Setting keyboard mode to Mode(0x0)
2024-12-31T12:06:23.486865Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:24.865555Z  INFO rio-backend/src/crosswords/mod.rs:545: Crosswords::resize dimensions unchanged
2024-12-31T12:06:26.096166Z  INFO rio-backend/src/crosswords/mod.rs:1225: Setting keyboard mode to Mode(0x0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant