Skip to content

Instantly share code, notes, and snippets.

View cesalazar's full-sized avatar
👾
404 - Status not found

Carlos E. Salazar cesalazar

👾
404 - Status not found
View GitHub Profile
@cesalazar
cesalazar / config.js
Last active April 16, 2024 09:43
clipbread config
const { getClipboard } = require(`${process.mainModule.path}/utils`)
// Modify to your hearth's content!
const gitCheckout = (kind = '') =>
`g co -b ${kind ? kind + '/' : ''}${getClipboard()}`
const surroundWith = (start = '', end = '') => `${start}${getClipboard()}${end}`
const removeSurround = (start, end) =>
@cesalazar
cesalazar / fix-qt.sh
Last active October 13, 2023 15:39
Fix qt after upgrading packages
#!/bin/bash
#
# Packages installed from AUR that use anything Qt related, fail to start after
# upgrading.
#
# So far this seems to be the solution, that I had googled now at least 3 times
# after breaking some apps:
# "Reinstall qt5-styleplugins from scratch. Do NOT use the cached download"
yay -S --answerclean All --answerdiff None --answeredit None \
@cesalazar
cesalazar / user-overrides.js
Created August 6, 2022 11:37 — forked from MagicalDrizzle/user-overrides.js
my personal overrides for every new firefox profile
/* my overrides */
// https://github.com/arkenfox/user.js/
/* override recipe: enable session restore ***/
/* 0102: set startup page [SETUP-CHROME]
* 0=blank, 1=home, 2=last visited page, 3=resume previous session
* [NOTE] Session Restore is cleared with history (2811, 2812), and not used in Private Browsing mode
* [SETTING] General>Startup>Restore previous session ***/
user_pref("browser.startup.page", 3);
/* 1003: disable storing extra session data [SETUP-CHROME]
@cesalazar
cesalazar / switch-screenlayout.sh
Last active March 22, 2022 17:39
Switch the layout of the connected monitors
#!/bin/bash
#
# ╔═════╗ ╔═══╗
# ║ S ║ ║ V ║ Screen Layout Switcher
# ╚═════╝ ║ ║
# ╔═════╗ ╚═══╝ Handle switching the layout of the connected monitors:
# ║ P ║ (S)econdary, (V)ertical, and (P)rimary
# ╚═════╝ Usage: ./switch-screenlayout.sh [1-4]
# Debug options
@cesalazar
cesalazar / auto-switch-node-version.zsh
Last active December 7, 2021 22:44
Automatically changes NodeJS version using `n` node package in zsh
# hooks onto `chpwd` with the official util `add-zsh-hook`
# `export N=false` to disable auto-switching versions
function auto-switch-node-version() {
# track if the version changed
local changed=false
# exit early
[[ ${N} == false || ! $(command -v n) ]] && return
# attempt to change the version based on the "engine" entry in package.json
@cesalazar
cesalazar / playerctl-notification.sh
Created August 30, 2021 00:37
Display playerctl's metadata in a notification
#!/bin/bash
#
# Display playerctl's metadata in a notification
# Debug options
# set -euxo pipefail
metadata=$(playerctl metadata)
notification_icon=${1}
@cesalazar
cesalazar / coln.sh
Last active September 1, 2021 19:58
Create symlinks inside of an Obsidian vault, pointing to files located outside of the vault
#!/bin/bash
#
# Create inside of an Obsidian vault symlinks to files located elsewhere
# Debug options
# set -euxo pipefail
# Obsidian vault where the symlinks will be created
vault=${HOME}/Sync/obsidian/obsidian-vault/no-sync
@cesalazar
cesalazar / git-clone-and-auto-cd
Last active September 27, 2022 10:56
Clone a git repository and cd into its directory
#!/bin/bash
#
# Clone a git repository and cd into it
#
# NOTE: this file needs to be *sourced*. E.g.
# alias gclin="source /path/to/git-clone-and-auto-cd.sh"
#
# (my personal mnemonic for (g)it (cl)one (in))
# gclin https://github.com/cesalazar/.vim.git my_vim
@cesalazar
cesalazar / gist:3d21b83101f3c0a02424bbf847158bc7
Created November 5, 2020 21:54 — forked from jsjohnst/gist:68455
Bash profile options for color and vi mode
# useful general .bash_profile tweaks for color loving VI fans
export TERM=xterm-color
export GREP_OPTIONS='--color=auto' GREP_COLOR='1;36'
export CLICOLOR=1
alias ls='ls -G'
export LS_COLORS='di=1:fi=0:ln=31:pi=5:so=5:bd=5:cd=5:or=31:mi=0:ex=35:*.rb=90'
export COLOR_NC='\e[0m' # No Color
export COLOR_WHITE='\e[1;37m'
export COLOR_BLACK='\e[0;30m'
@cesalazar
cesalazar / pimp-yt-player.css
Last active December 25, 2023 22:03
Hides some YouTube annoyances, and add some visual tweaking.
/* Rules for Stylus
* https://addons.mozilla.org/en-US/firefox/addon/styl-us/
*/
/* Hide the annoying (i) button on the top-right corner */
.ytp-chrome-top-buttons {
display: none;
}
/* Display the controls and title only on hover */