aerothemeplasma/INSTALL.md

521 行
17 KiB
Markdown
Raw 通常表示 履歴

# Installation
## TABLE OF CONTENTS
1. [Prerequisites](#preq)
2023-08-25 07:32:11 +09:00
1. [KDE Plasma Settings](#plasma-settings)
1. [KDE Plasma Theme](#plasma-theme)
1. [Icons and cursors](#icons)
1. [Qt Visual Style](#application-theme)
1. [Fonts](#fonts)
1. [Window Manager](#wm)
1. [Reflection Effect](#reflection)
1. [Plasma Widgets](#widgets)
1. [Task Switcher](#task-switcher)
1. [Splash Screen](#splash-screen)
1. [Sounds](#sounds)
1. [Wine](#wine)
1. [Terminal](#terminal)
### Prerequisites <a name="preq"></a>
The following software is required for this project:
- KDE Plasma
2023-08-25 07:32:11 +09:00
- KWinFT/KWin with compositing support for blur and other effects
- Kvantum
- Some program to change the GTK2 theme, like ```gtk-chtheme```.
- Qt5 GraphicalEffects package (```qt5-graphicaleffects``` on Arch)
Optional programs:
2023-08-25 07:32:11 +09:00
- KMix, for a volume menu that looks more like Windows 7. For Pipewire users it might be better to just use the default volume plasmoid KDE provides.
### KDE Plasma Settings <a name="plasma-settings"></a>
2023-08-25 07:32:11 +09:00
Starting off with the simplest modifications, this is a list of recommended settings which are configurable in the system settings, to make Plasma behave more like Windows 7:
- Under Workspace Behaviour:
- Under General Behaviour:
- Clicking files or folders: Selects them
- Under Desktop Effects:
2023-08-25 07:32:11 +09:00
- Disable 'Background contrast' *(This theme does not make use of this option #9)*
- Enable 'Blur', set Blur strength to 2, and Noise strength to 0
- Enable 'Desaturate unresponsive applications'
- Enable 'Fading popups'
- Enable 'Login', check 'Fade to black' *(Apparently this effect is currently broken? It won't actually fade to black.)*
- Enable 'Logout'
- Enable 'Morphing popups'
- Disable 'Sliding Popups'
- Disable 'Translucency'
- Enable 'Glide':
- Duration: 200ms
- Window Open Animation: Top, 8, 20
- Window Close Animation: Bottom, 15, 30
2023-08-25 07:32:11 +09:00
- Enable 'Window Aperture'
- If using KWinFT, enable 'Flip Switch':
- Flip animation duration: 200
- Angle: 45°.
- Enable 'Scale' (Appearance)
- Under Screen Edges:
- Turn off all 8 screen edges
- Under Touch Screen:
- Disable all 4 triggers
- Under Virtual Desktops:
- Remove all but one desktop, set maximum rows to 1
2022-08-29 07:00:43 +09:00
- Under Window Management:
- Under Window Behaviour:
- Under Window Actions:
- Modifier key: Meta
- Under KWin Scripts:
2023-08-25 07:32:11 +09:00
- Enable 'MinimizeAll'
When editing Plasma's bottom panel, make sure its width is set to 40 pixels (30 if using a small panel).
### KDE Plasma Theme <a name="plasma-theme"></a>
2023-08-25 07:32:11 +09:00
Seven-Black is the theme for Plasma's shell. To install it, put it in the following directory (create it if it doesn't exist):
2023-08-25 07:32:11 +09:00
```
$ ~/.local/share/plasma/desktoptheme/
```
To apply it, go to ```System Settings -> Appearance -> Plasma Style``` to find it and select it.
### Icons and cursors <a name="icons"></a>
2023-08-25 07:32:11 +09:00
The icon theme is ```windowsicon```, while ```aero-cursors``` is the cursor theme. Extract the tar archives and move the folders in the following directory:
2023-08-25 07:32:11 +09:00
```
$ ~/.local/share/icons/
```
2023-08-25 07:32:11 +09:00
To apply them, go to ```System Settings -> Appearance -> Icons``` and ```System Settings -> Appearance -> Cursors``` respectively to select them.
2023-08-25 07:32:11 +09:00
It is also strongly recommended to install the [Oxygen](https://invent.kde.org/frameworks/oxygen-icons5) icon theme if it's not already installed on your system, as this project's icon theme optionally depends on it.
### Qt Visual Style <a name="application-theme"></a>
2023-08-25 07:32:11 +09:00
Installing Kvantum requires installing the package ```kvantum``` which is available in the community repository for Arch, and is available on most other Linux distributions as well.
To install the GTK2 theme, locate and move the following directory:
2023-08-25 07:32:11 +09:00
```
$ ./Qt/Application_Theme/QGtkStyle/win27pixmap/
```
2023-08-25 07:32:11 +09:00
to this directory (create it if it doesn't exist):
2023-08-25 07:32:11 +09:00
```
$ ~/.themes/
```
2023-08-25 07:32:11 +09:00
Installing the Kvantum theme is simply done through Kvantum's settings. Afterwards, Kvantum can be set as the visual style in ```System Settings -> Appearance -> Application Style```.
**Applying the GTK2 theme:**
2023-08-25 07:32:11 +09:00
Through a utility program like ```gtk-chtheme```, set the GTK2 theme to Win2-7. When configuring GTK2, make sure to set the font to the same font as configured in the system settings (for this theme, the default is Segoe UI, size 9).
In case the GTK2 theme isn't persistent throughout sessions, in order to keep it applied, add the following line:
2023-08-25 07:32:11 +09:00
```
GTK2_RC_FILES=/home/[username]/.themes/win27pixmap/gtk-2.0/gtkrc
```
in
2023-08-25 07:32:11 +09:00
```
# /etc/environment
```
Replace ```[username]``` with your own user name. Restart the Plasma session to see the effect.
**Installing the color scheme:**
2023-08-25 07:32:11 +09:00
To install the color scheme, go to ```System Settings -> Appearance -> Colors``` and click "Install from file". Locate the following file and select it:
2023-08-25 07:32:11 +09:00
```
./Plasma/Color_Scheme/AeroColorScheme.colors
```
Select the color scheme and apply it.
### Fonts <a name="fonts"></a>
2023-08-25 07:32:11 +09:00
For the sake of keeping this theme pack relatively compact, and to avoid potential licensing issues, this repository won't include Windows fonts, but acquiring them from an already present Windows installation is easy.
On Windows, fonts are stored in the following directory:
```
C:\Windows\Fonts\
```
2023-08-25 07:32:11 +09:00
If you have an existing Windows installation, you can simply copy the fonts over to the following directory (note that this will install the fonts across the entire system):
2023-08-25 07:32:11 +09:00
```
# /usr/share/fonts/windows/
```
2023-08-25 07:32:11 +09:00
It might be necessary to also update the fontconfig cache:
2023-08-25 07:32:11 +09:00
```
$ fc-cache
```
As for the actual font rendering configuration, in ```System Settings -> Appearance -> Fonts``` apply the following settings:
- General: Segoe UI 9pt
2023-08-25 07:32:11 +09:00
- Fixed width: Fixedsys 11pt
- Small: Segoe UI 8pt
- Toolbar: Segoe UI 9pt
- Menu: Segoe UI 9pt
- Window title: Segoe UI 9pt <br>
- Anti-aliasing: Enable
2023-08-25 07:32:11 +09:00
- Sub-pixel rendering: RGB *(This may vary depending on the monitor, choose the setting that looks best for your monitor and eyes.)*
- Hinting: Slight
2023-08-25 07:32:11 +09:00
Relog into a new Plasma session to see the results.
2023-08-25 07:32:11 +09:00
Note: Font rendering on Linux is [largely broken now](https://gitlab.gnome.org/GNOME/pango/-/issues/656) [and has been](https://gitlab.gnome.org/GNOME/pango/-/issues/463) [for](https://gitlab.gnome.org/GNOME/pango/-/issues/404) [several](https://github.com/harfbuzz/harfbuzz/issues/2394) [years](https://www.phoronix.com/news/HarfBuzz-Hinting-Woe). As a result, **pretty much all** font hinting options are broken except for **slight** font hinting and HiDPI rendering (because at that point, subpixel rendering isn't even needed). This regression has taken away the aggressive font hinting which made rendering nearly identical to ClearType on Windows 7. Currently, full font hinting _should technically work again_, but certain glyphs aren't horizontally aligned correctly, which still makes text unreadable. Until this issue is resolved, the only viable choice is to use slight font hinting.
### Window Manager <a name="wm"></a>
2023-08-25 07:32:11 +09:00
To install the window decoration, move the file:
2023-08-25 07:32:11 +09:00
```
$ ./KWin/smaragd_bin/kwin_smaragd.so
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/lib/qt/plugins/org.kde.kdecoration2/
```
2023-08-25 07:32:11 +09:00
The window decoration requires an Emerald theme to be present as well. To install the theme, move the following directory (If it doesn't appear, enable viewing hidden files):
2023-08-25 07:32:11 +09:00
```
$ ./KWin/.emerald/
```
2023-08-25 07:32:11 +09:00
to the home directory.
2023-08-25 07:32:11 +09:00
To apply the window decoration, go to ```System settings -> Appearance -> Window Decorations``` and select Smaragd.
#### Compiling instructions
2023-08-25 07:32:11 +09:00
Compiling Smaragd on Arch Linux requires a few dependencies to be installed on the system:
- cmake
- cairo
- glib2
- kdebase-runtime
2023-08-25 07:32:11 +09:00
- kdelibs 4.14.x
2023-08-25 07:32:11 +09:00
The last two dependencies are provided in this repository as prebuilt Arch packages. The package `kdebase-runtime` doesn't exist anymore for Arch, not even the AUR, so the only place to find it outside of this repository is through [this](https://archive.org/details/archlinux_pkg_kdebase-runtime) link. The package `kdelibs` can be installed through the AUR, however it isn't recommended as compiling the package takes very long, and as of right now, building the package seems to fail. Distributions like Debian might be better in terms of offering legacy packages.
2023-08-25 07:32:11 +09:00
To compile Smaragd from the terminal:
2023-08-25 07:32:11 +09:00
```bash
cd smaragd-0.1.1
mkdir build #You can delete the build directory that already exists, or use a different name
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix` ..
make
sudo make install
```
If compiling multiple times, only the last step is required. Steps 1-4. are for setting the environment up for the first time.
2023-08-25 07:32:11 +09:00
To see the changes after compiling and setting Smaragd in the System Settings, simply restart KWin.
2023-08-25 07:32:11 +09:00
### Reflection Effect <a name="reflection"></a>
2023-08-25 07:32:11 +09:00
To install the reflection effect, it's recommended to build it from source. The required dependencies are:
2023-08-25 07:32:11 +09:00
- cmake
- extra-cmake-modules
2023-08-25 07:32:11 +09:00
Then, go to the folder:
2023-08-25 07:32:11 +09:00
```
cd ./KWin/kwin_reflect/
sh install.sh
```
2023-08-25 07:32:11 +09:00
After it has been compiled, you can log out or restart plasma and kwin, then go to ```System settings -> Workspace Behavior -> Desktop Effects``` and enable the effect.
2023-08-25 07:32:11 +09:00
### Plasma widgets <a name="widgets"></a>
2023-08-25 07:32:11 +09:00
### User plasmoids
2023-08-25 07:32:11 +09:00
These plasmoids do not require root privileges or editing system files to install. Installing them can be done by moving the plasmoid folder found in the following directory:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/User/
```
2023-08-25 07:32:11 +09:00
to:
2023-08-25 07:32:11 +09:00
```
$ ~/.local/share/plasma/plasmoids/
```
2023-08-25 07:32:11 +09:00
Example:
2023-09-28 02:50:10 +09:00
To install Show Desktop (Aero), move the directory:
2023-08-25 07:32:11 +09:00
```
2023-09-28 02:50:10 +09:00
$ ./Plasma/Plasma_Widgets/User/io.wackyideas.win7showdesktop/
2023-08-25 07:32:11 +09:00
```
2023-08-25 07:32:11 +09:00
to:
2023-08-25 07:32:11 +09:00
```
$ ~/.local/share/plasma/plasmoids/
```
2023-09-28 02:50:10 +09:00
#### Seven Start
Seven Start has a feature that allows the orb button to stick out of the panel, which requires a natively compiled component. Before installing Seven Start normally, move the following file:
```
$ ./Plasma/Plasma_Widgets/User/plasma_applet_SevenStart.so
```
to:
```
# /usr/lib/qt/plugins/plasma/applets/plasma_applet_SevenStart.so
```
#### Seven Tasks
2023-09-28 02:50:10 +09:00
Just like Seven Start, Seven Tasks also requires a similar installation process. Move the file:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/User/plasma_applet_seventasks.so
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/lib/qt/plugins/plasma/applets/plasma_applet_seventasks.so
```
2023-08-25 07:32:11 +09:00
This library is used to create [this effect](https://superuser.com/questions/730804/how-does-windows-7-calculate-the-color-to-use-for-taskbar-color-hot-tracking) from Windows 7.
2023-08-25 07:32:11 +09:00
It is possible to toggle showing labels by toggling the "Show labels on taskbar buttons" option in the configuration window like this:
<img src="Screenshots/SevenTasksConfig.png">
#### Digital Clock Lite
This plasmoid doesn't require additional configuration after installation if other steps have been completed. If for some reason the font and size do not look appropriate, set them to the following:
- Font size px: 9
2023-08-25 07:32:11 +09:00
- Font style: Segoe UI Light, bold
### System modifications
2023-08-25 07:32:11 +09:00
These plasmoids and QML modifications require root privileges to install. It's recommended to move the original files somewhere safe as a backup, instead of replacing them directly. **Always make backups before replacing system files.**
2023-08-25 07:32:11 +09:00
An important thing to keep in mind is that these changes will be reset everytime KDE is updated, meaning that it is necessary to perform this part of the installation after every update.
#### Modified System Tray
2023-08-25 07:32:11 +09:00
To install, move the following directory:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/System/org.kde.plasma.private.systemtray/
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/share/plasma/plasmoids/
```
Restart plasma to apply changes. If necessary, set the icon size to "Small" in the configuration window.
#### Modified Keyboard Layout Switcher
2023-08-25 07:32:11 +09:00
To install, move the following directory:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/System/org.kde.plasma.keyboardlayout
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/share/plasma/plasmoids/
```
2023-08-25 07:32:11 +09:00
Restart plasma to apply changes.
#### Desktop icons
2023-08-25 07:32:11 +09:00
To install, move the following directory:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/System/org.kde.desktopcontainment
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/share/plasma/plasmoids/
```
Restart plasma to apply changes.
2023-08-25 07:32:11 +09:00
To make the desktop look more like Windows 7 by default, right click on the desktop and click "Configure Desktop and Wallpaper...", change the following settings:
- Icons:
- Icon size: 2
- Label width: Narrow
- Features: All checked except for "Folder preview popups"
#### Plasma tooltips
2023-08-25 07:32:11 +09:00
To install, move the following file:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Plasma_Widgets/System/Tooltips/DefaultTooltip.qml
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/lib/qt/qml/org/kde/plasma/core/private/
```
2023-08-25 07:32:11 +09:00
Restart plasma to apply changes.
### Task Switcher <a name="task-switcher"></a>
2023-08-25 07:32:11 +09:00
To install, move the following folder:
```
$ ./KWin/thumbnail_seven
```
to:
```
$ ~/.local/share/kwin/tabbox/
```
In ```System Settings -> Window Management -> Task Switcher```, set the following:
In Main:
2023-08-25 07:32:11 +09:00
- Visualization: Set "Thumbnail Seven" as the visualization style.
- Shortcuts (for All Windows):
- Forward: Alt + Tab
- Backward: Alt + Shift + Tab
- Check "Include "Show Desktop" icon"
In Alternative:
- Visualization: Set "Flip Switch" as the visualization style.
- Shortcuts (for All Windows):
- Forward: Meta + Tab
- Backward: Meta + Shift + Tab
- Check "Include "Show Desktop" icon"
2023-08-25 07:32:11 +09:00
### Splash Screen <a name="splash-screen"></a>
To install the splash screen, move the folder:
```
$ ./Plasma/Splash_Screen/io.gitgud.wackyideas.aerosplashscreen
```
To the following directory:
```
$ ~/.local/share/plasma/look-and-feel/
```
Create the directory in case it doesn't exist.
Set the splash screen in ```System Settings -> Appearance -> Splash Screen```.
### Sounds <a name="sounds"></a>
2023-08-25 07:32:11 +09:00
On Windows, system sound files are located in:
2023-08-25 07:32:11 +09:00
```
C:\Windows\Media
```
To install the sound files bundled with this project, move the two following directories:
2023-08-25 07:32:11 +09:00
```
$ ./Plasma/Sounds/media_windows
$ ./Plasma/Sounds/stereo_windows
```
to:
2023-08-25 07:32:11 +09:00
```
# /usr/share/sounds/
```
2023-08-25 07:32:11 +09:00
To apply them, go to ```System Settings -> Notifications```. There, click on the 'Configure'
button. Scroll down to ```Plasma Workspace```, and click on the 'Configure Events' button.
Set the sounds for the following notifications:
2023-08-25 07:32:11 +09:00
|Sound |File |
|-------------------------|-------------------------------------------------------------|
|Notification |```/usr/share/sounds/stereo_windows/dialog-information.ogg```|
|Warning Message |```/usr/share/sounds/stereo_windows/dialog-warning.ogg``` |
|Fatal Error, Catastrophe |```/usr/share/sounds/stereo_windows/dialog-error.ogg``` |
|Logout |```/usr/share/sounds/stereo_windows/desktop-logout.ogg``` |
|Question |```/usr/share/sounds/stereo_windows/dialog-question.ogg``` |
|Login |```/usr/share/sounds/stereo_windows/desktop-login.ogg``` |
|Warning |```/usr/share/sounds/stereo_windows/dialog-warning.ogg``` |
|Trash, Emptied |```/usr/share/sounds/media_windows/Windows Recycle.wav``` |
|Critical Message |```/usr/share/sounds/stereo_windows/dialog-warning.ogg``` |
|Information Message |```/usr/share/sounds/stereo_windows/dialog-information.ogg```|
|Beep |```/usr/share/sounds/stereo_windows/button-pressed.ogg``` |
Then, under ```Power Management```, click on the 'Configure Events' button. Set the sounds for the following
notifications:
2023-08-25 07:32:11 +09:00
|Sound |File |
|-----------------------------------|------------------------------------------------------------------|
|Battery Low, Peripheral Battery Low|```/usr/share/sounds/media_windows/Windows Battery Low.wav``` |
|Battery Critical |```/usr/share/sounds/media_windows/Windows Battery Critical.wav```|
### Wine <a name="wine"></a>
2023-08-25 07:32:11 +09:00
To install the msstyle for Wine applications, run ```winecfg```, and under the 'Desktop Integration' tab, click 'Install theme' and choose the following file:
2023-08-25 07:32:11 +09:00
```
$ ./Wine/VistaVG Ultimate/vistavg_ultimate.msstyles
```
2023-08-25 07:32:11 +09:00
After that, go through the entire 'Item' list, and change the font everywhere to:
- Font: Segoe UI
- Size: 9pt
2023-08-25 07:32:11 +09:00
### Terminal <a name="terminal"></a>
To make your terminal emulator of choice look a bit more like the command prompt from Windows, do the following:
- Hide the menu bar
- Hide the tab bar if there's only one tab available
- Set the terminal font to Fixedsys (Excelsior 3.01), 11pt.
- Add the following line to `~/.bashrc`:
2023-08-25 07:32:11 +09:00
```printf 'Microsoft Windows [Version 6.1.7601] \nCopyright <c> 2009 Microsoft Corporation. All rights reserved.\n\n'```
2023-08-25 07:32:11 +09:00
The last part will print the provided string every time a new bash session is started.