How to keep GNOME panel transparent even when app is maximized in Ubuntu 18.04?How do I make Panel always transparent like the Dock in GNOME 3?gnome classic transparent panelHow to make the search panel non-transparent in 16.04?Weird “Dynamic Top Bar” bug every time I reboot/boot upHow to make notification panel popup tray transparent in GNOME 3How do I make Panel always transparent like the Dock in GNOME 3?How to make Dash-to-Panel in Ubuntu 18.04 transparent on maximized windows?Remove “Places” and “Applications” from Dash to Panel in GNOME shell on Ubuntu 18.04Gnome Panel becomes fully transparent when window is not maximised!
Best angle to attack
A variation on Caesar
Completing the square to solve limit problems
Should a middle class person emulate a very wealthy investor for % of cash hold?
Implement the Max-Pooling operation from Convolutional Neural Networks
Is there any point in having more than 6 months' runway in savings?
Spanning tree of a rectangular grid
What does the 1.-5. notation mean at the top right corner?
Which stat should I use for a given madness save?
Fitting a large equation with gathered in table cell
Dicht antonym - what is it?
How can substitute() operate on a whole buffer?
How much money would I need to feel secure in my job?
CO₂ level is high enough that it reduces cognitive ability. Isn't that a reason to worry?
Why rounding odd font sizes to even?
What type of rhetorical device is the offering of a source which is really long and not specifying what part of the source is relevant?
"Ich habe Durst" vs "Ich bin durstig": Which is more common?
Multivariate Limits
On a naked chicken (no coating,batter) is there any benefit of double frying?
Warranty on lock damaged during attempted theft
I have stack-exchanged through my undergrad math program. Am I likely to succeed in Mathematics PhD programs?
Create virtual block device which writes to /dev/null
What is the "opposite" of a random variable?
Grep over multiple files redirecting to a different filename each time
How to keep GNOME panel transparent even when app is maximized in Ubuntu 18.04?
How do I make Panel always transparent like the Dock in GNOME 3?gnome classic transparent panelHow to make the search panel non-transparent in 16.04?Weird “Dynamic Top Bar” bug every time I reboot/boot upHow to make notification panel popup tray transparent in GNOME 3How do I make Panel always transparent like the Dock in GNOME 3?How to make Dash-to-Panel in Ubuntu 18.04 transparent on maximized windows?Remove “Places” and “Applications” from Dash to Panel in GNOME shell on Ubuntu 18.04Gnome Panel becomes fully transparent when window is not maximised!
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I am using GNOME's "Dash-to-panel" extension for shifting status bar to the top and same for the transparency.
In Desktop mode, the transparency is there on status bar
However, Status Bar Transparency does not persist when any app is opened in maximized mode
Is there any way to keep the transparency in maximized mode?
Update:
As per this answer, I tried
using Dynamic-Panel-Transparency but after reboot it is showing an error and did not work as well:
It says "Error Loading Extension".
gnome-shell background transparency statusbar
add a comment
|
I am using GNOME's "Dash-to-panel" extension for shifting status bar to the top and same for the transparency.
In Desktop mode, the transparency is there on status bar
However, Status Bar Transparency does not persist when any app is opened in maximized mode
Is there any way to keep the transparency in maximized mode?
Update:
As per this answer, I tried
using Dynamic-Panel-Transparency but after reboot it is showing an error and did not work as well:
It says "Error Loading Extension".
gnome-shell background transparency statusbar
5
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
1
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21
add a comment
|
I am using GNOME's "Dash-to-panel" extension for shifting status bar to the top and same for the transparency.
In Desktop mode, the transparency is there on status bar
However, Status Bar Transparency does not persist when any app is opened in maximized mode
Is there any way to keep the transparency in maximized mode?
Update:
As per this answer, I tried
using Dynamic-Panel-Transparency but after reboot it is showing an error and did not work as well:
It says "Error Loading Extension".
gnome-shell background transparency statusbar
I am using GNOME's "Dash-to-panel" extension for shifting status bar to the top and same for the transparency.
In Desktop mode, the transparency is there on status bar
However, Status Bar Transparency does not persist when any app is opened in maximized mode
Is there any way to keep the transparency in maximized mode?
Update:
As per this answer, I tried
using Dynamic-Panel-Transparency but after reboot it is showing an error and did not work as well:
It says "Error Loading Extension".
gnome-shell background transparency statusbar
gnome-shell background transparency statusbar
edited Jul 22 at 18:20
TheLittleNaruto
asked Jul 22 at 17:52
TheLittleNarutoTheLittleNaruto
2417 bronze badges
2417 bronze badges
5
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
1
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21
add a comment
|
5
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
1
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21
5
5
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
1
1
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21
add a comment
|
1 Answer
1
active
oldest
votes
I had the same issue with that extension. So, I went to the source of the problem.
The steps I took:
Open the terminal.
Navigate to
ubuntu.css
.cd /usr/share/gnome-shell/theme
For security I copied
ubuntu.css
.sudo cp ubuntu.css ubuntu_css.txt
just in case I screwed up the file.
Open
ubuntu.css
in an editor.sudo vi ubuntu.css
Search document for panel.solid until you should see
/* panel color */
./* panel color */
#panel.solid
background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);For security I commented out
background-gradient-
css options by using/* */
so that I could keep the original code.Add a new line and typed:
background-color: rgba( 0, 0, 0, 0.1);
Save the file and restart the computer.
The completed code looks like this:
#panel.solid
/* background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39; */
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
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/4.0/"u003ecc by-sa 4.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%2f1160228%2fhow-to-keep-gnome-panel-transparent-even-when-app-is-maximized-in-ubuntu-18-04%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
I had the same issue with that extension. So, I went to the source of the problem.
The steps I took:
Open the terminal.
Navigate to
ubuntu.css
.cd /usr/share/gnome-shell/theme
For security I copied
ubuntu.css
.sudo cp ubuntu.css ubuntu_css.txt
just in case I screwed up the file.
Open
ubuntu.css
in an editor.sudo vi ubuntu.css
Search document for panel.solid until you should see
/* panel color */
./* panel color */
#panel.solid
background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);For security I commented out
background-gradient-
css options by using/* */
so that I could keep the original code.Add a new line and typed:
background-color: rgba( 0, 0, 0, 0.1);
Save the file and restart the computer.
The completed code looks like this:
#panel.solid
/* background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39; */
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
add a comment
|
I had the same issue with that extension. So, I went to the source of the problem.
The steps I took:
Open the terminal.
Navigate to
ubuntu.css
.cd /usr/share/gnome-shell/theme
For security I copied
ubuntu.css
.sudo cp ubuntu.css ubuntu_css.txt
just in case I screwed up the file.
Open
ubuntu.css
in an editor.sudo vi ubuntu.css
Search document for panel.solid until you should see
/* panel color */
./* panel color */
#panel.solid
background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);For security I commented out
background-gradient-
css options by using/* */
so that I could keep the original code.Add a new line and typed:
background-color: rgba( 0, 0, 0, 0.1);
Save the file and restart the computer.
The completed code looks like this:
#panel.solid
/* background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39; */
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
add a comment
|
I had the same issue with that extension. So, I went to the source of the problem.
The steps I took:
Open the terminal.
Navigate to
ubuntu.css
.cd /usr/share/gnome-shell/theme
For security I copied
ubuntu.css
.sudo cp ubuntu.css ubuntu_css.txt
just in case I screwed up the file.
Open
ubuntu.css
in an editor.sudo vi ubuntu.css
Search document for panel.solid until you should see
/* panel color */
./* panel color */
#panel.solid
background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);For security I commented out
background-gradient-
css options by using/* */
so that I could keep the original code.Add a new line and typed:
background-color: rgba( 0, 0, 0, 0.1);
Save the file and restart the computer.
The completed code looks like this:
#panel.solid
/* background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39; */
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
I had the same issue with that extension. So, I went to the source of the problem.
The steps I took:
Open the terminal.
Navigate to
ubuntu.css
.cd /usr/share/gnome-shell/theme
For security I copied
ubuntu.css
.sudo cp ubuntu.css ubuntu_css.txt
just in case I screwed up the file.
Open
ubuntu.css
in an editor.sudo vi ubuntu.css
Search document for panel.solid until you should see
/* panel color */
./* panel color */
#panel.solid
background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);For security I commented out
background-gradient-
css options by using/* */
so that I could keep the original code.Add a new line and typed:
background-color: rgba( 0, 0, 0, 0.1);
Save the file and restart the computer.
The completed code looks like this:
#panel.solid
/* background-gradient-direction: vertical;
background-gradient-start: #58554d;
background-gradient-end: #3f3e39; */
background-color: rgba(0, 0, 0, 0.1);
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
edited Sep 2 at 17:42
answered Aug 31 at 18:13
dmbGamer7dmbGamer7
388 bronze badges
388 bronze badges
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
add a comment
|
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
I tried what you have answered. but it changed to dark black it seems. Could it be the color combination you put in rgba function ain't for transparency ?
– TheLittleNaruto
Sep 29 at 9:02
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%2f1160228%2fhow-to-keep-gnome-panel-transparent-even-when-app-is-maximized-in-ubuntu-18-04%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
5
Possible duplicate of How do I make Panel always transparent like the Dock in GNOME 3?
– pomsky
Jul 22 at 17:58
1
@pomsky Edited the question; kindly check the update.
– TheLittleNaruto
Jul 22 at 18:21