2024-08-11 00:52:46 +08:00
|
|
|
function __fish_complete_freedesktop_icons -d 'List installed icon names according to `https://specifications.freedesktop.org/icon-theme-spec/0.13/`'
|
|
|
|
# The latest `icon-theme-spec` as of 2024-08-10 is 0.13
|
|
|
|
# https://specifications.freedesktop.org/icon-theme-spec/latest/
|
|
|
|
# https://specifications.freedesktop.org/icon-theme-spec/0.13/#directory_layout
|
|
|
|
# 1. $HOME/.icons
|
|
|
|
# 2. $XDG_DATA_DIRS/icons
|
|
|
|
# 3. /usr/share/pixmaps
|
2024-08-18 18:22:39 +08:00
|
|
|
set -l dirs (path filter -rd -- ~/.icons $XDG_DATA_DIRS/icons /usr/share/pixmaps)
|
2024-08-11 00:52:46 +08:00
|
|
|
|
2024-08-18 18:22:39 +08:00
|
|
|
# https://specifications.freedesktop.org/icon-theme-spec/0.13/#definitions
|
|
|
|
# .png, .svg and .xpm are valid icon file formats
|
|
|
|
path filter -rf -- $dirs/**/*.{png,svg,xpm} \
|
2024-08-11 00:52:46 +08:00
|
|
|
| path basename \
|
2024-08-18 18:22:39 +08:00
|
|
|
| path change-extension ''
|
2024-08-11 00:52:46 +08:00
|
|
|
end
|