mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-24 04:11:56 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
47 lines
607 B
Nu
47 lines
607 B
Nu
# Display help and exit
|
|
extern "apt-mark" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Mark a package as automatically installed
|
|
extern "apt-mark auto" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Mark a package as manually installed
|
|
extern "apt-mark manual" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Hold a package, prevent automatic installation or removal
|
|
extern "apt-mark hold" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Cancel a hold on a package
|
|
extern "apt-mark unhold" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Show automatically installed packages
|
|
extern "apt-mark showauto" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Show manually installed packages
|
|
extern "apt-mark showmanual" [
|
|
|
|
...args
|
|
]
|
|
|
|
# Show held packages
|
|
extern "apt-mark showhold" [
|
|
|
|
...args
|
|
] |