Where to find 'index.theme' specification for GTK+ theme
I am trying to create one theme for GTK+ and while doing so, I found index.theme
. Now, where do I find specification for this file similar to Icon Theme and Desktop entry?
themes gtk documentation
add a comment |
I am trying to create one theme for GTK+ and while doing so, I found index.theme
. Now, where do I find specification for this file similar to Icon Theme and Desktop entry?
themes gtk documentation
1
I am not sure, if you read question or not, I have mention wordtheme
and the link is for icon. If you read in first link you find that icon'sindex.theme
must start with[Icon Theme]
. I have not seen yet any theme'sindex.theme
file which has this definition.
– Kiran
Jan 5 '17 at 6:48
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53
add a comment |
I am trying to create one theme for GTK+ and while doing so, I found index.theme
. Now, where do I find specification for this file similar to Icon Theme and Desktop entry?
themes gtk documentation
I am trying to create one theme for GTK+ and while doing so, I found index.theme
. Now, where do I find specification for this file similar to Icon Theme and Desktop entry?
themes gtk documentation
themes gtk documentation
edited Jan 5 '17 at 11:45
clearkimura
3,88011954
3,88011954
asked Jan 2 '17 at 11:08
KiranKiran
937
937
1
I am not sure, if you read question or not, I have mention wordtheme
and the link is for icon. If you read in first link you find that icon'sindex.theme
must start with[Icon Theme]
. I have not seen yet any theme'sindex.theme
file which has this definition.
– Kiran
Jan 5 '17 at 6:48
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53
add a comment |
1
I am not sure, if you read question or not, I have mention wordtheme
and the link is for icon. If you read in first link you find that icon'sindex.theme
must start with[Icon Theme]
. I have not seen yet any theme'sindex.theme
file which has this definition.
– Kiran
Jan 5 '17 at 6:48
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53
1
1
I am not sure, if you read question or not, I have mention word
theme
and the link is for icon. If you read in first link you find that icon's index.theme
must start with [Icon Theme]
. I have not seen yet any theme's index.theme
file which has this definition.– Kiran
Jan 5 '17 at 6:48
I am not sure, if you read question or not, I have mention word
theme
and the link is for icon. If you read in first link you find that icon's index.theme
must start with [Icon Theme]
. I have not seen yet any theme's index.theme
file which has this definition.– Kiran
Jan 5 '17 at 6:48
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53
add a comment |
2 Answers
2
active
oldest
votes
There is nowhere to be found.
The 'index.theme' specification for GTK+ theme doesn't seem to be documented anymore since GNOME 2 had deprecated. Both GTK+ and GNOME Developer websites are essentially having zero documentation about 'index.theme' for GTK+ theme.
Known documentation
The earliest known documentation, GNOME 2.4 Desktop System Administration Guide, was last updated in 2003. That is possibly the original 'index.theme' specification for GTK+ theme.
[Desktop Entry]
Type=X-GNOME-Metatheme
Name=High Contrast Large
Name[es]=Alto contraste grande
Comment=Large black-on-white text and icons
Comment[es]=Textos e iconos grandes en negro sobre blanco
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=HighContrastLargePrint
IconTheme=HighContrast
MetacityTheme=Atlanta
ApplicationFont=sans 18
Following that, some changes have been introduced in GNOME mailing list dated July 2004 and October 2004 (only latter is quoted below). Unfortunately, there is no updated documentation by GTK+ or GNOME developers to illustrate those changes.
gnome-theme-manager currently handles GTK, Metacity and Icon themes,
but could be extended to handle splash screens and backgrounds
(possible integration with current background chooser?).
A relatively new documentation, Gnome Theme Package format by Xfce, was last updated in 2010. This included more variables in the index.theme
file that are not found in the original specification and reflects some of the changes mentioned in GNOME mailing list.
[Desktop Entry]
Name=example theme
Type=X-GNOME-Metatheme
Comment=
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=Gilouche
MetacityTheme=Gilouche
IconTheme=gnome
BackgroundImage=.local/share/wallpapers/Naptime.jpg
MonospaceFont=
ApplicationFont=
DesktopFont=
SoundTheme=
GtkColorScheme=
Supporting fact has been found in Artwork/Documentation/GTK-Themes on Ubuntu Wiki, which mentioned one of the additional variables. This material however, was last updated in 2009.
In your index.theme file put a line like "
BackgroundImage=/absolute/path/to/image.png
" under the X-GNOME-Metatheme header. For packaged themes wallpapers should be assumed to be placed in/usr/share/wallpapers
.
To use or not
If you are less confident to use the provided example in outdated documentation, I'd suggest to copy index.theme
file from existing THEME and modify accordingly. GTK+ themes will include the file at /usr/share/themes/THEME/index.theme
in some Ubuntu and official flavours.
Another way to use index.theme
file is, by not having to write one.
There is at least one example that demonstrates custom GTK+ theme could just reference to existing file by using symbolic link. This way, it is possible to create slightly modified version of existing theme in less time and without having to worry about the specification of index.theme
file.
TL;DR The most recent documentation that you can find today, albeit without explanation, is Gnome Theme Package format by Xfce. Or just forget that and follow what other themes do.
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
add a comment |
You can find a document here. I don't know how up to date it is though. It discusses the structure of the file, the possible keys that are allowed and their descriptions.
If you do have the time try joining #gtk+ and #gnome-design on IRC. They may be able to answer your queries better. See here for learning how.
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
add a comment |
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%2f867050%2fwhere-to-find-index-theme-specification-for-gtk-theme%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There is nowhere to be found.
The 'index.theme' specification for GTK+ theme doesn't seem to be documented anymore since GNOME 2 had deprecated. Both GTK+ and GNOME Developer websites are essentially having zero documentation about 'index.theme' for GTK+ theme.
Known documentation
The earliest known documentation, GNOME 2.4 Desktop System Administration Guide, was last updated in 2003. That is possibly the original 'index.theme' specification for GTK+ theme.
[Desktop Entry]
Type=X-GNOME-Metatheme
Name=High Contrast Large
Name[es]=Alto contraste grande
Comment=Large black-on-white text and icons
Comment[es]=Textos e iconos grandes en negro sobre blanco
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=HighContrastLargePrint
IconTheme=HighContrast
MetacityTheme=Atlanta
ApplicationFont=sans 18
Following that, some changes have been introduced in GNOME mailing list dated July 2004 and October 2004 (only latter is quoted below). Unfortunately, there is no updated documentation by GTK+ or GNOME developers to illustrate those changes.
gnome-theme-manager currently handles GTK, Metacity and Icon themes,
but could be extended to handle splash screens and backgrounds
(possible integration with current background chooser?).
A relatively new documentation, Gnome Theme Package format by Xfce, was last updated in 2010. This included more variables in the index.theme
file that are not found in the original specification and reflects some of the changes mentioned in GNOME mailing list.
[Desktop Entry]
Name=example theme
Type=X-GNOME-Metatheme
Comment=
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=Gilouche
MetacityTheme=Gilouche
IconTheme=gnome
BackgroundImage=.local/share/wallpapers/Naptime.jpg
MonospaceFont=
ApplicationFont=
DesktopFont=
SoundTheme=
GtkColorScheme=
Supporting fact has been found in Artwork/Documentation/GTK-Themes on Ubuntu Wiki, which mentioned one of the additional variables. This material however, was last updated in 2009.
In your index.theme file put a line like "
BackgroundImage=/absolute/path/to/image.png
" under the X-GNOME-Metatheme header. For packaged themes wallpapers should be assumed to be placed in/usr/share/wallpapers
.
To use or not
If you are less confident to use the provided example in outdated documentation, I'd suggest to copy index.theme
file from existing THEME and modify accordingly. GTK+ themes will include the file at /usr/share/themes/THEME/index.theme
in some Ubuntu and official flavours.
Another way to use index.theme
file is, by not having to write one.
There is at least one example that demonstrates custom GTK+ theme could just reference to existing file by using symbolic link. This way, it is possible to create slightly modified version of existing theme in less time and without having to worry about the specification of index.theme
file.
TL;DR The most recent documentation that you can find today, albeit without explanation, is Gnome Theme Package format by Xfce. Or just forget that and follow what other themes do.
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
add a comment |
There is nowhere to be found.
The 'index.theme' specification for GTK+ theme doesn't seem to be documented anymore since GNOME 2 had deprecated. Both GTK+ and GNOME Developer websites are essentially having zero documentation about 'index.theme' for GTK+ theme.
Known documentation
The earliest known documentation, GNOME 2.4 Desktop System Administration Guide, was last updated in 2003. That is possibly the original 'index.theme' specification for GTK+ theme.
[Desktop Entry]
Type=X-GNOME-Metatheme
Name=High Contrast Large
Name[es]=Alto contraste grande
Comment=Large black-on-white text and icons
Comment[es]=Textos e iconos grandes en negro sobre blanco
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=HighContrastLargePrint
IconTheme=HighContrast
MetacityTheme=Atlanta
ApplicationFont=sans 18
Following that, some changes have been introduced in GNOME mailing list dated July 2004 and October 2004 (only latter is quoted below). Unfortunately, there is no updated documentation by GTK+ or GNOME developers to illustrate those changes.
gnome-theme-manager currently handles GTK, Metacity and Icon themes,
but could be extended to handle splash screens and backgrounds
(possible integration with current background chooser?).
A relatively new documentation, Gnome Theme Package format by Xfce, was last updated in 2010. This included more variables in the index.theme
file that are not found in the original specification and reflects some of the changes mentioned in GNOME mailing list.
[Desktop Entry]
Name=example theme
Type=X-GNOME-Metatheme
Comment=
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=Gilouche
MetacityTheme=Gilouche
IconTheme=gnome
BackgroundImage=.local/share/wallpapers/Naptime.jpg
MonospaceFont=
ApplicationFont=
DesktopFont=
SoundTheme=
GtkColorScheme=
Supporting fact has been found in Artwork/Documentation/GTK-Themes on Ubuntu Wiki, which mentioned one of the additional variables. This material however, was last updated in 2009.
In your index.theme file put a line like "
BackgroundImage=/absolute/path/to/image.png
" under the X-GNOME-Metatheme header. For packaged themes wallpapers should be assumed to be placed in/usr/share/wallpapers
.
To use or not
If you are less confident to use the provided example in outdated documentation, I'd suggest to copy index.theme
file from existing THEME and modify accordingly. GTK+ themes will include the file at /usr/share/themes/THEME/index.theme
in some Ubuntu and official flavours.
Another way to use index.theme
file is, by not having to write one.
There is at least one example that demonstrates custom GTK+ theme could just reference to existing file by using symbolic link. This way, it is possible to create slightly modified version of existing theme in less time and without having to worry about the specification of index.theme
file.
TL;DR The most recent documentation that you can find today, albeit without explanation, is Gnome Theme Package format by Xfce. Or just forget that and follow what other themes do.
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
add a comment |
There is nowhere to be found.
The 'index.theme' specification for GTK+ theme doesn't seem to be documented anymore since GNOME 2 had deprecated. Both GTK+ and GNOME Developer websites are essentially having zero documentation about 'index.theme' for GTK+ theme.
Known documentation
The earliest known documentation, GNOME 2.4 Desktop System Administration Guide, was last updated in 2003. That is possibly the original 'index.theme' specification for GTK+ theme.
[Desktop Entry]
Type=X-GNOME-Metatheme
Name=High Contrast Large
Name[es]=Alto contraste grande
Comment=Large black-on-white text and icons
Comment[es]=Textos e iconos grandes en negro sobre blanco
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=HighContrastLargePrint
IconTheme=HighContrast
MetacityTheme=Atlanta
ApplicationFont=sans 18
Following that, some changes have been introduced in GNOME mailing list dated July 2004 and October 2004 (only latter is quoted below). Unfortunately, there is no updated documentation by GTK+ or GNOME developers to illustrate those changes.
gnome-theme-manager currently handles GTK, Metacity and Icon themes,
but could be extended to handle splash screens and backgrounds
(possible integration with current background chooser?).
A relatively new documentation, Gnome Theme Package format by Xfce, was last updated in 2010. This included more variables in the index.theme
file that are not found in the original specification and reflects some of the changes mentioned in GNOME mailing list.
[Desktop Entry]
Name=example theme
Type=X-GNOME-Metatheme
Comment=
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=Gilouche
MetacityTheme=Gilouche
IconTheme=gnome
BackgroundImage=.local/share/wallpapers/Naptime.jpg
MonospaceFont=
ApplicationFont=
DesktopFont=
SoundTheme=
GtkColorScheme=
Supporting fact has been found in Artwork/Documentation/GTK-Themes on Ubuntu Wiki, which mentioned one of the additional variables. This material however, was last updated in 2009.
In your index.theme file put a line like "
BackgroundImage=/absolute/path/to/image.png
" under the X-GNOME-Metatheme header. For packaged themes wallpapers should be assumed to be placed in/usr/share/wallpapers
.
To use or not
If you are less confident to use the provided example in outdated documentation, I'd suggest to copy index.theme
file from existing THEME and modify accordingly. GTK+ themes will include the file at /usr/share/themes/THEME/index.theme
in some Ubuntu and official flavours.
Another way to use index.theme
file is, by not having to write one.
There is at least one example that demonstrates custom GTK+ theme could just reference to existing file by using symbolic link. This way, it is possible to create slightly modified version of existing theme in less time and without having to worry about the specification of index.theme
file.
TL;DR The most recent documentation that you can find today, albeit without explanation, is Gnome Theme Package format by Xfce. Or just forget that and follow what other themes do.
There is nowhere to be found.
The 'index.theme' specification for GTK+ theme doesn't seem to be documented anymore since GNOME 2 had deprecated. Both GTK+ and GNOME Developer websites are essentially having zero documentation about 'index.theme' for GTK+ theme.
Known documentation
The earliest known documentation, GNOME 2.4 Desktop System Administration Guide, was last updated in 2003. That is possibly the original 'index.theme' specification for GTK+ theme.
[Desktop Entry]
Type=X-GNOME-Metatheme
Name=High Contrast Large
Name[es]=Alto contraste grande
Comment=Large black-on-white text and icons
Comment[es]=Textos e iconos grandes en negro sobre blanco
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=HighContrastLargePrint
IconTheme=HighContrast
MetacityTheme=Atlanta
ApplicationFont=sans 18
Following that, some changes have been introduced in GNOME mailing list dated July 2004 and October 2004 (only latter is quoted below). Unfortunately, there is no updated documentation by GTK+ or GNOME developers to illustrate those changes.
gnome-theme-manager currently handles GTK, Metacity and Icon themes,
but could be extended to handle splash screens and backgrounds
(possible integration with current background chooser?).
A relatively new documentation, Gnome Theme Package format by Xfce, was last updated in 2010. This included more variables in the index.theme
file that are not found in the original specification and reflects some of the changes mentioned in GNOME mailing list.
[Desktop Entry]
Name=example theme
Type=X-GNOME-Metatheme
Comment=
Encoding=UTF-8
[X-GNOME-Metatheme]
GtkTheme=Gilouche
MetacityTheme=Gilouche
IconTheme=gnome
BackgroundImage=.local/share/wallpapers/Naptime.jpg
MonospaceFont=
ApplicationFont=
DesktopFont=
SoundTheme=
GtkColorScheme=
Supporting fact has been found in Artwork/Documentation/GTK-Themes on Ubuntu Wiki, which mentioned one of the additional variables. This material however, was last updated in 2009.
In your index.theme file put a line like "
BackgroundImage=/absolute/path/to/image.png
" under the X-GNOME-Metatheme header. For packaged themes wallpapers should be assumed to be placed in/usr/share/wallpapers
.
To use or not
If you are less confident to use the provided example in outdated documentation, I'd suggest to copy index.theme
file from existing THEME and modify accordingly. GTK+ themes will include the file at /usr/share/themes/THEME/index.theme
in some Ubuntu and official flavours.
Another way to use index.theme
file is, by not having to write one.
There is at least one example that demonstrates custom GTK+ theme could just reference to existing file by using symbolic link. This way, it is possible to create slightly modified version of existing theme in less time and without having to worry about the specification of index.theme
file.
TL;DR The most recent documentation that you can find today, albeit without explanation, is Gnome Theme Package format by Xfce. Or just forget that and follow what other themes do.
edited Jan 8 at 7:08
answered Jan 10 '17 at 17:42
clearkimuraclearkimura
3,88011954
3,88011954
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
add a comment |
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
1
1
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
Personally, I like the idea of hacking an existing example. ;-)
– Elder Geek
Jan 10 '17 at 21:34
add a comment |
You can find a document here. I don't know how up to date it is though. It discusses the structure of the file, the possible keys that are allowed and their descriptions.
If you do have the time try joining #gtk+ and #gnome-design on IRC. They may be able to answer your queries better. See here for learning how.
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
add a comment |
You can find a document here. I don't know how up to date it is though. It discusses the structure of the file, the possible keys that are allowed and their descriptions.
If you do have the time try joining #gtk+ and #gnome-design on IRC. They may be able to answer your queries better. See here for learning how.
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
add a comment |
You can find a document here. I don't know how up to date it is though. It discusses the structure of the file, the possible keys that are allowed and their descriptions.
If you do have the time try joining #gtk+ and #gnome-design on IRC. They may be able to answer your queries better. See here for learning how.
You can find a document here. I don't know how up to date it is though. It discusses the structure of the file, the possible keys that are allowed and their descriptions.
If you do have the time try joining #gtk+ and #gnome-design on IRC. They may be able to answer your queries better. See here for learning how.
answered Jan 6 '17 at 11:11
Ashhar HasanAshhar Hasan
494725
494725
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
add a comment |
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
I have already checked the link that you mentioned. But, the link not specified what should be there must and what should not, what stands for possible definition, etc.
– Kiran
Jan 6 '17 at 15:42
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
Then I think you'll have to contact someone who writes themes. You can find the authors of a lot of themes on Reddit's /r/unixporn community.
– Ashhar Hasan
Jan 7 '17 at 5:15
add a comment |
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%2f867050%2fwhere-to-find-index-theme-specification-for-gtk-theme%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
I am not sure, if you read question or not, I have mention word
theme
and the link is for icon. If you read in first link you find that icon'sindex.theme
must start with[Icon Theme]
. I have not seen yet any theme'sindex.theme
file which has this definition.– Kiran
Jan 5 '17 at 6:48
Perhaps 'index.theme' is being used for backward compatibility, since it was last mentioned by GNOME 2 documentation and not much else based on my findings. More details in my delayed answer below.
– clearkimura
Jan 10 '17 at 17:53