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
:root { | |
--tab-curve-width: 30px; | |
--tabs-border: transparent !important; | |
} | |
.tabbrowser-arrowscrollbox .arrowscrollbox-scrollbox { | |
padding-inline-start: 10px !important; | |
} | |
/* To be able to see the top border of the tab */ |
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
backend = "glx"; | |
glx-no-stencil = true; | |
glx-swap-method = "buffer-age"; | |
glx-use-copysubbuffermesa = true; | |
glx-no-rebind-pixmap = true; | |
xrender-sync-fence = true #seems to help against missing refresh | |
vsync = "opengl-swc"; #Works faster than mswc! | |
shadow = true; | |
no-dnd-shadow = true; | |
no-dock-shadow = true; |
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 | |
# simple script that either connects or disconnects the external monitor | |
# the prime output is the local (laptop) screen | |
# the secondary is either discovered,but not connected or disconnected but not removed (screen size too big) | |
oldifs="$IFS" | |
IFS=$'\n' | |
export DISPLAY=:0.0 | |
#sleep 2 |
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
backend = "glx"; | |
glx-no-stencil = true; | |
use-damage = true | |
glx-no-rebind-pixmap = true; | |
xrender-sync-fence = true #seems to help against missing refresh | |
#vsync=true; #any vync breaks | |
glx-swap-method = "exchange"; | |
################################# | |
# | |
# Shadows |
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
''' | |
Created on 3 May 2024 | |
@author: matze | |
''' | |
from PyQt6 import QtWidgets | |
""" | |
based on: | |
https://github.com/mpv-player/mpv-examples/blob/master/libmpv/qt_opengl/mpvwidget.cpp |