My scripts for startup, dmenu, and the command line
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pages 189 B

1234567891011121314151617
  1. #!/bin/sh
  2. pager() {
  3. # st -e tail -F -n +1 "/tmp/pages-$1"
  4. st -e less "/tmp/pages-$1"
  5. }
  6. pdf() {
  7. st -e zathura "/tmp/pages-$1"
  8. }
  9. case $1 in
  10. pager) pager "$2";;
  11. pdf) pdf "$2";;
  12. esac