Skip to content

Instantly share code, notes, and snippets.

@terenty-rezman
terenty-rezman / mobaxterm_wrapper.bat
Last active July 23, 2020 14:04
EVE-NG mobaXterm wrapper Windows
python "C:\Program Files\EVE-NG\mobaxterm_wrapper.py" %1
@terenty-rezman
terenty-rezman / scrollbar.py
Last active July 2, 2020 18:26
QScrollBar over content
# to have fancy transparent scrollbars over your content
# all you need is to adjust viewport margins with negative values like this:
# scroll_area = QScrollArea()
scroll_area.setViewportMargins(0, 0, -8, -8)
# also here are some styles to make your scrolbars even fancier:
QScrollBar:vertical {
border: none;
background-color: transparent;