Alias | Command |
---|---|
g | git |
ga | git add |
gaa | git add --all |
set -g escape-time 10 | |
set-option -sa terminal-overrides ",xterm*:Tc" | |
set -g mouse on | |
set -g status-interval 5 | |
# set -s set-clipboard external | |
set -as terminal-features ',rxvt-unicode-256color:clipboard' | |
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B) | |
unbind-key C-b | |
set -g prefix M-a |
version: "3.8" | |
services: | |
ampache: | |
image: ampache/ampache | |
ports: | |
- "80:80" | |
environment: | |
MYSQL_ROOT_PASSWORD: example | |
MYSQL_DATABASE: ampache |
local wezterm = require 'wezterm' | |
local wsl_domains = wezterm.default_wsl_domains() | |
wezterm.on("gui-startup", function(cmd) | |
local _, _, window = wezterm.mux.spawn_window(cmd or {}) | |
window:gui_window():toggle_fullscreen() | |
end) | |
for _, domain in ipairs(wsl_domains) do |
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
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
<# | |
.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 |
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 .ssh
dentro del $HOME
~ ls -a | grep .ssh