Skip to content

Instantly share code, notes, and snippets.

@jvegaf
jvegaf / AwesomeGestures.md
Created September 11, 2022 02:51 — forked from erikzenker/AwesomeGestures.md
OSX like gesture for arch linux onn awesome windowmanager

This is a manual for OSX like touchpad gestures on arch linux for the awesome window manager. It describes how to trigger awesome actions on swiping with three fingers on the touchpad.

  • Install libinput dependencies paru -S xf86-input-libinput libinput-gestures

  • Add current user to input group sudo gpasswd -a $USER input

@jvegaf
jvegaf / AwesomeGestures.md
Created September 11, 2022 02:51 — forked from erikzenker/AwesomeGestures.md
OSX like gesture for arch linux onn awesome windowmanager

This is a manual for OSX like touchpad gestures on arch linux for the awesome window manager. It describes how to trigger awesome actions on swiping with three fingers on the touchpad.

  • Install libinput dependencies pacaur -S sf86-input-libinput libinput-gestures

  • Add current user to input group sudo gpasswd -a $USER input

@jvegaf
jvegaf / shell-setup.ps1
Created May 16, 2022 21:30 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@jvegaf
jvegaf / bulk-rename.ps1
Last active January 23, 2022 16:58 — forked from ethangardner/bulk-rename.ps1
Powershell script to bulk replace spaces with underscores in a directory of files
Dir | Rename-Item –NewName { $_.name –replace “_“,” ” }

#Configurando GitHub en Linux

###Conectando nuestro equipo con GitHub por medio de SSH Una vez completado nuestro registro en GitHub, debemos indicarle a GitHub de que equipo o equipos nos comunicaremos con el, esta comunicación la haremos por medio de SSH (Secure Shell), para esto debemos crear un par de llaves SSH una publica y otra privada. Esto es algo que asusta a algunos desarrolladores que recién comienzan en esto de GIT y GitHub. Comencemos con la creación de las llaves, para esto vamos a nuestra terminal y revisamos que exista la carpeta .sshdentro del $HOME

~ ls -a | grep .ssh