Created
May 24, 2013 12:50
-
-
Save danr/5643283 to your computer and use it in GitHub Desktop.
Generate xmodmap files by specifying all modifiers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- runghc Unigen.hs ∣ xmodmap - | |
module Main where | |
import Data.Char | |
import Numeric | |
import Data.List | |
type Mod = (Int,Char,Char,Char,Char) | |
rows :: [Mod] | |
rows = concat | |
[ zip5 [10..19] | |
"1234567890" | |
"!@#$%^&*()" | |
"₁₂₃₄₅₆₇₈₉₀" | |
"¹²³⁴⁵⁶⁷⁸⁹⁰" | |
, zip5 [24..35] | |
"',.pyfgcrl/=" | |
"\"<>PYFGCRL?+" | |
"′⟨⟩≗∧∀γ →λ≟≡" | |
"″≤≥Π Γ ρ∣∅⁺" | |
, zip5 [38..49] | |
"aoeuidhtns-" | |
"AOEUIDHTNS_" | |
"åäöε∈δ ⊤≢σ⊖" | |
"ÅÄÖ Δ Σ⁻" | |
, zip5 [52..61] | |
";qjkxbmwvz" | |
":QJKXBMWVZ" | |
"α∎∘∙∃β⊥ ∨ " | |
"∷ " | |
] ++ | |
[ mk 20 "[{⟦⟦" | |
, mk 21 "]}⟧ " | |
, mk 51 "\\∣λ " | |
] | |
mk :: Int -> String -> Mod | |
mk x [a,b,c,d] = (x,a,b,c,d) | |
mk x s = error $ show x ++ " should be associated with four characters, not " ++ show s | |
main :: IO () | |
main = putStrLn (concatMap make rows) | |
make :: Mod -> String | |
make (n,a,b,c,d) = | |
unwords ("!":map return abcd) ++ "\n" ++ | |
"keycode " ++ show n ++ " = " ++ unwords (map sh abcd) ++ "\n" | |
where | |
abcd = [a,b,c,d] | |
sh :: Char -> String | |
sh c | |
| isAsciiLower c || isAsciiUpper c = [c] | |
| otherwise = 'U':map toUpper (showHex (ord c) "") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment