Posts

Showing posts from December, 2022

Enable touchpad while typing - Gnome Manjaro XPS

 https://ostechnix.com/configure-touchpad-settings-using-gsettings-commandline-utility/ gsettings set org.gnome.desktop.peripherals.touchpad disable-while-typing false

PICO-8 run fullscreen

 Not just fullscreen windowed, but with the actual console display area maximised inside the window.  This is intended for my 1:1 ratio lenovo monitor ON RASPBERRY PI. The key is to run the launch command with the following arguments: $ home/pico-8/pico8 -draw_rect 0,0,1920,1920 The config.txt file does not accept this flag as far as I've been able to determine, so you need to do the following: Create a new pico8.desktop file in /usr/share/applications and use the following config: [Desktop Entry] Type=Application Name=Pico-8 Comment=Pico-8 Fantasy Console Icon=/usr/share/pixmaps/lexaloffle-pico8.png Exec=/home/mitch/pico-8/pico8 -draw_rect 0,0,1920,1920 Terminal=false Categories=Development; Then add the icon png from the folder to /usr/share/pixmaps reboot, or restart the window manager with lxpanelctl restart Use the menu entry for pico8 to create a desktop icon Hopeully that'll save you some time