My dmenu build
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

10 行
127 B

  1. #!/bin/sh
  2. IFS=:
  3. for dir in $PATH
  4. do
  5. for file in "$dir"/*
  6. do
  7. test -x "$file" && echo "${file##*/}"
  8. done
  9. done | sort | uniq