Compare commits

..

3 commits

Author SHA1 Message Date
d3ec5c57c6
improve graphical performance 2025-06-26 19:30:03 +08:00
e99cf1e064
install openjdk 17 2025-06-23 23:17:05 +08:00
92f35bf09d
refactor 2025-06-23 23:16:41 +08:00
3 changed files with 26 additions and 21 deletions

View file

@ -14,6 +14,11 @@ local smart_splits = wezterm.plugin.require("https://github.com/mrjones2014/smar
-- Do not check for or show window with update information -- Do not check for or show window with update information
config.check_for_updates = false config.check_for_updates = false
-- Improve wezterm graphical performance
config.front_end = "OpenGL"
config.max_fps = 144
config.animation_fps = 144
-- Font configuration -- Font configuration
config.font = wezterm.font("Fisa Code") config.font = wezterm.font("Fisa Code")
config.font_size = 10.0 config.font_size = 10.0

View file

@ -7,6 +7,7 @@
[ [
# Toolchains # Toolchains
gcc gcc
jdk17
python313 python313
# Typesetting # Typesetting

View file

@ -7,28 +7,27 @@
home-manager home-manager
# Useful system utilities # Useful system utilities
tree # directory structure tree
bc # basic calculator bc
vim # editor fd
ranger # console file manager vim
htop # system monitor ranger
scrot # screenshot htop
jq # JSON processor scrot
git # version control jq
nmap # network mapper git
xclip # clipboard nmap
ripgrep # searches the current directory for a regex pattern xclip
sshfs # mount filesystems over SSH ripgrep
feh # image viewer sshfs
feh
# HTTP curl
curl # transfer dato to/from server wget
wget # download files from web unzip
p7zip
# Archive
unzip # extract zip archive
p7zip # extract 7z archive
]; ];
# List of directories to be symlinked to /run/current-system/sw
pathsToLink = ["/share/zsh"]; pathsToLink = ["/share/zsh"];
}; };