with Kubuntu 22.04.3 LTS x86_64
the 179 character command below, did not work.
refer:
How to change gnome-terminal scrollback lines from command line
gsettings set org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:$(gsettings get org.gnome.Terminal.ProfilesList default | tr -d \')/ scrollback-lines 250000
2 outputs from above 179 character command:
No such schema “org.gnome.Terminal.ProfilesList”
and
No such schema “org.gnome.Terminal.Legacy.Profile”
Explain and
what is the correct command to
change scrollback from command line?
--
gnome
andgnome-terminal
but mention that you are using Kubuntu (which would be based on KDE and Konsole) - please clarify what Ubuntu flavor and terminal emulator you are actually asking about – steeldriver Nov 22 '23 at 22:13neofetch --stdout |grep 'OS:'
givesKubuntu 22.04.3 LTS x86_64
andneofetch --stdout |grep 'Kernel'
givesKernel: 6.2.0-37-generic
andecho $TERM
givesxterm-256color
andps -o 'cmd=' -p $(ps -o 'ppid=' -p $$)
gives/usr/bin/konsole
andpstree -sA $$
givessystemd---sddm---sddm-helper---startplasma-x11---plasma_session---kded5---konsole---bash---pstree
andps -p $PPID -o comm=
giveskonsole
– joseph22 Nov 22 '23 at 23:24gsettings ...
commands stated in the original questions are specific for the GNOME Desktop which Ubuntu is using, they will not work for Kubuntu and the KDE Desktop. – noisefloor Nov 23 '23 at 09:00