Mum will cover that topic.
- Bigger concern than avalanches. Has killed more people.
This is an xkb_symbols option to swap the Pause and Delete keys for the HP Omen 15 2020 keyboard.
Following the instructions here https://unix.stackexchange.com/questions/212573/how-can-i-make-backspace-act-as-escape-using-setxkbmap/215062#215062 I was able to create a new symbol pause (see pause file in this gist), and add it to the evdev and evdev.lst files and then with the following command perform the remap:
setxkbmap -option pause:swapdelete| <!-- Source https://h30434.www3.hp.com/t5/Gaming-Notebooks/OMEN-15-left-fan-always-on-what-is-wrong-with-this-computer/m-p/7954432#M37985 --> | |
| <?xml version="1.0"?> | |
| <FanControlConfigV2 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <NotebookModel>HP OMEN Laptop 15-en0xxx</NotebookModel> | |
| <Author>Generatoz</Author> | |
| <EcPollInterval>500</EcPollInterval> | |
| <ReadWriteWords>false</ReadWriteWords> | |
| <CriticalTemperature>100</CriticalTemperature> | |
| <FanConfigurations> | |
| <FanConfiguration> |
| use serde::{Serialize, Deserialize}; | |
| use std::collections::HashMap; | |
| use core::marker::PhantomData; | |
| #[derive(Serialize, Deserialize, PartialEq, Eq, Copy, Clone, Hash, Debug)] | |
| struct CallbackId(u32); | |
| impl CallbackId { | |
| pub fn none() -> Self { | |
| CallbackId(0) |
| call plug#begin() | |
| Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} " We recommend updating the parsers on update | |
| Plug 'romgrk/nvim-treesitter-context' | |
| " Plug 'vmchale/just-vim' | |
| Plug 'NoahTheDuke/vim-just' | |
| " Collection of common configurations for the Nvim LSP client | |
| Plug 'neovim/nvim-lspconfig' |
Tool to create forecast html to print to PDF and share.
| #!/bin/bash | |
| # Copyright 2023 Luke Frisken | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the “Software”), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is | |
| # furnished to do so, subject to the following conditions: |