This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
llama.cpp b5466 | |
intel-compute-runtime 25.18.33578.6 | |
intel-media-driver 25.2.3 | |
intel-oneapi-basekit 2025.0.1.46 | |
vulkan-intel 1:25.1.1 | |
openblas 0.3.29 | |
gcc 15.1.1+r7+gf36ec88aa85a | |
linux 6.14.9.arch1-1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# See https://wiki.archlinux.org/title/Hdparm#Power_management_configuration | |
# for -B and -S explanations and values | |
for disk in /sys/block/sd*; do | |
disk_name=$(basename "$disk") | |
rotational=$(cat "/sys/block/$disk_name/queue/rotational") | |
if [ "$rotational" -eq 0 ]; then | |
continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Colors from https://catppuccin.com/palette/ */ | |
/* Also see https://github.com/catppuccin/catppuccin/blob/main/docs/style-guide.md */ | |
/* Catppuccin Latte */ | |
:root { | |
--rosewater: #dc8a78; | |
--flamingo: #dd7878; | |
--pink: #ea76cb; | |
--mauve: #8839ef; | |
--red: #d20f39; |