vendredi 20 novembre 2020

Laptop graphics card and manjaro / arch

 https://wiki.manjaro.org/index.php/Configure_Graphics_Cards#Dual_GPU

https://wiki.archlinux.org/index.php/PRIME

list everything about your machine

inxi -Fxzc0

 

list graphics cards

xrandr --listproviders

 

 

 

Aucun commentaire:

Enregistrer un commentaire

bash script to convert all mp4 in a folder to mkv files with ffmpeg

 #!/bin/bash for i in *.mp4; do   echo "$i" "${i%%.*}.mkv"   ffmpeg -i "$i" -vcodec copy -acodec copy "${...