Skip to content

Commit

Permalink
Merge branch 'elfmz:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-soft authored Dec 7, 2023
2 parents 9476a5a + d8b279a commit 52fcd38
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion far2l/bootstrap/scripts/FarEng.hlf.m4
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ $ #FAR2L features - Getting Started#
You can see FAR2L version and currently used backend in window title or by ~pseudo-command~@SpecCmd@ #far:about#.
Wayland has security restriction for data access via X11; for full functionality run FAR2L-GUI in #xWayland# mode (see below).
If you have FAR2L-GUI installed, then when you run FAR2L it will try to use GUI mode.
To force run in terminal mode use #--tty# in command line: #far2l --tty# or #far2l --tty --ee# (see details in ~Command line switches~@CmdLine@ or #far2l --help#).
To force run in terminal mode TTY|Xi use in command line: #far2l --tty#;
to force run in plain mode TTY use in command line: #far2l --tty --nodetect --ee#;
(see details in ~Command line switches~@CmdLine@ or #far2l --help#).


#Keyboard shortcuts are exclusively captured by desktop environment#
Expand Down
4 changes: 3 additions & 1 deletion far2l/bootstrap/scripts/FarRus.hlf.m4
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ $ #Особенности FAR2L - начало работы#
Версию FAR2L и используемый бекенд можно увидеть в заголовке окна или через ~псевдо-команду~@SpecCmd@ #far:about#.
В Wayland получение данных через X11 ограничено; для полноценной работы запускайте FAR2L-GUI в режиме #xWayland# (см. ниже).
Если у Вас установлена версия GUI, то при запуске будет пытаться использоваться она.
Для принудительного запуска терминального варианта используйте #--tty# в командной строке: #far2l --tty# или #far2l --tty --ee# (подробнее про ключи запуска в ~Параметры командной строки~@CmdLine@ или #far2l --help#).
Для принудительного запуска терминального варианта TTY|Xi используйте в командной строке: #far2l --tty#;
для принудительного запуска минимального варианта TTY используйте в командной строке: #far2l --tty --nodetect --ee#;
(подробнее про ключи запуска в ~Параметры командной строки~@CmdLine@ или #far2l --help#).


#Перехват комбинаций клавиш оболочками#
Expand Down
6 changes: 5 additions & 1 deletion far2l/src/cmdline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,11 @@ void FarAbout(PluginManager &Plugins)
ListAbout.AddItem(fs);
fs = L" User: " + (apiGetEnvironmentVariable("USER", fs2) ? fs2 : L"???");
ListAbout.AddItem(fs);
fs = L" XDG_SESSION_TYPE: " + (apiGetEnvironmentVariable("XDG_SESSION_TYPE", fs2) ? fs2 : L"???");
fs = L" XDG_SESSION_TYPE: " + (apiGetEnvironmentVariable("XDG_SESSION_TYPE", fs2) ? fs2 : L"");
ListAbout.AddItem(fs);
fs = L" GDK_BACKEND: " + (apiGetEnvironmentVariable("GDK_BACKEND", fs2) ? fs2 : L"");
ListAbout.AddItem(fs);
fs = L" DESKTOP_SESSION: " + (apiGetEnvironmentVariable("DESKTOP_SESSION", fs2) ? fs2 : L"");
ListAbout.AddItem(fs);

ListAbout.AddItem(L"");
Expand Down

0 comments on commit 52fcd38

Please sign in to comment.