Sono nuovo su Xmonad (l'ho appena installato ieri) e dato che non ho mai usato haskell prima, ho trovato la configurazione un po 'confusa per me. Ho fatto funzionare in qualche modo xmobar e trayer, ma non ho idea di come potrei creare tasti multimediali per regolare il volume. Qualcuno può aiutare con quello?
Domanda aggiuntiva: come si gestisce il volume in xmonad. Usi l'icona della barra delle applicazioni o altre cose del genere?
Ecco la mia configurazione di xmonad:
import XMonad
import XMonad.Hooks.DynamicLog
import XMonad.Hooks.ManageDocks
import XMonad.Util.EZConfig(additionalKeys)
import System.IO
main = xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
-- Command to launch the bar
myBar = "xmobar"
-- Custom PP, it determines what is written to the bar
myPP = xmobarPP { ppCurrent = xmobarColor "#429942" "" . wrap "<" ">" }
-- Key bindings to toggle the gap for the bar
toggleStrutKey XConfig {XMonad.modMask = modMask} = (modMask, xK_b)
myConfig = defaultConfig {
manageHook = manageDocks <+> manageHook defaultConfig,
layoutHook = avoidStruts $ layoutHook defaultConfig,
modMask = mod4Mask -- Rebind Mod to windows key
} `additionalKeys`
[ ((mod4Mask .|. shiftMask, xK_z), spawn "xscreensaver-command -lock")
]