This change updates src/Xmobar/X11/Draw.hs to make the border-drawing case analysis formally exhaustive by adding an explicit unreachable fallback branch. The behavior shouldn't change at runtime under valid inputs, but it removes a compiler warning and makes the intent clearer for future maintenance. Practical effect: cleaner builds with one less warning to sift through.

Add an explicit fallback in X11 border drawing to silence a non-exhaustive pattern warning in Draw.hs. - zhengqunkoo/xmobar