-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minimal Qt version is bumped in lxqt/lxqt#1844 * Minimal CMake version is bumped in #230 * Closes #402 - confusion around lxqt-build-tools version and PyQt builds
- Loading branch information
Chih-Hsuan Yen
committed
Mar 3, 2021
1 parent
3d40f29
commit b94c341
Showing
3 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Migration for background images | ||
|
||
How the background image is drawn has been changed since version 0.17. | ||
Intuitively, the background image is now drawn above the background color instead of below it. | ||
Technically, the background image is no longer blended with the background color. | ||
|
||
Before migrating the settings, the background image should be converted to a translucent one with the transparency level matching the original terminal transparency. | ||
For example, if the original terminal transparency of qtermwidget was 25%, the converted image should have transparency 25%. | ||
The conversion can be done via ImageMagick, GraphicsMagick, GIMP or Krita. | ||
Here is an example command using ImageMagick: | ||
|
||
$ convert original_image.jpg -matte -channel A +level 0,25% +channel translucent_image.png | ||
|
||
The converted image can be specified as the terminal background image to achieve a similar effect to previous versions. | ||
Note that you also need to change the terminal transparency to 0% if you do not want to see another window or the desktop below the terminal. |