#ip-address #networking #system-information #command-line-tool #time #cli

app mymy

Access the most common information about your system using a single command

3 releases (breaking)

0.3.0 Apr 24, 2023
0.2.0 Apr 8, 2023
0.1.0 Apr 3, 2023

#2356 in Command line utilities

Custom license

63KB
1.5K SLoC

mymy logo

AGPL License

mymy is a user-friendly command-line application designed to help users gather information about their system quickly, intuitively, and easily. Instead of using multiple tools to access various system details, this single tool consolidates all the important information you need.

Features

The main commands available in the mymy are:

  • cpu: Get information about your CPU, including its name, number of cores, and clock speed.
  • ips: Find out all the IP addresses allocated to your system, including local and external ones.
  • dns: Discover your system's configured DNS server.
  • disks: List all the disks attached to your system.
  • date: Consult your system's configured date in a human-readable format.
  • time: Consult your system's configured time and get the offset from the central NTP clock server.
  • datetime: A combination of the date and time commands.
  • hostname: Retrieve your system's hostname.
  • username: Find out your current user's system username.
  • device-name: Get your device's configured name.
  • os: Identify the operating system your system is running.
  • ram: Get information about your system's RAM, including its total capacity and usage.
  • architecture: Determine your CPU's architecture.
  • interfaces: List all the network interfaces configured on your system.

Benefits

mymy eliminates the need to remember multiple commands and their specific syntax, as well as searching through different files for specific information. Additionally, this tool is multi-platform, making it even more convenient for users across different operating systems (MacOS, Linux, Windows).

Installation

Homebrew

brew tap oleiade/tap
brew install mymy

Debian/Ubuntu

# Download and install the repository's GPG key
curl -fsSL https://oleiade.github.io/deb/oleiade-archive-keyring.gpg | \
gpg --dearmor \
sudo tee /usr/share/keyrings/oleiade-archive-keyring.gpg > /dev/null

# Add the repository to your system's sources
echo "deb [signed-by=/usr/share/keyrings/oleiade-archive-keyring.gpg] https://oleiade.github.io/deb stable main" \
sudo tee /etc/apt/sources.list.d/oleiade.list > /dev/null

# Update your sources
apt update

# Install mymy
apt install mymy

Cargo

cargo install mymy

Example Usage

Here are some example usages of the command:

$ my ips
public	84.172.75.134
local	192.168.2.246

$ my dns
1.1.1.1
8.8.8.8
192.168.1.1

$ my date
Saturday, 8 April, 2023, week 14

$ my time
20:51:42 UTC +02:00
±0.0795 seconds

$ my datetime
Saturday, 8 April, 2023, week 14
20:51:53 UTC +02:00
±0.0801 seconds

$ my hostname
oleiades-laptop.local

$ my username
oleiade

$ my device-name
Oleiade Laptop

$ my os
macOS 13.2.1

$ my architecture
arm64

$ my interfaces
lo0 127.0.0.1
lo0 ::1
en0 192.168.2.242

Contributing

We appreciate your interest in contributing to our project! This is a small, open-source Rust project, and we welcome contributions from developers of all skill levels. To ensure a smooth and enjoyable experience for everyone involved, please take a moment to read through these guidelines before getting started.

Getting Started

  1. Fork the repository: Start by forking the project to your own GitHub account. This will create a personal copy of the repository that you can work on.
  2. Clone the repository: Clone your forked repository to your local machine. You can do this by running the following command:
git clone https://github.com/your-username/mymy.git
  1. Create a new branch: Create a new branch for your changes. Keep the branch name descriptive and concise. For example:
git checkout -b feature/add-new-command
  1. Make your changes: Implement the new feature or fix the bug you've identified. Remember to follow the project's coding style and conventions.
  2. Commit your changes: Once you've made your changes, commit them with a clear and descriptive commit message. This helps other contributors understand the purpose of your changes.
git commit -m "Add a new command for displaying system memory usage"
  1. Push your changes: Push your changes to your forked repository on GitHub.
git push origin feature/add-new-command
  1. Submit a pull request: Finally, create a pull request from your forked repository to the main project repository. Provide a clear and concise description of the changes you've made and the purpose of your pull request.

Contribution Best Practices

  • Always work on a new branch starting from the develop branch when making changes. Avoid making changes directly to the main branch.
  • Keep your pull requests focused on a single feature or bugfix. If you have multiple unrelated changes, submit separate pull requests for each.
  • Make sure your code is properly formatted and follows the project's coding style and conventions.
  • Write clear and concise commit messages that describe the purpose of your changes.
  • If you're fixing a bug, please provide a detailed description of the bug and steps to reproduce it.

Reporting Bugs or Requesting Features

If you encounter any bugs or have a feature request, please open a new issue on the project's GitHub page. Be sure to provide a clear and concise description of the issue or feature request, and include any relevant information, such as error messages or steps to reproduce the issue.

License

This project is licensed under the AGPL-3.0 license. For more information, see the LICENSE file.

Dependencies

~16–29MB
~448K SLoC