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
| # Neep is the loveliest bitmap terminal font I've found so far with good Unicode coverage. | |
| # Unfortunately, neep has no italics. | |
| # | |
| # As a quick workaround, one can use the terminus-oblique font as a replacement by using X fonts.alias. | |
| sudo apt-get install xfonts-jmk xfonts-terminus-oblique | |
| echo "-jmk-neep-medium-o-normal--20-180-75-75-c-100-iso10646-1 -xos4-terminus-bold-o-normal--20-200-72-72-c-100-iso10646-1" > local.alias | |
| echo "-jmk-neep-medium-o-normal--15-140-75-75-c-80-iso10646-1 -xos4-terminus-bold-o-normal--14-140-72-72-c-80-iso10646-1" >> local.alias | |
| sudo cp -i local.alias /etc/X11/fonts/misc/local.alias \ |
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 | |
| # sixcat: Use sixel graphics to show an image inside a terminal. | |
| # sixgif: Use sixel graphics to play an animation inside a terminal. | |
| # Version 1.0 | |
| # hackerb9, June 2017 | |
| # Sixel graphics are supported by terminals such as the DEC VT340 and | |
| # emulators, such as 'xterm -ti vt340'. |
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 | |
| # lsix: like ls, but for images. | |
| # Shows thumbnails of images with titles directly in terminal. | |
| # Version 1.0 | |
| # hackerb9, June 2017 | |
| numcolors=16 # Number of colors in the palette, if TERM is not xterm |
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 | |
| # (C) 2008 Canonical Ltd. | |
| # Author: Martin Pitt <martin.pitt@ubuntu.com> | |
| # License: GPL v2 or later | |
| # modified by David D Lowe and Thomas Detoux | |
| # Debian 7 support by pixline <pixline@gmail.com> | |
| # Cinnamon support by hackerb9 <hackerb9@gmail.com> | |
| # 2016 major cleanup by hackerb9: cinnamon, debian 8, default extra groups, etc. | |
| # |
NewerOlder