How To make LXTerminal of lubuntu 16.04 transparent?
up vote
5
down vote
favorite
I want to know How To make LXTerminal of lubuntu 16.04 transparent ?
lubuntu transparency lxterminal
add a comment |
up vote
5
down vote
favorite
I want to know How To make LXTerminal of lubuntu 16.04 transparent ?
lubuntu transparency lxterminal
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
I want to know How To make LXTerminal of lubuntu 16.04 transparent ?
lubuntu transparency lxterminal
I want to know How To make LXTerminal of lubuntu 16.04 transparent ?
lubuntu transparency lxterminal
lubuntu transparency lxterminal
asked Sep 22 '17 at 15:01
YaSh Chaudhary
1287
1287
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
3
down vote
First install "compton"
apt-get install compton
Then run the following command for testing:
compton --opacity-rule 45:'class_g *= "X-terminal-emulator"'
It's an opacity of 45%, change it to what you like.
Above I typed "X-terminal-emulator", but to get the string you have to type, do the following:
1.) type xprop
enter
2.) now there should be a crosshair -> klick on your terminal
3.) search for "WM_CLASS(STRING)"
4.) use this in 'class_g *= '...'
You can copy a basic configuration from /usr/share/doc/compton/compton.sample.conf
or here http://duncanlock.net/blog/2013/06/07/how-to-switch-to-compton-for-beautiful-tear-free-compositing-in-xfce/ into the file ~/.config/compton.conf
(you must create this if not present)
To make this permanent you can put this command into your profile settings.
add a comment |
up vote
2
down vote
After installing compton (see eli's answer)
Edit your ~/.config/compton.conf file to include the following line:
opacity-rule = ["90:class_g *= 'X-terminal-emulator'"]
This will make your terminal's opacity 90%.
Also add compton
to your autostart for lubuntu in ~/.config/lxsession/Lubuntu/autostart
add a comment |
up vote
1
down vote
Open the LXTerminal and select Edit from the top menu and then Profile Preferences->Colors. From that screen you can change your terminal to transparent, partially transparent, the colors, etc.
can you please post the screenshots because I dont have thisProfile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
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',
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%2f958402%2fhow-to-make-lxterminal-of-lubuntu-16-04-transparent%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
First install "compton"
apt-get install compton
Then run the following command for testing:
compton --opacity-rule 45:'class_g *= "X-terminal-emulator"'
It's an opacity of 45%, change it to what you like.
Above I typed "X-terminal-emulator", but to get the string you have to type, do the following:
1.) type xprop
enter
2.) now there should be a crosshair -> klick on your terminal
3.) search for "WM_CLASS(STRING)"
4.) use this in 'class_g *= '...'
You can copy a basic configuration from /usr/share/doc/compton/compton.sample.conf
or here http://duncanlock.net/blog/2013/06/07/how-to-switch-to-compton-for-beautiful-tear-free-compositing-in-xfce/ into the file ~/.config/compton.conf
(you must create this if not present)
To make this permanent you can put this command into your profile settings.
add a comment |
up vote
3
down vote
First install "compton"
apt-get install compton
Then run the following command for testing:
compton --opacity-rule 45:'class_g *= "X-terminal-emulator"'
It's an opacity of 45%, change it to what you like.
Above I typed "X-terminal-emulator", but to get the string you have to type, do the following:
1.) type xprop
enter
2.) now there should be a crosshair -> klick on your terminal
3.) search for "WM_CLASS(STRING)"
4.) use this in 'class_g *= '...'
You can copy a basic configuration from /usr/share/doc/compton/compton.sample.conf
or here http://duncanlock.net/blog/2013/06/07/how-to-switch-to-compton-for-beautiful-tear-free-compositing-in-xfce/ into the file ~/.config/compton.conf
(you must create this if not present)
To make this permanent you can put this command into your profile settings.
add a comment |
up vote
3
down vote
up vote
3
down vote
First install "compton"
apt-get install compton
Then run the following command for testing:
compton --opacity-rule 45:'class_g *= "X-terminal-emulator"'
It's an opacity of 45%, change it to what you like.
Above I typed "X-terminal-emulator", but to get the string you have to type, do the following:
1.) type xprop
enter
2.) now there should be a crosshair -> klick on your terminal
3.) search for "WM_CLASS(STRING)"
4.) use this in 'class_g *= '...'
You can copy a basic configuration from /usr/share/doc/compton/compton.sample.conf
or here http://duncanlock.net/blog/2013/06/07/how-to-switch-to-compton-for-beautiful-tear-free-compositing-in-xfce/ into the file ~/.config/compton.conf
(you must create this if not present)
To make this permanent you can put this command into your profile settings.
First install "compton"
apt-get install compton
Then run the following command for testing:
compton --opacity-rule 45:'class_g *= "X-terminal-emulator"'
It's an opacity of 45%, change it to what you like.
Above I typed "X-terminal-emulator", but to get the string you have to type, do the following:
1.) type xprop
enter
2.) now there should be a crosshair -> klick on your terminal
3.) search for "WM_CLASS(STRING)"
4.) use this in 'class_g *= '...'
You can copy a basic configuration from /usr/share/doc/compton/compton.sample.conf
or here http://duncanlock.net/blog/2013/06/07/how-to-switch-to-compton-for-beautiful-tear-free-compositing-in-xfce/ into the file ~/.config/compton.conf
(you must create this if not present)
To make this permanent you can put this command into your profile settings.
edited Dec 1 at 13:22
answered Mar 29 at 17:13
eli
1314
1314
add a comment |
add a comment |
up vote
2
down vote
After installing compton (see eli's answer)
Edit your ~/.config/compton.conf file to include the following line:
opacity-rule = ["90:class_g *= 'X-terminal-emulator'"]
This will make your terminal's opacity 90%.
Also add compton
to your autostart for lubuntu in ~/.config/lxsession/Lubuntu/autostart
add a comment |
up vote
2
down vote
After installing compton (see eli's answer)
Edit your ~/.config/compton.conf file to include the following line:
opacity-rule = ["90:class_g *= 'X-terminal-emulator'"]
This will make your terminal's opacity 90%.
Also add compton
to your autostart for lubuntu in ~/.config/lxsession/Lubuntu/autostart
add a comment |
up vote
2
down vote
up vote
2
down vote
After installing compton (see eli's answer)
Edit your ~/.config/compton.conf file to include the following line:
opacity-rule = ["90:class_g *= 'X-terminal-emulator'"]
This will make your terminal's opacity 90%.
Also add compton
to your autostart for lubuntu in ~/.config/lxsession/Lubuntu/autostart
After installing compton (see eli's answer)
Edit your ~/.config/compton.conf file to include the following line:
opacity-rule = ["90:class_g *= 'X-terminal-emulator'"]
This will make your terminal's opacity 90%.
Also add compton
to your autostart for lubuntu in ~/.config/lxsession/Lubuntu/autostart
answered Sep 11 at 7:55
Unamata Sanatarai
1,24321121
1,24321121
add a comment |
add a comment |
up vote
1
down vote
Open the LXTerminal and select Edit from the top menu and then Profile Preferences->Colors. From that screen you can change your terminal to transparent, partially transparent, the colors, etc.
can you please post the screenshots because I dont have thisProfile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
add a comment |
up vote
1
down vote
Open the LXTerminal and select Edit from the top menu and then Profile Preferences->Colors. From that screen you can change your terminal to transparent, partially transparent, the colors, etc.
can you please post the screenshots because I dont have thisProfile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
add a comment |
up vote
1
down vote
up vote
1
down vote
Open the LXTerminal and select Edit from the top menu and then Profile Preferences->Colors. From that screen you can change your terminal to transparent, partially transparent, the colors, etc.
Open the LXTerminal and select Edit from the top menu and then Profile Preferences->Colors. From that screen you can change your terminal to transparent, partially transparent, the colors, etc.
answered Sep 22 '17 at 16:11
Rex
1,2071712
1,2071712
can you please post the screenshots because I dont have thisProfile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
add a comment |
can you please post the screenshots because I dont have thisProfile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
can you please post the screenshots because I dont have this
Profile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
can you please post the screenshots because I dont have this
Profile Preferences->Colors
– YaSh Chaudhary
Sep 22 '17 at 16:37
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
I think that the settings of lxterminal only provide "fake" transparency. In other words, you'll see the root window and not necessarily the window immediately below the lxterminal window. It's possible that using something like compton maybe needed for true transparency.
– DK Bose
Sep 22 '17 at 16:56
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@DKBose i've installed compton but issue still persists.
– YaSh Chaudhary
Sep 23 '17 at 4:18
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
@YaShChaudhary for me it was "rightklick" on the terminal window > then click "preferences" > then click on "background" > there you can set the "Opacity" but for me (using i3 window manager) that was no solution, because of mentiones "fake transparency"
– eli
Mar 29 at 16:25
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f958402%2fhow-to-make-lxterminal-of-lubuntu-16-04-transparent%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