summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-07-01updateXiao Pan
2024-07-01commentXiao Pan
2024-07-01no dyafk now, studio no firefoxXiao Pan
2024-07-01typo: use deprecated instead of depreciatedXiao Pan
https://tenthousandfailures.com/blog/2014/3/22/software-deprecate-versus-depreciate
2024-06-26updateXiao Pan
2024-06-19remove some seems useless packages, for nowXiao Pan
2024-06-13updateXiao Pan
2024-06-01fix: make fzf ctrl-t work in symlink dirXiao Pan
2024-06-01htop merge command name and command lineXiao Pan
https://unix.stackexchange.com/a/657002
2024-06-01nvim config to open readonly if file already been openedXiao Pan
2024-06-01nvim new release has my fix, so no need latest version of the pluginXiao Pan
https://github.com/tpope/vim-markdown/commit/f2b82b7884a3d8bde0c5de7793b27e07030eb2bc
2024-06-01vrc statusline show if there is newline at EOFXiao Pan
2024-05-27feat: install browserpassXiao Pan
mobile-config-firefox new version fixed extension window no show bug, now even though phosh keyboard can't output shift, so ctrl-shift-f hotkey not working, but I can still press some buttons to autofill user and password. passff maybe a better choice because it put passff icon near the input box, so easier to press on phone, but I would like to use same add on both computer and phone.
2024-05-23pacdiffXiao Pan
2024-05-14pacdiffXiao Pan
2024-05-05vrc consider studio use headles firefox for douyu afkXiao Pan
2024-05-05similar .bashrc for all computers, easier to cherry-pick with ccpXiao Pan
2024-05-04some programs do not like 4 tab spaces, e.g., fdu, wtr, also pacman warned ↵Xiao Pan
about it
2024-05-04nvim config more universal, so all my computers can have the same configXiao Pan
2024-05-04aur xxd-standalone deleted, switch to official tinyxxd pkgXiao Pan
2024-05-03use remind default time format, because why notXiao Pan
2024-05-02neofetch is archived, switch to fastfetchXiao Pan
2024-05-01sunset kaXiao Pan
2024-05-01sun aliasXiao Pan
2024-04-22new alias sa, add ssh key to agent if not thereXiao Pan
2024-04-21remove ka vpsXiao Pan
2024-04-21only insp install rustup, all others uninstall or rustcXiao Pan
2024-04-20pacdiffXiao Pan
2024-04-17edit init.vim commentsXiao Pan
RRethy/nvim-base16 change name to base16-nvim. I tested markdown treesitter, better but still not good.
2024-04-17nvim customize old theme make fold title higher contrastXiao Pan
I choose to go back to old colorscheme plugin I use and customize it to make fold title higher contrast and more readable. Becase other theme plugins have other issues, so I would rather stick to the old plugin, plus it can be customized easily.
2024-04-17commentXiao Pan
2024-04-17nvim better fold title contrastXiao Pan
2024-04-17alacritty change to correct true old themeXiao Pan
2024-04-17tab show 4 spaces widthXiao Pan
2024-04-17lf change some keybindings to my likeXiao Pan
2024-04-17less show tab width as 4 space instead of 8Xiao Pan
2024-04-17updateXiao Pan
2024-04-17feat: gitcommit filetype set ccXiao Pan
2024-04-17feat: mail filetype set colorcolumn remind me max line charXiao Pan
2024-04-17alacritty use default TERM, send COLORTERM for server ls show colorXiao Pan
2024-04-16sshd accept COLORTERM env to fix ls no colorXiao Pan
If client use alacritty, after ssh into this remote server, ls doesn't show color. Can be workarounded by server sshd accept COLORTERM and client sshd send env. More see my comments in alacritty.toml config.
2024-04-07add drillXiao Pan
2024-04-01metaXiao Pan
2024-04-01new version, no need any moreXiao Pan
2024-03-31metaXiao Pan
2024-03-31fix phosh not startXiao Pan
https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1387 https://gitlab.gnome.org/World/Phosh/phosh/-/merge_requests/1387/diffs?commit_id=ee53adb478f51a64dd721e7da986c45e6db19b22 Check log with `journalctl -b`. Test with `sudo systemctl stop phosh` (and start)
2024-03-31origXiao Pan
2024-03-30updateXiao Pan
2024-03-16pacdiffXiao Pan
2024-03-16fix: add allow-weak-key-signatures to /etc/pacman.d/gnupg/gpg.conf, to ↵Xiao Pan
workaroud ALARM build key is sha1 and rejected by new gpg With newer version of gpg, pacman will error `Error: Signature is marginal trust` for Arch Linux ARM Build System key. It seems because Arch Linux ARM Build System key is sha1 and rejected by new versions of gpg. Need to reset all keys by: ```sh sudo rm -rf /etc/pacman.d/gnupg sudo pacman-key --init echo 'allow-weak-key-signatures' | sudo tee -a /etc/pacman.d/gnupg/gpg.conf > /dev/null sudo pacman-key --populate ``` Note, need to add `allow-weak-key-signatures` in /etc/pacman.d/gnupg/gpg.conf before `sudo pacman-key --populate`. More See https://archlinuxarm.org/forum/viewtopic.php?f=9&t=16762