Last active
February 24, 2024 02:28
-
-
Save porteusconf/8a17b57fccdc7f6fa0bb7e434f0aea04 to your computer and use it in GitHub Desktop.
create ~/.seeconfig for seeman (GUI "manpage" viewer for X windows) apt install seetxt && seeconfig-for-seeman.sh && seeman seeman
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
#! /usr/bin/env bash | |
### https://manpages.debian.org/testing/seetxt/seeman.1.en.html | |
touch ~/seefilelist | |
touch ~/seedata | |
if [ ! -f ~/.seeconfig ]; then | |
echo "text font: helvetica 12" >> ~/.seeconfig | |
echo "filelist: /home/$USER/seefilelist" >> ~/.seeconfig | |
echo "seedata: /home/$USER/seedata" >> ~/.seeconfig | |
echo "dimensions: 900 600" >> ~/.seeconfig | |
fi | |
ls -l ~/.seeconfig | |
cat ~/.seeconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By the way, macos for many years had a similar gui man-page viewer called manopen. It has been resurected recently, and even runs on apple-silicon at https://github.com/nickzman/ManOpen