From c5802cbd7c7276e22b1016318da2d98c79a3e8e0 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Fri, 13 Jan 2023 17:24:34 -0500 Subject: get xmonad working on openbsd --- dot_xmonad/executable_build | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dot_xmonad/executable_build (limited to 'dot_xmonad/executable_build') diff --git a/dot_xmonad/executable_build b/dot_xmonad/executable_build new file mode 100644 index 0000000..fa37a66 --- /dev/null +++ b/dot_xmonad/executable_build @@ -0,0 +1,13 @@ +#!/bin/ksh -eu + +output_file="${1}" + +if [ "${output_file}" -nt xmonad.hs ] && [ "${output_file}" -nt /usr/local/bin/xmonad ]; then + echo "${output_file}" is newer than xmonad.hs + exit 0 +fi + +cabal v2-install exe:xmonad-config --overwrite-policy=always --install-method=copy + +[ -e "${output_file}" ] && mv -f "${output_file}" "${output_file}.old" +install "${HOME}/.cabal/bin/xmonad-config" "${output_file}" -- cgit v1.2.3