aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--dependencies.txt5
-rwxr-xr-xdwmo/config.def.h2
-rwxr-xr-xinstall.sh3
4 files changed, 9 insertions, 7 deletions
diff --git a/README.md b/README.md
index 3666e08..3662cf8 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,12 @@
# Open Suck
+**Latest changes based off OpenBSD 7.5**
+
Lightweight Desktop installer for OpenBSD based on the suckless philosophy.
Includes my own custom set of suckless tools (dwm, slstatus, dmenu, etc.)
![Screenshot of dwm running on
-OpenBSD](/screenshots/open-suck.png)
+OpenBSD](/screenshots/open-suck-75.png)
Successfully installed on:
@@ -18,10 +20,12 @@ Successfully installed on:
The Open Suck installer gives you the absolute barebones desktop experience:
- `dwm` for window management
+- `ranger` for your file browser
- `qutebrowser` as your core web browser
- `aerc` for your terminal-based mail client
- `slock` for screen locking
- `scrot`/`slop` for simple screenshot utilities
+- `feh` for your image/file viewing
- `dunst` for notifications
## Downloading
diff --git a/dependencies.txt b/dependencies.txt
index 2bf5c98..637f266 100644
--- a/dependencies.txt
+++ b/dependencies.txt
@@ -1,15 +1,16 @@
-# Based on OpenBSD 7.4
+# Based on OpenBSD 7.5
# Browser
qutebrowser
# Mail
-aerc
+aerc-0.17.0
# Fonts
jetbrains-mono
# Utilities
+ranger
feh
picom
dunst
diff --git a/dwmo/config.def.h b/dwmo/config.def.h
index edb45bf..a87f49a 100755
--- a/dwmo/config.def.h
+++ b/dwmo/config.def.h
@@ -67,7 +67,7 @@ static const Layout layouts[] = {
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
static const char *termcmd[] = { "st", NULL };
-static const char *webcmd[] = { "qutebrowser", NULL };
+static const char *webcmd[] = { "firefox", NULL };
static const char *lockcmd[] = { "slock", NULL };
static const char *brupcmd[] = { "doas", "light", "-A", "10", NULL };
static const char *brdowncmd[] = { "doas", "light", "-U", "10", NULL };
diff --git a/install.sh b/install.sh
index 3333fa3..7a03938 100755
--- a/install.sh
+++ b/install.sh
@@ -35,7 +35,4 @@ rm -rf config.h
make clean install
cd ..
-rcctl enable apmd
-rcctl start apmd
-
echo "Install finished. You should reboot the machine now."