Skip to content

Instantly share code, notes, and snippets.

View helium18's full-sized avatar
👾

helium helium18

👾
View GitHub Profile
@lenicyl
lenicyl / 1. readme.md
Last active November 16, 2021 12:59
Installer Script

WIP

Script for personal use so dont run unless u want ur pc to be bloated to the brim

How do i fork this to work for my programs ?

  1. Install scoop and winget (and maybe github cli)
  2. search if app is available in scoop or winget
  3. edit the script accordingly
  4. Use your brain for programs not in package managers
  5. ???
  6. Profit and flex
@fjpalacios
fjpalacios / arch-i3gaps-install.md
Last active June 22, 2024 21:11
Arch + i3-gaps Install Guide

Arch + i3-gaps Install Guide

First set up your keyboard layout. For example, in Spanish:

   # loadkeys es

For a list of all acceptable keymaps:

   # localectl list-keymaps
@jpentland
jpentland / tabc.sh
Last active February 9, 2023 20:00
Add or remove windows from suckless' tabbed
#!/bin/sh
# Usage:
# tabc.sh <tabbed-id> <command>
# Commands:
# add <window-id> - Add window to tabbed
# remove <window-id> - Remove window from tabbed
# list - List all clients of tabbed
#
@xirixiz
xirixiz / Set up GitHub push with SSH keys.md
Last active June 23, 2024 20:08 — forked from developius/README.md
Set up GitHub push with SSH keys

SSH keypair setup for GitHub (or GitHub/GitLab/BitBucket, etc, etc)

Create a repo.

Make sure there is at least one file in it (even just the README.md)

Generate a SSH key pair (private/public):

ssh-keygen -t rsa -C "your_email@example.com"
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active June 22, 2024 06:15
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \