How to programmatically change settings of xfce4-terminal?Change key mappings for xfce4-terminalCopy-Paste in...
Why isn't a binary file shown as 0s and 1s?
Real orthogonal and sign
BritRail England Passes compared to return ticket for travel in England
What is actually sent/loaded to a microcontroller / stm32
How to prove that the covariant derivative obeys the product rule
Did Hitler say this quote about homeschooling?
Don't individual signal sources affect each other when using a summing amplifier?
Why does a tetrahedral molecule like methane have a dipole moment of zero?
What could make large expeditions ineffective for exploring territory full of dangers and valuable resources?
Wildcards not interpreted by shell script when used with output redirection
Will the internet speed decrease on second router if there are multiple devices connected to primary router?
Is it legal for a supermarket to refuse to sell an adult beer if an adult with them doesn’t have their ID?
Manager asking me to eat breakfast from now on
How to tell if JDK is available from within running JVM?
Why teach C using scanf without talking about command line arguments?
Can I prevent my opponent from looking at cards with Vizier of the Menagerie while I'm Mindslaving them?
How did J. J. Thomson establish the particle nature of the electron?
How many opportunity attacks can you make per turn before becoming exhausted?
"This used to be my phone number"
Does unblocking power bar outlets through short extension cords increase fire risk?
What's a German word for »Sandbagger«?
/bin/sh: 0: Can't open sh
Do pedestrians imitate auto traffic?
Why is the Intel 8086 CPU called a 16-bit CPU?
How to programmatically change settings of xfce4-terminal?
Change key mappings for xfce4-terminalCopy-Paste in xfce4-terminal adds 0~ and 1~Initial tab title and automatic update of it in xfce4-terminalHow do font-settings in gnome, kde and xfce work?Temporarily change the xfce4-terminal title from within the terminalHow to force Xfce4-Terminal to xtermStart xfce4-terminal with cron at bootxfce4-terminal geometry is scaled extremely smallXFCE4 terminal to never show tabsXfce4 terminal input buffer issues
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
With terminal emulators like gnome-terminal, it is possible to change settings programmatically, from the command line using dconf
and gconf
.
But I have trouble finding a similar mechanism for xfce4-terminal.
Specifically, how to select colors or a theme (or preset as it is called in the preferences menu).
I tried finding a corresponding option using xfconf-query
but there doesn't seem to be one.
command-line settings dconf xfce4-terminal
add a comment |
With terminal emulators like gnome-terminal, it is possible to change settings programmatically, from the command line using dconf
and gconf
.
But I have trouble finding a similar mechanism for xfce4-terminal.
Specifically, how to select colors or a theme (or preset as it is called in the preferences menu).
I tried finding a corresponding option using xfconf-query
but there doesn't seem to be one.
command-line settings dconf xfce4-terminal
add a comment |
With terminal emulators like gnome-terminal, it is possible to change settings programmatically, from the command line using dconf
and gconf
.
But I have trouble finding a similar mechanism for xfce4-terminal.
Specifically, how to select colors or a theme (or preset as it is called in the preferences menu).
I tried finding a corresponding option using xfconf-query
but there doesn't seem to be one.
command-line settings dconf xfce4-terminal
With terminal emulators like gnome-terminal, it is possible to change settings programmatically, from the command line using dconf
and gconf
.
But I have trouble finding a similar mechanism for xfce4-terminal.
Specifically, how to select colors or a theme (or preset as it is called in the preferences menu).
I tried finding a corresponding option using xfconf-query
but there doesn't seem to be one.
command-line settings dconf xfce4-terminal
command-line settings dconf xfce4-terminal
asked Mar 15 at 1:59
polemonpolemon
5,9806 gold badges44 silver badges83 bronze badges
5,9806 gold badges44 silver badges83 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
According to the xfce docs, xfce4-terminal stores its configuration file here:
${XDG_CONFIG_DIRS}/xfce4/terminal/terminalrc
Which commonly resolves to:
~/.config/xfce4/terminal/terminalrc
This is the location of the configuration file that includes the preferences which control the look and feel of Terminal
More information about the configuration options can be found at https://docs.xfce.org/apps/terminal/advanced.
Or by running man xfce4-terminal
on your system.
The file and its directory are created when you change some settings using the GUI interface, so you probably don't have them on your fresh installation. If none is there, Terminal uses the default settings.[2]
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506391%2fhow-to-programmatically-change-settings-of-xfce4-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to the xfce docs, xfce4-terminal stores its configuration file here:
${XDG_CONFIG_DIRS}/xfce4/terminal/terminalrc
Which commonly resolves to:
~/.config/xfce4/terminal/terminalrc
This is the location of the configuration file that includes the preferences which control the look and feel of Terminal
More information about the configuration options can be found at https://docs.xfce.org/apps/terminal/advanced.
Or by running man xfce4-terminal
on your system.
The file and its directory are created when you change some settings using the GUI interface, so you probably don't have them on your fresh installation. If none is there, Terminal uses the default settings.[2]
New contributor
add a comment |
According to the xfce docs, xfce4-terminal stores its configuration file here:
${XDG_CONFIG_DIRS}/xfce4/terminal/terminalrc
Which commonly resolves to:
~/.config/xfce4/terminal/terminalrc
This is the location of the configuration file that includes the preferences which control the look and feel of Terminal
More information about the configuration options can be found at https://docs.xfce.org/apps/terminal/advanced.
Or by running man xfce4-terminal
on your system.
The file and its directory are created when you change some settings using the GUI interface, so you probably don't have them on your fresh installation. If none is there, Terminal uses the default settings.[2]
New contributor
add a comment |
According to the xfce docs, xfce4-terminal stores its configuration file here:
${XDG_CONFIG_DIRS}/xfce4/terminal/terminalrc
Which commonly resolves to:
~/.config/xfce4/terminal/terminalrc
This is the location of the configuration file that includes the preferences which control the look and feel of Terminal
More information about the configuration options can be found at https://docs.xfce.org/apps/terminal/advanced.
Or by running man xfce4-terminal
on your system.
The file and its directory are created when you change some settings using the GUI interface, so you probably don't have them on your fresh installation. If none is there, Terminal uses the default settings.[2]
New contributor
According to the xfce docs, xfce4-terminal stores its configuration file here:
${XDG_CONFIG_DIRS}/xfce4/terminal/terminalrc
Which commonly resolves to:
~/.config/xfce4/terminal/terminalrc
This is the location of the configuration file that includes the preferences which control the look and feel of Terminal
More information about the configuration options can be found at https://docs.xfce.org/apps/terminal/advanced.
Or by running man xfce4-terminal
on your system.
The file and its directory are created when you change some settings using the GUI interface, so you probably don't have them on your fresh installation. If none is there, Terminal uses the default settings.[2]
New contributor
New contributor
answered 1 hour ago
RJ-AdamRJ-Adam
11 bronze badge
11 bronze badge
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506391%2fhow-to-programmatically-change-settings-of-xfce4-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown