diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-03-31 16:01:35 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-03-31 16:01:35 +0530 |
commit | c602c5f03b041aa77fb0a7247e7086492b22e9f3 (patch) | |
tree | 4207a69b5e14458e0371a4ff379f815a3eddb334 | |
parent | e1842e05f3cf1c0f1fed6beef4cc42080ab09d1e (diff) |
added keepass and arandr menu items
-rw-r--r-- | .config/XMonad/lib/TreeSelect.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/XMonad/lib/TreeSelect.hs b/.config/XMonad/lib/TreeSelect.hs index 803789f..1fb49dc 100644 --- a/.config/XMonad/lib/TreeSelect.hs +++ b/.config/XMonad/lib/TreeSelect.hs @@ -45,12 +45,14 @@ myUtilTS :: Forest (TSNode (X ())) myUtilTS = [ Node (TSNode "File Manager" "" (spawn myFileManager)) [] , Node (TSNode "Volume Control" "pavucontrol" (spawn "pavucontrol")) [] + , Node (TSNode "Password Manager" "keepassxc" (spawn myPasswordManager)) [] , Node (TSNode "Cloud" "Nextcloud" (spawn $ myBrowser ++ " " ++ myCloud)) [] , Node (TSNode "Calculator" "" (spawn myCalculator)) [] , Node (TSNode "Screenshot" "" (spawn fullScreenshot)) [] , Node (TSNode "Torrent" "" (spawn myTorrentClient)) [] , Node (TSNode "Email Client" "" (spawn myEmailClient)) [] , Node (TSNode "Screen Recorder" "OBS" (spawn "obs-studio")) [] + , Node (TSNode "Display Setup" "" (spawn myDisplayMenu)) [] , Node (TSNode "Wallpapers" "" (spawn myWallpaperMenu)) [] , Node (TSNode "Google Docs" "" (spawn $ myBrowser ++ " https://docs.google.com")) [] , Node (TSNode "Google Sheets" "" (spawn $ myBrowser ++ " https://sheets.google.com")) [] |