summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Minar <miminar@redhat.com>2016-04-02 11:45:37 +0200
committerMichal Minar <miminar@redhat.com>2016-04-02 11:45:37 +0200
commit14819f733caaabe577e6e29d1d7674adbe3fcdfc (patch)
tree6d0089764592e5a9ab4055cd8f7f2133d22c146d
parent43de0141ccd4867dc70bf0c5030aeeae942da296 (diff)
downloadxminad-14819f733caaabe577e6e29d1d7674adbe3fcdfc.tar.gz
xminad-14819f733caaabe577e6e29d1d7674adbe3fcdfc.tar.xz
xminad-14819f733caaabe577e6e29d1d7674adbe3fcdfc.zip
Exchanged Empathy for Skype
Also pruned topic space entries. Added osdocs topic for editing openshift-docs. Signed-off-by: Michal Minar <miminar@redhat.com>
-rw-r--r--src/XMonad/Local/Layout.hs3
-rw-r--r--src/XMonad/Local/TopicSpace.hs29
2 files changed, 6 insertions, 26 deletions
diff --git a/src/XMonad/Local/Layout.hs b/src/XMonad/Local/Layout.hs
index 4b3d789..0747ec0 100644
--- a/src/XMonad/Local/Layout.hs
+++ b/src/XMonad/Local/Layout.hs
@@ -63,8 +63,7 @@ chatL = IM.withIM (1%5) (IM.ClassName "Skype"
`IM.And` ( IM.Title "minarmc - Skype™ (Beta)"
`IM.Or` IM.Title "Skype™ 2.2 (Beta) for Linux"
`IM.Or` IM.Title "minarmc - Skype™"))
- $ IM.withIM (1%5) ( IM.ClassName "Empathy"
- `IM.And` (IM.Title "Contact List" `IM.Or` IM.Role "contact_list"))
+ $ IM.withIM (1%5) (IM.ClassName "Pidgin" `IM.And` IM.Role "buddy_list")
easyLay
gimpL = LN.named "GIMP"
diff --git a/src/XMonad/Local/TopicSpace.hs b/src/XMonad/Local/TopicSpace.hs
index cfc2c5c..761038c 100644
--- a/src/XMonad/Local/TopicSpace.hs
+++ b/src/XMonad/Local/TopicSpace.hs
@@ -16,29 +16,21 @@ topicDirs = M.fromList $
[ ("dashboard" , "~")
, ("xmonad" , "~/wsp/my/xminad")
, ("xminad" , "~/wsp/my/xminad")
- , ("video" , "~/Documents/movies")
+ , ("video" , "~/Videos")
, ("docs" , "~/Documents/doc")
, ("pdf" , "~/Documents")
, ("graphics" , "~")
, ("gimp" , "~")
- , ("eclipse" , "~/workspace")
- , ("yawn" , "~/wsp/rh/pywbem-yawn")
- , ("openlmi" , "~/wsp/rh/openlmi-providers")
- , ("cim" , "/usr/share/mof/cim-current")
, ("hwdata" , "~/wsp/rh/hwdata")
, ("hdparm" , "~/fedora-scm/hdparm")
- , ("providers" , "~/wsp/rh/openlmi-providers")
, ("scripts" , "~/wsp/rh/openlmi-scripts")
, ("tools" , "~/wsp/rh/openlmi-tools")
, ("rhel" , "~/rhel-scm")
, ("fedora" , "~/fedora-scm")
, ("docker" , "~/wsp/rh/docker")
, ("distribution", "~/wsp/rh/distribution")
- , ("ae" , "~/wsp/rh/atomic-enterprise")
- , ("aet" , "~/wsp/rh/atomic-enterprise-training")
- , ("aea" , "~/wsp/rh/atomic-enterprise-ansible")
- , ("aes" , "~/wsp/rh/ae-scripts")
, ("openshift" , "~/wsp/rh/openshift-origin")
+ , ("osdocs" , "~/wsp/rh/openshift-docs")
, ("k8s" , "~/wsp/rh/kubernetes")
] ++ map (\w -> (w, "~"))
[ "music", "p2p", "gimp", "graphics"
@@ -56,24 +48,13 @@ topicConfig = TS.def
, ("opera", spawn "opera")
, ("pdf", spawn "atril")
, ("chat",
- spawn "empathy" >>
+ spawn "pidgin" >>
spawn "skype" >>
spawnShell (Just "mux start irssi"))
- , ("admin", spawnShell Nothing >> spawnShell Nothing)
- , ("virt", spawn "virt-manager")
, ("vbox", spawn "VirtualBox")
, ("gimp", spawn "gimp")
- , ("eclipse", spawn "eclipse")
, ("ebook", spawn "calibre")
- , ("video", spawn "vlc")
- , ("xmonad", spawnShell Nothing >> spawnShell Nothing)
- , ("xminad", spawnShell Nothing >> spawnShell Nothing)
- , ("remote", spawnShell Nothing >> spawnShell Nothing)
- , ("devel", spawnShell Nothing >> spawnShell Nothing)
- , ("openlmi", spawnShell Nothing >> spawnShell Nothing)
- , ("providers", spawnShell Nothing >> spawnShell Nothing)
- , ("cim", spawnShell Nothing >>
- spawnShellIn "/usr/lib/python2.7/site-packages/pywbem" Nothing)
+ , ("video", spawn "smplayer")
, ("bank", spawn "google-chrome https://www.mojebanka.cz/InternetBanking/")
, ("p2p", spawn "deluge-gtk")
, ("hwdata",
@@ -114,7 +95,7 @@ topicConfig = TS.def
spawn ("google-chrome-stable --profile-directory=Default" ++
" --app-id=ejjicmeblgpmajnghnpcppodonldlgfn"))
] ++ map (\w -> (w, spawnShell Nothing >> spawnShell Nothing))
- [ "ae", "aet", "aes", "aea" ]
+ [ "osdocs", "xmonad", "xminad", "remote", "devel", "admin" ]
, TS.defaultTopicAction = const $ return ()
, TS.defaultTopic = "dashboard"
}