Skip to content

Instantly share code, notes, and snippets.

View wojtekadams's full-sized avatar
👻

wojtekadams wojtekadams

👻
View GitHub Profile
@wojtekadams
wojtekadams / AYANEO-fps-pow.ovl
Created June 21, 2023 10:13
Overlay skin for AYANEO 2
## 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.
@wojtekadams
wojtekadams / AYANEO2-all.ovl
Last active June 21, 2023 10:13
Overlay skin for AYANEO 2
## 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.
@wojtekadams
wojtekadams / proxmox_shutdown.sh
Created June 20, 2023 06:55
Proxmox shutdown script
#!/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
@wojtekadams
wojtekadams / userChrome.css
Last active August 28, 2023 04:20
Bottom Tabs in Firefox 113 [CSS]
/* 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:
@wojtekadams
wojtekadams / kde-konsole-tab-colours.css
Last active February 13, 2018 11:46 — forked from codemedic/konsole-with-palette-colours.css
CSS for KDE Konsole minimal, lighter, dark tabs
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);