<think>
Okay, let's see. The user provided a diff for the file lk-installers/install-apt-pkgs. The main changes here are adding 'sudo apt update' at the top and removing 'tmux' from the list of packages being installed in the first sudo apt install line. The commit message needs to follow the format <type>: <description>. The type options are fix, feat, build, chore, ci, docs, style, refactor, perf, test. Looking at the changes: adding an update before installing packages and removing a package (tmux). This seems like a modification to the installation script to ensure dependencies are up-to-date and removing an unnecessary package. Since it's adjusting the script's process rather than adding a new feature, 'chore' might be appropriate here. Alternatively, if this fixes an issue where outdated packages could cause problems, maybe 'fix'. But since the user mentioned they're switching tmux to zellij, perhaps removing tmux is part of that change. However, the main action here is updating before install and package removal. The description should be imperative, like "Update apt before installs and remove tmux". Let me check character count: "chore: Update apt before installs and remove tmux" – that's 67 characters, which is under 72. Alternatively, maybe 'build' if it's related to build processes, but since it's an installer script, 'chore' for maintenance-related changes fits better. So the final message would be "chore: Update apt before installs and remove tmux". </think> chore: Update apt before installs and remove tmux
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
sudo apt install tmux neovim vim-nox btop htop neofetch curl wget tldr git zip unzip stow zsh cargo --no-install-recommends
|
||||
sudo apt update
|
||||
sudo apt install neovim vim-nox btop htop neofetch curl wget tldr git zip unzip stow zsh cargo --no-install-recommends
|
||||
sudo apt install rar unrar --no-install-recommends
|
||||
|
||||
Reference in New Issue
Block a user