maandag 16 november 2020
woensdag 14 oktober 2020
How to view fonts on your system
Use the command fc-list and then grep to find the particular font you want
fc-list | grep liberation
dinsdag 29 september 2020
Concatenation of multiple files in the right order
Is there any way to concatenate multiple text files in numerical order of the file names with one bash command?
A problem arises when you go past the number 9. If you give the ls command, you will get:
file10
file11
file12
file1
file2
file3
file4
file5
file6
file7
file8
file9
So, if you want to cocatenate in order, it won't be done correctly.
What is needed is the sort command, like this:
ls | sort -V | xargs cat *.txt
https://stackoverflow.com/questions/35126745/erge-text-files-ordered-by-numerical-filenames-in-bash
dinsdag 5 mei 2020
zondag 5 april 2020
maandag 23 maart 2020
Xrandr, arandr, xprop and xev
Xrandr is used to set the size, orientation and/or reflection of the outputs for a screen. It can also set the screen size. A
ArandR is a visual front end for XRandR 1.2 (per display options), which provides full control over positioning, saving and loading to/from shell scripts and easy integration with other applications.
The xprop utility is for displaying window and font properties in an X server. One window or font is selected using the command line arguments or possibly in the case of a window, by clicking on the desired window. A list of properties is then given, possibly with formatting information.
xev - print contents of X events.
zondag 22 maart 2020
Arch Linux installeren
Enlarging Libreoffice window completely with command
You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.
-
Als je een goede pdf wilt maken van een Volkskrant artikel, moet je als volgt te werken gaan. Open de Volkskrant pagina, waar je een pdf van...
-
You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.
-
https://wiki.documentfoundation.org/Faq/Calc/113 Create a new LibreOffice Calc document. Click on a cell in the table (A1 for example) Go t...