Where does X11 Configuration File Locate?
I read a book which instruct to X Configuration
The Module section controls the loading of X server modules—drivers for specific features or hardware. A typical example looks like this:
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Upon exhaustively search through the /etc/X11
08:12AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH "Section "Module"" "$line"; done
08:13AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH 'module' "$line"; done
/etc/X11/xinit/xinput.d/fcitx:GTK_IM_MODULE=fcitx
/etc/X11/xinit/xinput.d/fcitx:QT_IM_MODULE=fcitx
/etc/X11/Xsession.d/90atk-adaptor:# Xsession.d script to set the GTK_MODULES env variable to load atk
/etc/X11/Xsession.d/90atk-adaptor:add_module()
/etc/X11/Xsession.d/90atk-adaptor: case :$GTK_MODULES: in
/etc/X11/Xsession.d/90atk-adaptor: if [ -z "$GTK_MODULES" ]
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$1
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$GTK_MODULES:$1
/etc/X11/Xsession.d/90atk-adaptor:add_module gail
/etc/X11/Xsession.d/90atk-adaptor:add_module atk-bridge
/etc/X11/Xsession.d/90atk-adaptor:export GTK_MODULES
/etc/X11/Xsession.d/90atk-adaptor: dbus-update-activation-environment --verbose --systemd GTK_MODULES
/etc/X11/Xsession.d/70im-config_launch: [ -z "$GTK_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT4_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$CLUTTER_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: export GTK_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT4_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export CLUTTER_IM_MODULE
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-2.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-2.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-3.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-3.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: export GTK_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT4_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT_IM_MODULE=fcitx
Where could I find the X11 configuration file?
08:15AM 19/03 Tuesday:host@me:/etc/X11:
$ ls -1
app-defaults
cursors
default-display-manager
fonts
rgb.txt
xinit
xkb
Xreset
Xreset.d
Xresources
Xsession
Xsession.d
Xsession.options
xsm
XvMCConfig
Xwrapper.config
drivers xorg
add a comment |
I read a book which instruct to X Configuration
The Module section controls the loading of X server modules—drivers for specific features or hardware. A typical example looks like this:
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Upon exhaustively search through the /etc/X11
08:12AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH "Section "Module"" "$line"; done
08:13AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH 'module' "$line"; done
/etc/X11/xinit/xinput.d/fcitx:GTK_IM_MODULE=fcitx
/etc/X11/xinit/xinput.d/fcitx:QT_IM_MODULE=fcitx
/etc/X11/Xsession.d/90atk-adaptor:# Xsession.d script to set the GTK_MODULES env variable to load atk
/etc/X11/Xsession.d/90atk-adaptor:add_module()
/etc/X11/Xsession.d/90atk-adaptor: case :$GTK_MODULES: in
/etc/X11/Xsession.d/90atk-adaptor: if [ -z "$GTK_MODULES" ]
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$1
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$GTK_MODULES:$1
/etc/X11/Xsession.d/90atk-adaptor:add_module gail
/etc/X11/Xsession.d/90atk-adaptor:add_module atk-bridge
/etc/X11/Xsession.d/90atk-adaptor:export GTK_MODULES
/etc/X11/Xsession.d/90atk-adaptor: dbus-update-activation-environment --verbose --systemd GTK_MODULES
/etc/X11/Xsession.d/70im-config_launch: [ -z "$GTK_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT4_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$CLUTTER_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: export GTK_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT4_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export CLUTTER_IM_MODULE
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-2.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-2.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-3.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-3.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: export GTK_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT4_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT_IM_MODULE=fcitx
Where could I find the X11 configuration file?
08:15AM 19/03 Tuesday:host@me:/etc/X11:
$ ls -1
app-defaults
cursors
default-display-manager
fonts
rgb.txt
xinit
xkb
Xreset
Xreset.d
Xresources
Xsession
Xsession.d
Xsession.options
xsm
XvMCConfig
Xwrapper.config
drivers xorg
1
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago
add a comment |
I read a book which instruct to X Configuration
The Module section controls the loading of X server modules—drivers for specific features or hardware. A typical example looks like this:
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Upon exhaustively search through the /etc/X11
08:12AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH "Section "Module"" "$line"; done
08:13AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH 'module' "$line"; done
/etc/X11/xinit/xinput.d/fcitx:GTK_IM_MODULE=fcitx
/etc/X11/xinit/xinput.d/fcitx:QT_IM_MODULE=fcitx
/etc/X11/Xsession.d/90atk-adaptor:# Xsession.d script to set the GTK_MODULES env variable to load atk
/etc/X11/Xsession.d/90atk-adaptor:add_module()
/etc/X11/Xsession.d/90atk-adaptor: case :$GTK_MODULES: in
/etc/X11/Xsession.d/90atk-adaptor: if [ -z "$GTK_MODULES" ]
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$1
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$GTK_MODULES:$1
/etc/X11/Xsession.d/90atk-adaptor:add_module gail
/etc/X11/Xsession.d/90atk-adaptor:add_module atk-bridge
/etc/X11/Xsession.d/90atk-adaptor:export GTK_MODULES
/etc/X11/Xsession.d/90atk-adaptor: dbus-update-activation-environment --verbose --systemd GTK_MODULES
/etc/X11/Xsession.d/70im-config_launch: [ -z "$GTK_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT4_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$CLUTTER_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: export GTK_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT4_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export CLUTTER_IM_MODULE
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-2.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-2.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-3.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-3.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: export GTK_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT4_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT_IM_MODULE=fcitx
Where could I find the X11 configuration file?
08:15AM 19/03 Tuesday:host@me:/etc/X11:
$ ls -1
app-defaults
cursors
default-display-manager
fonts
rgb.txt
xinit
xkb
Xreset
Xreset.d
Xresources
Xsession
Xsession.d
Xsession.options
xsm
XvMCConfig
Xwrapper.config
drivers xorg
I read a book which instruct to X Configuration
The Module section controls the loading of X server modules—drivers for specific features or hardware. A typical example looks like this:
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Upon exhaustively search through the /etc/X11
08:12AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH "Section "Module"" "$line"; done
08:13AM 19/03 Tuesday:me@host:/etc/X11:
$ find /etc/X11 -type f | while read line; do grep -iH 'module' "$line"; done
/etc/X11/xinit/xinput.d/fcitx:GTK_IM_MODULE=fcitx
/etc/X11/xinit/xinput.d/fcitx:QT_IM_MODULE=fcitx
/etc/X11/Xsession.d/90atk-adaptor:# Xsession.d script to set the GTK_MODULES env variable to load atk
/etc/X11/Xsession.d/90atk-adaptor:add_module()
/etc/X11/Xsession.d/90atk-adaptor: case :$GTK_MODULES: in
/etc/X11/Xsession.d/90atk-adaptor: if [ -z "$GTK_MODULES" ]
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$1
/etc/X11/Xsession.d/90atk-adaptor: GTK_MODULES=$GTK_MODULES:$1
/etc/X11/Xsession.d/90atk-adaptor:add_module gail
/etc/X11/Xsession.d/90atk-adaptor:add_module atk-bridge
/etc/X11/Xsession.d/90atk-adaptor:export GTK_MODULES
/etc/X11/Xsession.d/90atk-adaptor: dbus-update-activation-environment --verbose --systemd GTK_MODULES
/etc/X11/Xsession.d/70im-config_launch: [ -z "$GTK_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$QT4_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: [ -z "$CLUTTER_IM_MODULE" ] &&
/etc/X11/Xsession.d/70im-config_launch: export GTK_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export QT4_IM_MODULE
/etc/X11/Xsession.d/70im-config_launch: export CLUTTER_IM_MODULE
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-2.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-2.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: if [ -f /usr/lib/*/gtk-3.0/*/immodules/im-fcitx.so ] ||
/etc/X11/Xsession.d/72sogoupinyin: [ -f /usr/lib*/gtk-3.0/*/immodules/im-fcitx.so ]; then
/etc/X11/Xsession.d/72sogoupinyin: export GTK_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT4_IM_MODULE=fcitx
/etc/X11/Xsession.d/72sogoupinyin: export QT_IM_MODULE=fcitx
Where could I find the X11 configuration file?
08:15AM 19/03 Tuesday:host@me:/etc/X11:
$ ls -1
app-defaults
cursors
default-display-manager
fonts
rgb.txt
xinit
xkb
Xreset
Xreset.d
Xresources
Xsession
Xsession.d
Xsession.options
xsm
XvMCConfig
Xwrapper.config
drivers xorg
drivers xorg
asked 1 hour ago
AliceAlice
555111
555111
1
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago
add a comment |
1
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago
1
1
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f1126777%2fwhere-does-x11-configuration-file-locate%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1126777%2fwhere-does-x11-configuration-file-locate%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
1
Related: Where is the X.org config file? How do I configure X there?
– steeldriver
1 hour ago
Possible duplicate of Where is the X.org config file? How do I configure X there?
– ubfan1
13 mins ago