- Open cmd with admin rights:
- Press Win+R
- Type "cmd" (without quotes)
- Press Ctrl+Shift+Enter
- Install chocolatey package manager (reference: https://docs.chocolatey.org/en-us/choco/setup#install-with-cmd.exe):
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
| On void linux. | |
| Under `/etc/containers/` there is a file called `registries.conf`. It is complemented by `man 5 containers-registries.conf`. | |
| Change (for me lines 11-12) which say | |
| [registries.search] | |
| registries = [] | |
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
| /** | |
| * dwmconfig.h | |
| * Hardware multimedia keys | |
| */ | |
| /* Somewhere at the beginning of config.h include: */ | |
| /* | |
| You obviously need the X11 development packages installed, X11proto in particular, but | |
| here is the location of the keysyms header upstream copy if you can't bother | |
| using the contents of your own hard drive. ;-P |
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 | |
| WIDTH=1280 | |
| HEIGHT=800 | |
| setterm -cursor off | |
| mplayer -vo fbdev2 -quiet -zoom -screenw ${WIDTH} -screenh ${HEIGHT} -vf scale=${WIDTH}:-2 -sws 0 -fs ${@} | |
| setterm -cursor on -clear |