2020-08-17 18:40:43 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | rofi-autorandr - a rofi prompt to select autorandr profiles
|
|
|
|
--
|
|
|
|
-- Simple wrapper to select an autorandr profile.
|
|
|
|
|
|
|
|
|
|
|
|
module Main (main) where
|
|
|
|
|
|
|
|
import Control.Monad
|
|
|
|
|
|
|
|
import Data.Maybe
|
|
|
|
|
|
|
|
import Rofi.Command
|
|
|
|
|
|
|
|
import System.Directory
|
|
|
|
import System.Environment
|
|
|
|
import System.Exit
|
|
|
|
import System.FilePath.Posix
|
|
|
|
import System.Process
|
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = runChecks >> getArgs >>= runPrompt
|
|
|
|
|
|
|
|
-- TOOD not DRY
|
|
|
|
runChecks :: IO ()
|
|
|
|
runChecks = checkExe "autorandr" >> checkExe "rofi"
|
|
|
|
|
|
|
|
checkExe :: String -> IO ()
|
|
|
|
checkExe cmd = do
|
|
|
|
res <- findExecutable cmd
|
|
|
|
unless (isJust res) $ do
|
|
|
|
putStrLn $ "Could not find executable: " ++ cmd
|
|
|
|
exitWith $ ExitFailure 1
|
|
|
|
|
|
|
|
newtype ARClientConf = ARClientConf [String]
|
|
|
|
|
|
|
|
instance RofiConf ARClientConf where
|
|
|
|
defArgs (ARClientConf a) = a
|
|
|
|
|
|
|
|
runPrompt :: [String] -> IO ()
|
|
|
|
runPrompt a = do
|
|
|
|
let c = ARClientConf a
|
2021-06-25 00:04:50 -04:00
|
|
|
staticProfs <- getAutoRandrProfiles
|
2020-08-17 18:40:43 -04:00
|
|
|
runRofiIO c $ selectAction $ emptyMenu
|
2021-06-25 00:04:50 -04:00
|
|
|
{ groups = [mkGroup "Static" staticProfs, mkGroup "Virtual" virtProfs]
|
2020-08-17 18:40:43 -04:00
|
|
|
, prompt = Just "Select Profile"
|
|
|
|
}
|
2021-06-25 00:04:50 -04:00
|
|
|
where
|
|
|
|
mkGroup header = titledGroup header . toRofiActions
|
|
|
|
. fmap (\s -> (" " ++ s, selectProfile s))
|
|
|
|
|
|
|
|
virtProfs :: [String]
|
|
|
|
virtProfs = ["off", "common", "clone-largest", "horizontal", "vertical"]
|
2020-08-17 18:40:43 -04:00
|
|
|
|
|
|
|
-- TODO filter profiles based on which xrandr outputs are actually connected
|
|
|
|
getAutoRandrProfiles :: IO [String]
|
|
|
|
getAutoRandrProfiles = do
|
|
|
|
dir <- getAutoRandrDir
|
|
|
|
contents <- listDirectory dir
|
|
|
|
filterM (doesDirectoryExist . (dir </>)) contents
|
|
|
|
|
|
|
|
getAutoRandrDir :: IO String
|
|
|
|
getAutoRandrDir = do
|
2021-06-25 00:04:50 -04:00
|
|
|
c <- getXdgDirectory XdgConfig "autorandr"
|
|
|
|
e <- doesDirectoryExist c
|
|
|
|
if e then return c else appendToHome ".autorandr"
|
2020-08-17 18:40:43 -04:00
|
|
|
where
|
|
|
|
appendToHome p = (</> p) <$> getHomeDirectory
|
|
|
|
|
|
|
|
selectProfile :: String -> RofiIO ARClientConf ()
|
|
|
|
selectProfile name = do
|
|
|
|
io $ putStrLn name
|
|
|
|
io $ void $ spawnProcess "autorandr" ["--change", name]
|