Updates prior to system reset

This commit is contained in:
Ezri Brimhall 2025-03-28 10:53:56 -06:00
parent 83acf4ce98
commit 4d1c411870
Signed by: ezri
GPG Key ID: 058A78E5680C6F24
8 changed files with 30 additions and 35 deletions

View File

@ -43,19 +43,19 @@ render_timer = false
size = 9
[font.bold]
family = "JetBrainsMono Nerd Font"
family = "JetBrains Mono"
style = "Bold"
[font.bold_italic]
family = "JetBrainsMono Nerd Font"
family = "JetBrains Mono"
style = "Semibold Italic"
[font.italic]
family = "JetBrainsMono Nerd Font"
family = "JetBrains Mono"
style = "Italic"
[font.normal]
family = "JetBrainsMono Nerd Font"
family = "JetBrains Mono"
style = "Regular"
[window]

View File

@ -100,7 +100,7 @@ while True:
"sensors": {chip: sensor(chip) for chip in sensor_list},
"memory": memory(),
"swap": swap(),
"reboot": reboot(),
# "reboot": reboot(),
"hostname": machine_info.get("PRETTY_HOSTNAME"),
}
print(json.dumps(result), flush=True)

View File

@ -5,6 +5,7 @@
Host gitea
Hostname git.ezri.dev
User git
ControlPersist no
Host github
Hostname github.com

View File

@ -16,7 +16,7 @@
},
{
"index": 3,
"name": "documentation",
"name": "internet",
"exec": "firefox",
"args": ["--new-window"],
"environ": {},
@ -295,15 +295,15 @@
"reverse": false
},
"left": {
"workspaces": [6, 2, 3, 4, 5],
"workspaces": [6, 2, 3, 18, 5],
"reverse": true
},
"center": {
"workspaces": [1, 7, 8, 9, 10, 11, 12, 13, 14, 15],
"workspaces": [1, 7, 8, 9, 10, 11, 12, 4, 14, 15],
"reverse": false
},
"right": {
"workspaces": [16, 17, 19, 18, 20, 13],
"workspaces": [16, 17, 19, 13, 20],
"reverse": false
}
}

View File

@ -1,20 +0,0 @@
[Unit]
Description=Emacs text editor
Documentation=info:emacs man:emacs(1) https://gnu.org/software/emacs/
PartOf=graphical-session.target
[Service]
Type=forking
ExecStart=/usr/bin/emacs --daemon
ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)"
Environment=SSH_AUTH_SOCK=/run/user/1000/gnupg/S.gpg-agent.ssh
Environment=ASDF_DATA_DIR=/home/ezri/.local/share/asdf-vm
Restart=on-failure
Slice=session.slice
MemoryAccounting=yes
# Tide eats memory like crazy, so lets put it on a diet.
MemoryHigh=8G
MemoryMax=10G
[Install]
WantedBy=graphical-session.target

View File

@ -1,5 +1,7 @@
config:
vars:
battery: BAT1
slack:
team: E080NNY25MX
import:
- local.yml
- outputs.yml

View File

@ -16,7 +16,7 @@ function docker() {
# Wrapper for docker command that executes it inside the systemd-nspawn docker container
# This container has our home directory bound, so we should cd to the current directory before running this command
ssh -t dockerbox "cd $(pwd); /usr/bin/docker $*"
ssh -t dockerbox "env ORIGINALWD=\"$(pwd)\" ~/.local/bin/dockerbox.sh $*"
}
function random-xkcd() {

View File

@ -131,6 +131,18 @@ Indent using tabs, render with tab-width of 2.
;; make buffer read-only
(read-only-mode)))
#+END_SRC
** IRC
*** Default Configuration
#+BEGIN_SRC emacs-lisp
(setopt rcirc-default-nick "netsorc")
(setopt rcirc-default-full-name "Networking Sorceress")
(setopt rcirc-authinfo
`(("irc.libera.chat" nickserv "netsorc" ,(secrets-get-secret "Default keyring" "libera.chat"))))
#+END_SRC
* Theming
** Highlight current line
#+BEGIN_SRC emacs-lisp
@ -566,7 +578,7 @@ Indent using tabs, render with tab-width of 2.
* Development
** Copilot
#+BEGIN_SRC emacs-lisp
#+BEGIN_SRC disabled
;; Ensure dependencies are installed
(use-package editorconfig
:ensure t)