Giter Club home page Giter Club logo

dotfiles's Introduction

My dotfiles

Config files for programs to set up a system the way I like it.

Programs

Newsboat

Newsboat is an RSS/Atom feed reader for the text console. Apart from catching on news, I use this to check the prices of products I want to get. Check out the fantastic RSS-Bridge project. I use this script,

newsboat() {
 echo "Initializing background process"
 "$HOME"/proj/flipkart_scraper/main.py > /dev/null 2>&1 &
 sleep 1
 command newsboat "$@"
 echo "Exiting"
 kill $!
}

to run a parser for scraping Flipkart for the price of the products. Check the code of the scraper here.

Neofetch

Neofetch is this amazing tool for printing system information to the terminal when spawning a new one. My neofetch

lf

lf (as in "list files") is a terminal file manager written in Go. It supports preview for general file types as well. Good terminal-based image preview is yet to be added I have added a shell function

lc () {
    tmp="$(mktemp)"
    lf --last-dir-path="$tmp" "$@"
    if [ -f "$tmp" ]; then
        dir="$(cat "$tmp")"
        rm -f "$tmp"
        if [ -d "$dir" ]; then
            if [ "$dir" != "$(pwd)" ]; then
                cd "$dir"
            fi
        fi
    fi
}

for using q as cd at exit ref.

Zathura

Zathura is a highly customizable and functional document viewer, mainly PDFs.

Zsh

Zsh is a shell arguably better than bash for day to day stuff. It adds a lot of features to the shell experience.

Bash

bash is the secondary shell and configs are light. Aliases and env files are sourced by both of them. Hence some of the above features are shared here as well.

Installation

Run (or manually run commands from) the install.sh to install individual tools and dependencies. Use ./bootstrap.sh to symlink these configs to your user's config files.

Inspiration

Parts of the configs are 'inspired' from these sources:

Contributions

All contributions are welcome and appreciated.

dotfiles's People

Contributors

dev-ritik avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.