From 403c8d6e24df41f4f7129d1187b8f2a471284c80 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 1 May 2020 23:44:36 -0400 Subject: [PATCH] REF add descriptive comments --- app/rofi-bitwarden.hs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/rofi-bitwarden.hs b/app/rofi-bitwarden.hs index a213e86..07f0c7a 100644 --- a/app/rofi-bitwarden.hs +++ b/app/rofi-bitwarden.hs @@ -2,6 +2,19 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TupleSections #-} +-------------------------------------------------------------------------------- +-- | rofi-bw - a rofi prompt for a bitwarden vault +-- +-- This is basically a wrapper around the 'bw' command, which is assumed to be +-- properly configured before running this command. This shows a system of +-- menus that allows easy lookup of data associated with a vault entry. For now +-- only lookups (no edits or creation) are supported, and only logins can be +-- searched. Any searched entry can be copied to the clipboard +-- +-- In order to manage the session keys, this utility is split into a daemon and +-- client (the former holds the session keys between calls with the latter). +-- They communicate via dbus. + module Main (main) where import Control.Concurrent