From b33b58db254e3701c53765cc11fff8aa995aa3c1 Mon Sep 17 00:00:00 2001 From: Soccera1 <129828376+Soccera1@users.noreply.github.com> Date: Wed, 28 May 2025 12:48:53 +1000 Subject: Add FreeBSD installation instructions --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 4cc6100..a414fb6 100644 --- a/README.md +++ b/README.md @@ -226,6 +226,13 @@ sudo nixos-rebuild switch slackpkg install gcc make libX11 libXinerama +
+FreeBSD +
# If you use doas or su instead of sudo, modify the following commands accordingly.
+sudo pkg update
+sudo pkg install gcc gmake libX11 libXinerama
+
+ --- ## Build & Install @@ -241,6 +248,7 @@ yay -S sxwm ```sh git clone --depth=1 https://github.com/uint23/sxwm.git cd sxwm/ +# Replace make with gmake on FreeBSD make sudo make clean install ``` -- cgit v1.2.3 From bcb860b6660663ba5155debeb92f0d1e6a452eb8 Mon Sep 17 00:00:00 2001 From: pb <467756+pbadeer@users.noreply.github.com> Date: Wed, 28 May 2025 17:20:43 -0500 Subject: Add missing dependency to ubuntu install instructions Without this, I'm getting a fatal error when running `make`. Afterwards it succeeded. Tested on debian src/sxwm.c:33:10 `#include ` No such file or directory. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 4cc6100..d7c3553 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ bind : mod + shift + 5 : moveto_ws5
Debian / Ubuntu / Linux Mint
sudo apt update
-sudo apt install libx11-dev libxinerama-dev build-essential
+sudo apt install libx11-dev libxcursor-dev libxinerama-dev build-essential
-- cgit v1.2.3