Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature request] add cli shorthands #7782

Open
5 of 10 tasks
MoonlyVibes opened this issue Mar 9, 2025 · 1 comment
Open
5 of 10 tasks

[Feature request] add cli shorthands #7782

MoonlyVibes opened this issue Mar 9, 2025 · 1 comment
Labels
feature request For issues asking for new features

Comments

@MoonlyVibes
Copy link

I have checked if others have suggested this already

  • I have checked this issue tracker to see if others have reported similar issues.

Feature description

It is an extremely useful feature available in various (linux) programs such as tmux, ip, nmcli.
Example:
$ nmcli device wifi list can be written as
$ nmcli d w l
or $ nmcli devi wi lis -- does not matter.

When there is conflict ($ tmux kill-se...)
kill-server || kill-session
we can just type tmux kill-ses || kill-ser

Alternative solutions

this is how i have managed to mitigate the current limitations:

#!/bin/sh
case "$1" in
    c*)
        mullvad connect
        ;;
    d*)
        mullvad disconnect
        ;;
    r*)
        mullvad reconnect
        ;;
    s*)
        mullvad status
        ;;
    *)
        echo "no (or wrong) argument specified!"
esac

assuming the above scipt is named m, now that i can type m c or m con or m cucumber and it will connect

Type of feature

  • Better privacy/anonymity
  • Better at circumventing censorship
  • Easier to use
  • Other

Operating System

  • Android
  • iOS
  • Windows
  • macOS
  • Linux
@MoonlyVibes MoonlyVibes added the feature request For issues asking for new features label Mar 9, 2025
@MarkusPettersson98
Copy link
Contributor

Hello, thanks for your feature suggestion! We will investigate if this is feasible to implement ✨

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request For issues asking for new features
Projects
None yet
Development

No branches or pull requests

2 participants