-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestfont
More file actions
50 lines (47 loc) · 1.61 KB
/
Copy pathtestfont
File metadata and controls
50 lines (47 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# Just to print every common characters
# The font name is designed for URxvt
# Cheers! Addy
# Clean the characters
clear
# Print the URxvt.font in the Xresources databases
xrdb -query | grep URxvt.font | sed 's/^[^-]*://g' | sed 's/\t//g'
# Line break
echo ''
# Hello world!
echo 'Hello World!'
# Check the hardest characters to distinguish
echo 'Iil1 | 0Oo'
# Print A-Z
echo 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
# Print a-z
echo 'abcdefghijklmnopqrstuvwxyz'
# Print numbers & some symbols
echo '1234567890 "`~!@#$%^&*_-=+"'
# Now symbols with some spaces
echo '" ` ~ ! @ # $ % ^ & * _ - = + "'
# Print other punctuations/operators
echo ', . () <> [] {} \ | ? / : ;'
# Line break
echo ''
# Print common font test text
echo 'The quick brown fox jumps over the lazy dog.'
# Line break
echo ''
# Other common font test text
echo 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. In lacinia dui interdum,'
echo 'dapibus eros vel, posuere turpis. Nulla cursus neque sed dignissim porttitor.'
echo 'Vestibulum sit amet dolor turpis. Integer bibendum vulputate convallis. Quisque'
echo 'nulla lacus, aliquam eget libero congue, commodo dignissim neque. Etiam quis felis'
echo 'erat. Nullam sagittis tempor augue, pharetra fringilla nunc varius vitae. Morbi'
echo 'condimentum justo finibus feugiat laoreet. Nullam finibus sem semper nunc commodo'
echo 'hendrerit. Maecenas suscipit magna sit amet augue pharetra, a iaculis nunc sagittis.'
# Linebreak
echo ''
# Powerline character
# Just put any argument when launch this script
if [ $# -ne 0 ]; then
echo ' '
# Linebreak
echo ''
fi