From d26642e94909a532ff2459f01a4ce22c23276cdc Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 4 Mar 2026 08:26:03 -0800 Subject: [PATCH] stoof --- .config/doom/init.el | 2 +- .config/niri/config.kdl | 4 ++++ .config/zsh/.zshrc | 4 ++++ .local/bin/start-keyring.sh | 4 ++++ 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .local/bin/start-keyring.sh diff --git a/.config/doom/init.el b/.config/doom/init.el index 732f13e..d462266 100644 --- a/.config/doom/init.el +++ b/.config/doom/init.el @@ -125,7 +125,7 @@ ;;fsharp ; ML stands for Microsoft's Language ;;fstar ; (dependent) types and (monadic) effects and Z3 ;;gdscript ; the language you waited for - ;;(go +lsp) ; the hipster dialect + (go +lsp) ; the hipster dialect ;;(haskell +lsp) ; a language that's lazier than I am ;;hy ; readability of scheme w/ speed of python ;;idris ; a language you can depend on diff --git a/.config/niri/config.kdl b/.config/niri/config.kdl index a3e8814..af093ac 100644 --- a/.config/niri/config.kdl +++ b/.config/niri/config.kdl @@ -277,6 +277,8 @@ layout { // which may be more convenient to use. // See the binds section below for more spawn examples. +spawn-at-startup "bash" "~/.local/bin/start-keyring.sh" + // This line starts waybar, a commonly used bar for Wayland compositors. // spawn-at-startup "waybar" @@ -615,3 +617,5 @@ binds { // moving the mouse or pressing any other key. Mod+Shift+P { power-off-monitors; } } + +include "dms/outputs.kdl" diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 7a4e929..b064739 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -173,3 +173,7 @@ keys apply() { (cd ~/Code/arch-ansible && ansible-playbook -i inventory/hosts.yml site.yml -K "$@") } + +apply-aur() { + (cd ~/Code/arch-ansible/scripts && bash aur-pkg-install.sh) +} diff --git a/.local/bin/start-keyring.sh b/.local/bin/start-keyring.sh new file mode 100644 index 0000000..40532a9 --- /dev/null +++ b/.local/bin/start-keyring.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# ~/.local/bin/start-keyring.sh +eval $(gnome-keyring-daemon --start --components=secrets) +export GNOME_KEYRING_CONTROL