commit 00791f716d79b124588a493dcf56f459a65b2ebb
parent 30ce05915b9158b47c2332c80a8529c2b94d6d01
Author: Andrew Laack <andrew.laack@imbue.com>
Date: Sun, 12 Oct 2025 22:37:24 -0500
Added screen configs, added lock screen, updated installer
Diffstat:
6 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/installers/arch-install.sh b/installers/arch-install.sh
@@ -255,6 +255,19 @@ echo "0 8,16 * * * andrew /home/andrew/bin/backup.sh" | sudo tee -a /etc/crontab
# sudo cp mtm /usr/local/bin
+# SERVER
+yay -S agate
+cd
+mkdir keys/gemini
+agate --content srv/gemini/ \
+ --addr [::]:1965 \
+ --addr 0.0.0.0:1965 \
+ --hostname blog.laack.co \
+ --lang en-U
+cp -r .certificates/* ~/keys/gemini
+
+sudo pacman -S brightnessctl
+
# update man database -- this allows for the
# 'mans' alias to work as expected for fzf w/ man pages.
sudo mandb
diff --git a/lock.sh b/lock.sh
@@ -0,0 +1,2 @@
+#!/bin/bash
+i3lock -c 000000
diff --git a/screens/dual-work.sh b/screens/dual-work.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+xrandr --output eDP-1 --primary --mode 1920x1200 --pos 835x2160 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output DP-3 --mode 3840x2160 --pos 0x0 --rotate normal --output DP-4 --off
diff --git a/screens/laptop.sh b/screens/laptop.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+xrandr --output eDP-1 --primary --mode 1920x1200 --pos 0x0 --rotate normal --output DP-1 --off --output HDMI-1 --off --output DP-2 --off --output DP-3 --off --output DP-4 --off
diff --git a/setScreenX.sh b/screens/setScreenX.sh
diff --git a/vm-full-screen.sh b/screens/vm-full-screen.sh