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 size = 9
[font.bold] [font.bold]
family = "JetBrainsMono Nerd Font" family = "JetBrains Mono"
style = "Bold" style = "Bold"
[font.bold_italic] [font.bold_italic]
family = "JetBrainsMono Nerd Font" family = "JetBrains Mono"
style = "Semibold Italic" style = "Semibold Italic"
[font.italic] [font.italic]
family = "JetBrainsMono Nerd Font" family = "JetBrains Mono"
style = "Italic" style = "Italic"
[font.normal] [font.normal]
family = "JetBrainsMono Nerd Font" family = "JetBrains Mono"
style = "Regular" style = "Regular"
[window] [window]

View File

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

View File

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

View File

@ -16,7 +16,7 @@
}, },
{ {
"index": 3, "index": 3,
"name": "documentation", "name": "internet",
"exec": "firefox", "exec": "firefox",
"args": ["--new-window"], "args": ["--new-window"],
"environ": {}, "environ": {},
@ -295,15 +295,15 @@
"reverse": false "reverse": false
}, },
"left": { "left": {
"workspaces": [6, 2, 3, 4, 5], "workspaces": [6, 2, 3, 18, 5],
"reverse": true "reverse": true
}, },
"center": { "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 "reverse": false
}, },
"right": { "right": {
"workspaces": [16, 17, 19, 18, 20, 13], "workspaces": [16, 17, 19, 13, 20],
"reverse": false "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 battery: BAT1
slack:
team: E080NNY25MX
import: import:
- local.yml - local.yml
- outputs.yml - outputs.yml

View File

@ -16,7 +16,7 @@ function docker() {
# Wrapper for docker command that executes it inside the systemd-nspawn docker container # 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 # 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() { function random-xkcd() {

View File

@ -131,6 +131,18 @@ Indent using tabs, render with tab-width of 2.
;; make buffer read-only ;; make buffer read-only
(read-only-mode))) (read-only-mode)))
#+END_SRC #+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 * Theming
** Highlight current line ** Highlight current line
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -566,7 +578,7 @@ Indent using tabs, render with tab-width of 2.
* Development * Development
** Copilot ** Copilot
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC disabled
;; Ensure dependencies are installed ;; Ensure dependencies are installed
(use-package editorconfig (use-package editorconfig
:ensure t) :ensure t)