dwm mutt and unlock-pass
This commit is contained in:
parent
17e1cc8699
commit
65ae518888
2 changed files with 5 additions and 3 deletions
|
@ -58,7 +58,8 @@ static const Layout layouts[] = {
|
|||
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
|
||||
static const char *termcmd[] = { "roxterm", NULL };
|
||||
static const char *webcmd[] = { "firefox", NULL };
|
||||
static const char *mailcmd[] = { "thunderbird", NULL };
|
||||
//static const char *mailcmd[] = { "thunderbird", NULL };
|
||||
static const char *muttcmd[] = {"roxterm", "-e", "mutt", NULL};
|
||||
|
||||
//static const char *lockcmd[] = { "xlock", "-mode", "blank", "-startCmd", "~/Programmation/Utils/monitorOff.sh", "-timeout", "15", "-dpmsoff", "1", NULL };
|
||||
|
||||
|
@ -76,7 +77,8 @@ static Key keys[] = {
|
|||
{ MODKEY|ShiftMask, XK_p, spawn, {.v = dmenucmd } },
|
||||
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
|
||||
{ MODKEY|ShiftMask, XK_f, spawn, {.v = webcmd } },
|
||||
{ MODKEY|ShiftMask, XK_t, spawn, {.v = mailcmd } },
|
||||
// { MODKEY|ShiftMask, XK_t, spawn, {.v = mailcmd } },
|
||||
{ MODKEY|ShiftMask, XK_m, spawn, {.v = muttcmd } },
|
||||
{ MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } },
|
||||
{ MODKEY, XK_b, togglebar, {0} },
|
||||
{ MODKEY, XK_j, focusstack, {.i = +1 } }, /* change window focus */
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
PASS_FILE="/dev/shm/$USER-mutt-pass"
|
||||
ENC_PASS_FILE=~/.mutt/passwords.gpg
|
||||
|
||||
if [ ! -e $PASS_FILE ]; then
|
||||
if [ ! -s $PASS_FILE ]; then
|
||||
umask 077
|
||||
gpg -d $ENC_PASS_FILE > $PASS_FILE
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue