cosmic-terminal/src
Lionel DARNIS 43d38aed8a feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI)
Implements the first batch of COSMIC_TERMINAL_KONSOLE_PARITY.md:

Save output as text:
- New SaveOutput action in the Edit menu, terminal context menu and
  keyboard shortcuts (Ctrl+Shift+S, Konsole parity, rebindable).
- Terminal::scrollback_text() extracts history plus visible screen via
  alacritty bounds_to_string, trimming trailing empty lines.
- Save-file dialog through cosmic-files; the file is written in a
  spawn_blocking task so large scrollbacks never stall the UI.

Search options:
- Case-sensitive and regex checkboxes in the find bar.
- App::find_pattern() escapes the pattern when regex mode is off and
  prefixes (?i) when case-insensitive (same approach as Alacritty).

Per-tab monitors (activity / silence / process finished):
- Toggles in the View menu and terminal context menu, state stored in
  Terminal (monitor_* fields).
- Activity alerts on PTY output (Wakeup) for non-active tabs; silence
  alerts after 10 s without output (Konsole default); process-finished
  compares the shell pgrp with the tty tpgid via /proc/<pid>/stat and
  alerts when the foreground job exits.
- Silence and process checks run on a 1 s iced::time subscription that
  is only active while at least one tab needs it.
- Tab bar shows an armed icon (view-reveal-symbolic) and per-kind alert
  icons; activating the tab acknowledges the alert.

Profile CLI:
- --profile/-p <name-or-id> applies a profile to the first tab only,
  unknown profiles exit(1) with the available list on stderr.
- --list-profiles prints "id<TAB>name" and exits.
- Config is now loaded before the daemonize fork so CLI output reaches
  the launching terminal.
- --help now documents -e/--command, --no-daemon and the new flags
  (-e already worked; audit confirmed everything after it becomes the
  command and its arguments).

i18n: new en/fr strings (save-output, monitor-*, find-case-sensitive,
find-regex).

Validated with ./check_cosmic_local.sh terminal, cargo fmt, and a debug
build exercising the CLI flags and a 6 s live run. The shutdown panic
in iced_winit ("async fn resumed after completion") pre-exists and is
reproducible with the installed binary.

Leyoda 2026 – GPLv3
2026-07-06 09:50:58 +02:00
..
config.rs fix: avoid re-reading system theme from disk on every menu bar render 2026-06-12 14:47:00 -06:00
dnd.rs Support drag-and-drop for files 2024-08-19 21:23:27 -06:00
icon_cache.rs Implement key bind reset 2026-02-05 12:57:56 -07:00
key_bind.rs use code fallbacks (now in shortcuts.rs), not default config file 2026-01-12 21:40:07 -08:00
localize.rs chore: update to icu 2.0.0 2025-09-19 11:28:38 -06:00
main.rs feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) 2026-07-06 09:50:58 +02:00
menu.rs feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) 2026-07-06 09:50:58 +02:00
mouse_reporter.rs fix: do not drop scrolling events from smooth scrolling mice 2026-05-29 17:14:22 +02:00
password_manager.rs Cargo fmt 2026-04-10 19:06:54 +02:00
shortcuts.rs feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) 2026-07-06 09:50:58 +02:00
terminal.rs feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) 2026-07-06 09:50:58 +02:00
terminal_box.rs fix: absorb libcosmic theme-v2 API + reqwest stream feature 2026-07-04 11:23:11 +02:00
terminal_theme.rs Update cosmic-text and remove palette dependency 2026-02-19 09:22:20 -07:00