DMenu
From Manjaro
Views
Actions
Namespaces
Variants
Tools
Overview
dmenu is a dynamic menu for X, originally designed for dwm. It manages large numbers of user-defined menu items efficiently.
İpuçları ve Püf Noktaları
warning: no locale support
Sometimes for no apparent reason users face the following dmenu problem:
A. Ortamlarındaki bir tuş bağlamasından dmenu çağrıldığında dmenu çıkıyor ancak dmenu'de herhangi bir şey seçmeye devam ettiklerinde ekrandan kayboluyor ve hiçbir şey yürütmüyor. B. Terminalden dmenu'yu başlatmaya çalışırken, "uyarı: yerel ayar desteği yok" hatası görünüyor.
Assuming that you have correctly set up your system's LOCALE settings, here is a simple solution to this problem:
Edit file /usr/bin/dmenu_run and add a line setting your LANG variable to your actual language locale before the line that calls dmenu:
#!/bin/sh LANG="en_GB.UTF-8" <-- Change it according to your locale. dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"}