Opening applications with random theme
I'm using Canvas GTK theme and have all colors of that theme on my system.
I want to use one of those Canvas themes randomly each time I open an application.
I know I can use env GTK_THEME to open an application with different theme but the problem with that is the title bar is still the main theme on some applications like libre office, not the theme that I specified in env GTK_THEME.
Beside this problem, I don't know how to do this when every new application launch, so I wrote this script:
#!/bin/bash
theme_names=("Canvas" "Canvas-red" "Canvas-pink" "Canvas-indigo" "Canvas-blue" "Canvas-indigo" "Canvas-yellow")
theme_length=${#theme_names[@]}
rand_value=$(( $RANDOM % theme_length ))
theme_name=${theme_names[$rand_value]}
echo "$1 is opening with $theme_name themen"
echo "script is running: env GTK_THEME=$theme_name $1"
env GTK_THEME=$theme_name $1
and then I can run it with ./myscript.sh gedit and the application can have random theme each time I run the script.
How can I apply this script globally? and is there anyway to solve title bar issue?
bash themes gtk3
add a comment |
I'm using Canvas GTK theme and have all colors of that theme on my system.
I want to use one of those Canvas themes randomly each time I open an application.
I know I can use env GTK_THEME to open an application with different theme but the problem with that is the title bar is still the main theme on some applications like libre office, not the theme that I specified in env GTK_THEME.
Beside this problem, I don't know how to do this when every new application launch, so I wrote this script:
#!/bin/bash
theme_names=("Canvas" "Canvas-red" "Canvas-pink" "Canvas-indigo" "Canvas-blue" "Canvas-indigo" "Canvas-yellow")
theme_length=${#theme_names[@]}
rand_value=$(( $RANDOM % theme_length ))
theme_name=${theme_names[$rand_value]}
echo "$1 is opening with $theme_name themen"
echo "script is running: env GTK_THEME=$theme_name $1"
env GTK_THEME=$theme_name $1
and then I can run it with ./myscript.sh gedit and the application can have random theme each time I run the script.
How can I apply this script globally? and is there anyway to solve title bar issue?
bash themes gtk3
1
Well, you'd have to watch for new windows appearing, but thenGTK_THEMEhas to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.
– Sergiy Kolodyazhnyy
Jan 7 at 8:20
1
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21
add a comment |
I'm using Canvas GTK theme and have all colors of that theme on my system.
I want to use one of those Canvas themes randomly each time I open an application.
I know I can use env GTK_THEME to open an application with different theme but the problem with that is the title bar is still the main theme on some applications like libre office, not the theme that I specified in env GTK_THEME.
Beside this problem, I don't know how to do this when every new application launch, so I wrote this script:
#!/bin/bash
theme_names=("Canvas" "Canvas-red" "Canvas-pink" "Canvas-indigo" "Canvas-blue" "Canvas-indigo" "Canvas-yellow")
theme_length=${#theme_names[@]}
rand_value=$(( $RANDOM % theme_length ))
theme_name=${theme_names[$rand_value]}
echo "$1 is opening with $theme_name themen"
echo "script is running: env GTK_THEME=$theme_name $1"
env GTK_THEME=$theme_name $1
and then I can run it with ./myscript.sh gedit and the application can have random theme each time I run the script.
How can I apply this script globally? and is there anyway to solve title bar issue?
bash themes gtk3
I'm using Canvas GTK theme and have all colors of that theme on my system.
I want to use one of those Canvas themes randomly each time I open an application.
I know I can use env GTK_THEME to open an application with different theme but the problem with that is the title bar is still the main theme on some applications like libre office, not the theme that I specified in env GTK_THEME.
Beside this problem, I don't know how to do this when every new application launch, so I wrote this script:
#!/bin/bash
theme_names=("Canvas" "Canvas-red" "Canvas-pink" "Canvas-indigo" "Canvas-blue" "Canvas-indigo" "Canvas-yellow")
theme_length=${#theme_names[@]}
rand_value=$(( $RANDOM % theme_length ))
theme_name=${theme_names[$rand_value]}
echo "$1 is opening with $theme_name themen"
echo "script is running: env GTK_THEME=$theme_name $1"
env GTK_THEME=$theme_name $1
and then I can run it with ./myscript.sh gedit and the application can have random theme each time I run the script.
How can I apply this script globally? and is there anyway to solve title bar issue?
bash themes gtk3
bash themes gtk3
asked Jan 7 at 8:06
ICEICE
7753724
7753724
1
Well, you'd have to watch for new windows appearing, but thenGTK_THEMEhas to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.
– Sergiy Kolodyazhnyy
Jan 7 at 8:20
1
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21
add a comment |
1
Well, you'd have to watch for new windows appearing, but thenGTK_THEMEhas to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.
– Sergiy Kolodyazhnyy
Jan 7 at 8:20
1
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21
1
1
Well, you'd have to watch for new windows appearing, but then
GTK_THEME has to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.– Sergiy Kolodyazhnyy
Jan 7 at 8:20
Well, you'd have to watch for new windows appearing, but then
GTK_THEME has to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.– Sergiy Kolodyazhnyy
Jan 7 at 8:20
1
1
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21
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%2f1107639%2fopening-applications-with-random-theme%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%2f1107639%2fopening-applications-with-random-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
Well, you'd have to watch for new windows appearing, but then
GTK_THEMEhas to be applied to each and every window individually which is not something you can do, and you can't account for every possible launcher that opens an application.– Sergiy Kolodyazhnyy
Jan 7 at 8:20
1
So short answer, I don't think it's possible to apply random theme to each window. Though if someone can make it work, I'd be pleasantly surprised
– Sergiy Kolodyazhnyy
Jan 7 at 8:21