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
## Overlay skin for AYANEO 2 | |
## Autor: unknown | |
## Installation: | |
# 1) Move the "Program Files (x86)" folder from the archive to the root of the system drive. | |
# Or move the "skin.ovl" and "skin.png" files to the "Overlays" folder under the path "C:\Program Files (x86)\RivaTuner Statistics Server\Plugins\Client\"; | |
# 2) If there is a font in the archive, install it; | |
# 3) Launch "RivaTuner Statistics Server" (RTSS.exe); | |
# 4) Press the button "Setup" > "Plugins" > double click on "OverlayEditor.dll" > "Layouts" > "Load" > select and double click on the ".ovl" file; | |
# 5) Click the button "Layouts" > "Edit" > Press the "Master settings" button > confirm. |
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
## Overlay skin for AYANEO 2 | |
## Autor: unknown | |
## Installation: | |
# 1) Move the "Program Files (x86)" folder from the archive to the root of the system drive. | |
# Or move the "skin.ovl" and "skin.png" files to the "Overlays" folder under the path "C:\Program Files (x86)\RivaTuner Statistics Server\Plugins\Client\"; | |
# 2) If there is a font in the archive, install it; | |
# 3) Launch "RivaTuner Statistics Server" (RTSS.exe); | |
# 4) Press the button "Setup" > "Plugins" > double click on "OverlayEditor.dll" > "Layouts" > "Load" > select and double click on the ".ovl" file; | |
# 5) Click the button "Layouts" > "Edit" > Press the "Master settings" button > confirm. | |
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
#!/bin/bash | |
# get list of VMs and LXCs on the node | |
VMIDs=$(/usr/sbin/qm list | tail -n +2 | awk '/[0-9]/ {print $1}') | |
LXCs=$(/usr/bin/lxc-ls) | |
# ask LXCs to stop | |
for LXC in $LXCs | |
do | |
/usr/bin/lxc-stop $LXC |
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
/* Source file https://github.com/COOLak/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 | |
See the above repository for updates as well as full license text. */ | |
/* Modify to change window drag space width */ | |
/* IMPORTANT */ | |
/* | |
Get window_control_placeholder_support.css | |
Window controls will be all wrong without it. | |
Additionally on Linux, you may need to get: |
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
QTabBar, | |
QTabBar::tab | |
{ | |
/* font-size: 11px;*/ | |
/* height: 16px; */ | |
padding: 2px; | |
border: 0px; | |
border-bottom: 3px solid palette(dark); | |
background-color: palette(dark); | |
color: palette(text); |