-
FAR (Fix (NieR) Automata Resolution) -- Required by HD Texture Pack.
This file contains hidden or 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
// insert into ~/.config/waybar/config | |
"custom/ddc_brightness": { | |
// I don't even want to know why this works. | |
// Change it to the following for your custom icons, | |
// current format is a hack for Material Symbols to display normally: | |
// "format": "{icon} {percentage}%", | |
"format": "<span rise='-2pt' size='12pt'>{icon}</span> <span rise='1pt' size='10pt'>{percentage}%</span>", | |
"format-icons": [ | |
// Icons from Google Material Symbols. |
This file contains hidden or 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
/* | |
For use with the Stylus browser extension, since Dark Reader is slow on the giant single page spec. | |
*/ | |
html, | |
body, | |
input, | |
textarea, | |
select, | |
button { |
This file contains hidden or 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 | |
## workspace Number ( count ) | |
WS_N=$(wmctrl -d | wc -l) | |
## workspace ID | |
WS_ID=$(wmctrl -d | grep '*' | cut -d ' ' -f1) | |
## next workspace id ( loops around ) | |
NEXT_ID=$(( ( $WS_ID + 1 ) % $WS_N )); |
This file contains hidden or 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 | |
## workspace Number ( count ) | |
WS_N=$(wmctrl -d | wc -l) | |
## workspace ID | |
WS_ID=$(wmctrl -d | grep '*' | cut -d ' ' -f1) | |
## previous workspace id ( loops around ) | |
PREV_ID=$(( ( $WS_ID - 1 ) % $WS_N )); |