Update 2025-10-16

This commit is contained in:
Kristofers Solo 2025-10-16 18:14:21 +03:00
parent e631a16ebd
commit c962d3140a
Signed by: kristoferssolo
GPG Key ID: 8687F2D3EEE6F0ED
8 changed files with 36 additions and 4 deletions

View File

@ -178,6 +178,8 @@ depends = [ "zsh", "tmux", "fish" ]
[dev.files] [dev.files]
"config/sqruff/" = "~/.config/sqruff/" "config/sqruff/" = "~/.config/sqruff/"
"config/asm-lsp/" = "~/.config/asm-lsp/" "config/asm-lsp/" = "~/.config/asm-lsp/"
"config/containers/" = "~/.config/containers/"
[apps.files] [apps.files]
"config/Vencord/" = "~/.config/Vencord/" "config/Vencord/" = "~/.config/Vencord/"

View File

@ -1,7 +1,7 @@
[default_config] [default_config]
version = "0.10.0" version = "0.10.0"
assembler = "gas" assembler = "gas"
instruction_set = "riscv" instruction_set = "arm"
[default_config.opts] [default_config.opts]
# compiler = "zig" # compiler = "zig"

View File

@ -57,7 +57,7 @@ update_ms = 1000
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", #* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. #* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "cpu lazy" proc_sorting = "cpu direct"
#* Reverse sorting order, True or False. #* Reverse sorting order, True or False.
proc_reversed = False proc_reversed = False

View File

@ -0,0 +1,10 @@
[engine]
cgroup_manager = "cgroupfs"
events_logger = "file"
runtime = "crun"
[network]
network_backend = "cni"
[storage]
driver = "overlay"

View File

@ -6,11 +6,14 @@ typeset -U PATH path
# If you don't plan on reverting to bash, you can remove the link in ~/.profile # If you don't plan on reverting to bash, you can remove the link in ~/.profile
# to clean up. # to clean up.
export BUN_INSTALL="$XDG_DATA_HOME/bun"
# Adds `~/.local/bin` to $PATH # Adds `~/.local/bin` to $PATH
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
export PATH="$PATH:~/.spicetify" export PATH="$PATH:~/.spicetify"
export PATH="$PATH:${$(find ~/.cache/.bun/bin -type d -printf %p:)%%:}" export PATH="$PATH:${$(find ~/.cache/.bun/bin -type d -printf %p:)%%:}"
export PATH="$JAVA_HOME/bin:$PATH" export PATH="$JAVA_HOME/bin:$PATH"
export PATH="$BUN_INSTALL/bin:$PATH"
# Disable files # Disable files
export LESSHISTFILE=- export LESSHISTFILE=-

View File

@ -12,7 +12,7 @@
"spacing": 0, // Gaps between modules (4px) "spacing": 0, // Gaps between modules (4px)
// Choose the order of the modules // Choose the order of the modules
"modules-left": [ "modules-left": [
"wlr/taskbar" "cffi/niri-taskbar"
], ],
"modules-center": [], "modules-center": [],
"modules-right": [ "modules-right": [
@ -57,6 +57,16 @@
"on-click-middle": "close", "on-click-middle": "close",
"on-click-right": "fullscreen" "on-click-right": "fullscreen"
}, },
"cffi/niri-taskbar": {
"module_path": "/usr/lib/waybar/libniri_taskbar.so",
// "all-outputs": true,
// "format": "{icon} {title} {app_id}",
"format": "{icon}",
"tooltip-format": "{title} | {app_id}",
"on-click": "activate",
"on-click-middle": "close",
"on-click-right": "fullscreen"
},
"keyboard-state": { "keyboard-state": {
"numlock": true, "numlock": true,
"capslock": true, "capslock": true,

View File

@ -665,7 +665,6 @@ _bun_test_completion() {
'--timeout[Set the per-test timeout in milliseconds, default is 5000.]:timeout' \ '--timeout[Set the per-test timeout in milliseconds, default is 5000.]:timeout' \
'--update-snapshots[Update snapshot files]' \ '--update-snapshots[Update snapshot files]' \
'--rerun-each[Re-run each test file <NUMBER> times, helps catch certain bugs]:rerun' \ '--rerun-each[Re-run each test file <NUMBER> times, helps catch certain bugs]:rerun' \
'--only[Only run tests that are marked with "test.only()"]' \
'--todo[Include tests that are marked with "test.todo()"]' \ '--todo[Include tests that are marked with "test.todo()"]' \
'--coverage[Generate a coverage profile]' \ '--coverage[Generate a coverage profile]' \
'--bail[Exit the test suite after <NUMBER> failures. If you do not specify a number, it defaults to 1.]:bail' \ '--bail[Exit the test suite after <NUMBER> failures. If you do not specify a number, it defaults to 1.]:bail' \

8
local/bin/podman-cleanup Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
if command -v podman >/dev/null; then
export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-/run/user/$(id -u)}"
podman --runtime-flag timeout=5s stop --all 2>/dev/null || true
podman --runtime-flag timeout=5s rm --all --force 2>/dev/null || true
rm -rf "${XDG_RUNTIME_DIR}/libpod" "${XDG_RUNTIME_DIR}/containers" 2>/dev/null || true
fi