From ebbb2a714d1bee2fbf73f9e47697959746518877 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sat, 2 May 2020 00:13:33 -0400 Subject: [PATCH] FIX command typo --- app/rofi-devices.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/rofi-devices.hs b/app/rofi-devices.hs index 5fbf2bd..9ba2677 100644 --- a/app/rofi-devices.hs +++ b/app/rofi-devices.hs @@ -185,7 +185,7 @@ data Removable = Removable instance Mountable Removable where mount Removable { deviceSpec = d, label = l } m = - io $ runMountNotify "mount" [c, "-b", d] l m + io $ runMountNotify "udisksctl" [c, "-b", d] l m where c = if m then "unmount" else "mount"