cliq

Crates.iocliq
lib.rscliq
version0.4.1
sourcesrc
created_at2024-05-24 12:08:50.942162
updated_at2024-10-02 06:26:29.917774
descriptionopen frequently accessed memorable shorten urls from cli
homepagehttps://github.com/santhosh-chinnasamy/cliq.git
repositoryhttps://github.com/santhosh-chinnasamy/cliq.git
max_upload_size
id1251031
size32,568
Santhosh C (santhosh-chinnasamy)

documentation

README

CLIQ

open frequently accessed memorable links from cli

Cliq is like your bookmark manager from terminal. You can add your frequently accessed urls in cliq.toml file and open them from terminal. It also supports opening git remote repo if .git exists in the current directory.

Installation

Download latest version from release page and run below command

tar -xvf cliq-<VERSION>-<PLATFORM>.tar.gz -C /usr/local/bin

Requirements

Create cliq.toml file under $HOME/.config/cliq/ folder and add the following contents

[links]
google = "https://google.com"
hub = "https://github.com"
lab = "https://gitlab.com"

Usage

cliq google # opens google
cliq hub # opens github
cliq lab # opens gitlab

 # opens git remote repo if .git exists. no need to add it in cliq.toml
cliq git

Build and Install

cargo build
cargo install --path .

Supports

  • Mac
  • Linux
  • Windows

Contribution

Please read the contributing guidelines to setup your development machine and proceed.

Commit count: 34

cargo fmt