Difference between revisions of "DMenu/tr"
From Manjaro
Views
Actions
Namespaces
Variants
Tools
(Created page with "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ç...") |
(No difference)
|
Revision as of 21:08, 15 April 2024
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"}