Skip to content

Commit e74c63a

Browse files
committed
feat: add icons for some desktop environments
Fix #432
1 parent 8eb9ddc commit e74c63a

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

lua/nvim-web-devicons/icons-default.lua

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2827,8 +2827,48 @@ local icons_by_operating_system = {
28272827
},
28282828
}
28292829

2830+
local icons_by_desktop_environment = {
2831+
["cinnamon"] = {
2832+
icon = "",
2833+
color = "#dc682e",
2834+
cterm_color = "166",
2835+
name = "Cinnamon",
2836+
},
2837+
["gnome"] = {
2838+
icon = "",
2839+
color = "#000000",
2840+
cterm_color = "16",
2841+
name = "GNOME",
2842+
},
2843+
["lxde"] = {
2844+
icon = "",
2845+
color = "#a4a4a4",
2846+
cterm_color = "248",
2847+
name = "LXDE",
2848+
},
2849+
["lxqt"] = {
2850+
icon = "",
2851+
color = "#0191d2",
2852+
cterm_color = "32",
2853+
name = "LXQt",
2854+
},
2855+
["mate"] = {
2856+
icon = "",
2857+
color = "#9bda5c",
2858+
cterm_color = "113",
2859+
name = "MATE",
2860+
},
2861+
["xfce"] = {
2862+
icon = "",
2863+
color = "#00aadf",
2864+
cterm_color = "74",
2865+
name = "Xfce",
2866+
},
2867+
}
2868+
28302869
return {
28312870
icons_by_filename = icons_by_filename,
28322871
icons_by_file_extension = icons_by_file_extension,
28332872
icons_by_operating_system = icons_by_operating_system,
2873+
icons_by_desktop_environment = icons_by_desktop_environment,
28342874
}

0 commit comments

Comments
 (0)