Is it possible for windows to be transparent by default in Unity 7.4 on Ubuntu 16.04 LTS? I used the opacity tool in CompizConfig Settings Manager to set up a keyboard shortcut, but is there a way to have windows be transparent by default?
-
Related: https://docs.unity3d.com/Manual/StandardShaderMaterialParameterAlbedoColor.html – Elder Geek Nov 23 '16 at 17:19
-
question has been revised, no longer a duplicate – cheesits456 Nov 23 '16 at 19:09
-
Do you mean the transparency applied to all window? – Liso Jan 10 '17 at 07:38
-
@Liso I want all windows to be slightly seethrough when they're opened - right now they're all completely opaque by default but I can use a keyboard command to change it - I don't want to have to use a keyboard command, I want it to be transparent by default when I first open a window – cheesits456 Jan 10 '17 at 07:51
2 Answers
NOTE: For those who interested on getting transparent window, you might want to install Compiz Settings and its plugins:
sudo apt install compizconfig-settings-manager compiz-plugins
Press Alt + F2, type
ccsmon field to launch Compiz Setting.On Accessibility section, click Opacity Brightness & Saturation plugin.
On the current tab, expand Window Specific Settings.
- Click New button, then click + and Edit Match window will be appear.
- On Type field, change value from "Window Class" to "Window Type". Then type "Normal" on Value field. Don't forget to click Add when you're done.
- Back to edit window, you have to set your preferred opacity values, you can set the values from 0 to 100. Less values make the window more transparent, we'll use 80 for example.
- Click Close then, as you can see there are new defined specific settings.
Before effect
After effect
-
Good answer ! You might also mention that `ccsm` is not installed by default so user will likely need to run `sudo apt-get install compizconfig-settings-manager` – Sergiy Kolodyazhnyy Jan 10 '17 at 10:27
-
-
2@ChristianF97 Sure, you have, but other users who find this answer via Google might not have it. It's always best to make answers as general as possible – Sergiy Kolodyazhnyy Jan 11 '17 at 01:09
-
Does not work any more on Ubuntu 18.04 and later, because ccsm works only on Unity desktop environment, and latest versions switched to GNOME.
As this site says, you can enter this line on your terminal:
xprop -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY `printf 0x%x $((0xFFFFFFFF * 80 / 100))`
Of course you can replace 80 in the command with whatever value you want, in percentage.
Then the cursor will become a cross, and you can click a window to change its opacity.
NOTE: You have to run this command for every window you have open or you wish to apply that opacity setting to. Once a window is clicked, the cursor becomes back normal.
- 3
- 3
- 31
- 1






