From 4eb780ece1486d8d9bd1158543d4486764ad1dad Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Fri, 29 May 2020 17:14:32 +0200 Subject: [PATCH] Update --- xmonad.hs | 10 +++++----- xpm/calendar-clock-icon_20.xpm | 25 +++++++++++++++++++++++++ xpm/cpu_20.xpm | 25 +++++++++++++++++++++++++ xpm/harddisk-icon_20.xpm | 25 +++++++++++++++++++++++++ xpm/haskell_20.xpm | 4 ++-- xpm/mail_20.xpm | 25 +++++++++++++++++++++++++ xpm/memory_20.xpm | 25 +++++++++++++++++++++++++ 7 files changed, 132 insertions(+), 7 deletions(-) create mode 100644 xpm/calendar-clock-icon_20.xpm create mode 100644 xpm/cpu_20.xpm create mode 100644 xpm/harddisk-icon_20.xpm create mode 100644 xpm/mail_20.xpm create mode 100644 xpm/memory_20.xpm diff --git a/xmonad.hs b/xmonad.hs index 90d5d3d..688cb19 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -218,11 +218,11 @@ myAdditionalKeys = , ((mod4Mask, xK_F12), spawn "pavolume volup 5") , ((mod4Mask, xK_F10), spawn "pavolume mutetoggle") - -- MPC - , ((mod4Mask .|. mod1Mask, xK_n), spawn "mpc next") - , ((mod4Mask .|. mod1Mask, xK_p), spawn "mpc prev") - , ((mod4Mask .|. mod1Mask, xK_s), spawn "mpc stop") - , ((mod4Mask .|. mod1Mask, xK_space), spawn "mpc pause") + -- Lektord + , ((mod4Mask .|. mod1Mask, xK_n), spawn "lkt next") + , ((mod4Mask .|. mod1Mask, xK_p), spawn "lkt prev") + , ((mod4Mask .|. mod1Mask, xK_s), spawn "lkt stop") + , ((mod4Mask .|. mod1Mask, xK_space), spawn "lkt play") , ((mod4Mask .|. mod1Mask, xK_F11), spawn "mpc volume -5") , ((mod4Mask .|. mod1Mask, xK_F12), spawn "mpc volume +5") diff --git a/xpm/calendar-clock-icon_20.xpm b/xpm/calendar-clock-icon_20.xpm new file mode 100644 index 0000000..01f3b70 --- /dev/null +++ b/xpm/calendar-clock-icon_20.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * calendar_clock_icon_20_xpm[] = { +"20 20 2 1", +" c None", +". c #839496", +" ", +" ", +" ", +" ........ ", +" .. .. ", +" .. . .. ", +" .. . .. ", +" . . . ", +" . . . ", +" . . . ", +" . ...... . ", +" . . ", +" . . ", +" .. .. ", +" .. .. ", +" .. .. ", +" ........ ", +" ", +" ", +" "}; diff --git a/xpm/cpu_20.xpm b/xpm/cpu_20.xpm new file mode 100644 index 0000000..40a1384 --- /dev/null +++ b/xpm/cpu_20.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * cpu_20_xpm[] = { +"20 20 2 1", +" c None", +". c #839496", +" ", +" ", +" ", +" ", +" ................ ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" .. .. ", +" ................ ", +" .............. ", +" .. ", +" ........ ", +" ", +" ", +" ", +" "}; diff --git a/xpm/harddisk-icon_20.xpm b/xpm/harddisk-icon_20.xpm new file mode 100644 index 0000000..52bcee9 --- /dev/null +++ b/xpm/harddisk-icon_20.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * harddisk_icon_20_xpm[] = { +"20 20 2 1", +" c None", +". c #839496", +" ", +" ", +" ", +" ............ ", +" .. .. ", +" . . ", +" . . ", +" . . ", +" .. .. ", +" .. .. ", +" . . ", +" . . ", +" . . ", +" .. .. ", +" ............ ", +" . ... . ", +" ............ ", +" ............ ", +" ", +" "}; diff --git a/xpm/haskell_20.xpm b/xpm/haskell_20.xpm index 0342ac9..3764c1f 100644 --- a/xpm/haskell_20.xpm +++ b/xpm/haskell_20.xpm @@ -1,8 +1,8 @@ /* XPM */ static char * haskell_20_xpm[] = { "20 20 2 1", -" c None", -". c #839496", +" c None", +". c #839496", " ", " ", " ", diff --git a/xpm/mail_20.xpm b/xpm/mail_20.xpm new file mode 100644 index 0000000..6761834 --- /dev/null +++ b/xpm/mail_20.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * haskell_20_xpm[] = { +"20 20 2 1", +" c None", +". c #839496", +" ", +" ", +" ", +"....................", +"....................", +".... ....", +".. .. .. ..", +".. .. .. ..", +".. .. .. ..", +".. .. .. ..", +".. .. .. ..", +".. . .... . ..", +".. . . . ..", +".. . . ..", +".. . . ..", +"... ...", +"....................", +"....................", +" ", +" "}; diff --git a/xpm/memory_20.xpm b/xpm/memory_20.xpm new file mode 100644 index 0000000..fe1c7c4 --- /dev/null +++ b/xpm/memory_20.xpm @@ -0,0 +1,25 @@ +/* XPM */ +static char * memory_icon_20_xpm[] = { +"20 20 2 1", +" c None", +". c #839496", +" ", +" ", +" ", +" ........... ", +" . . ", +" . . . ", +" . . . . . ", +" . .. . .. . ", +" . .. . .. . ", +" . .. . .. . ", +" . . ", +" . . ", +" .. . ", +" . . ", +" . . ", +" . . ", +" ............ ", +" ............ ", +" ", +" "}; -- GitLab