Skip to content

Instantly share code, notes, and snippets.

View umfilipe's full-sized avatar

Filipe M. Almeida umfilipe

View GitHub Profile
@umfilipe
umfilipe / fonts.md
Created December 22, 2024 04:26
Guia para instalação de fontes.
@umfilipe
umfilipe / kitty.conf
Last active December 22, 2024 17:07
Arquivo de configuração do terminal Kitty.
# Como instalar:
# Rode o comando: $ curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin
# Para atualizar basta rodar o comando acima novamente.
# Para criar o ícone rode os comandos:
# $ ln -sf ~/.local/kitty.app/bin/kitty ~/.local/kitty.app/bin/kitten ~/.local/bin/
## OBS: Se não existir a pasta ~/.local/bin crie.
# $ cp ~/.local/kitty.app/share/applications/kitty.desktop ~/.local/share/applications/
# $ cp ~/.local/kitty.app/share/applications/kitty-open.desktop ~/.local/share/applications/
@umfilipe
umfilipe / postinstallUbuntu.sh
Last active January 7, 2025 01:22
Script para automação do pós instalação do Ubuntu
#!/usr/bin/env bash
#
# postinstallUbuntu.sh - Instalar e configurar programas no Ubuntu (testado no Ubuntu 24.04.1 LTS)
#
# Autor: Filipe M. Almeida
#
# ------------------------------------------------------------------------ #
#
# COMO USAR?
# Localmente:
@umfilipe
umfilipe / postinstallPopOS.sh
Last active January 7, 2025 01:23
Script para automação do pós instalação do Pop!_OS
#!/usr/bin/env bash
#
# postinstallPopOS.sh - Instalar e configurar programas no Pop!_OS (testado no Pop!_OS 22.04 LTS)
#
# Autor: Filipe M. Almeida
#
# ------------------------------------------------------------------------ #
# COMO USAR?
# Localmente:
# Torne o programa executável
@umfilipe
umfilipe / postinstallFedora.sh
Last active January 7, 2025 01:23
Script para automação do pós instalação do Fedora
#!/usr/bin/env bash
#
# postinstallFedora.sh - Instalar e configurar programas no Fedora (testado no Fedora 40)
#
# Autor: Filipe M. Almeida
#
# ------------------------------------------------------------------------ #
#
# COMO USAR?
# Localmente:
@umfilipe
umfilipe / config.fish
Last active December 9, 2024 04:08
Configurações do Fish Shell
# Para instalar o Fish: sudo apt install fish (ou dnf no Fedora)
# Após a instalação, rodar o seguinte comando para trocar o shell padrão: chsh -s /usr/bin/fish
# O shell só será alterado após encerrar a sessão e logar novamente.
# Para editar o arquivo config.fish: sudo nano ~/.config/fish/config.fish (troque o nano por qualquer outro editor se preferir)
# Removendo mensagem de bem vindo
set -g fish_greeting
if status is-interactive
# Commands to run in interactive sessions can go here
@umfilipe
umfilipe / desabilitarTecladoNotebook.md
Last active May 15, 2024 18:21
Como desabilitar o teclado do notebook no Linux

Usando O Terminal (Tem que ser feito toda vez que ligar o notebook):

Xorg
  • xinput list
  • xinput float id (id do teclado)
Wayland
  • sudo libinput list-devices
  • sudo evtest --grab /dev/input/eventX > /dev/null & (troque X pelo número do evento que faz referência ao teclado)
@umfilipe
umfilipe / keybindings.json
Last active February 4, 2024 03:00
Custom key bindings for Visual Studio Code
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+q",
"command": "workbench.action.quickOpenView"
},
{
"key": "ctrl+q",
"command": "-workbench.action.quit"
},
@umfilipe
umfilipe / .hyper.js
Last active September 2, 2020 20:36
My personal settings used in the Hyper terminal // https://hyper.is/
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@umfilipe
umfilipe / settings.json
Last active December 15, 2024 23:32
My Visual Studio Code configurations
{
"editor.suggestSelection": "first",
"editor.lineHeight": 1.8,
"editor.fontSize": 14,
"editor.fontFamily": "JetBrains Mono",
//"editor.fontFamily": "Fira Code",
//"editor.fontFamily": "Geist Mono",
"editor.renderLineHighlight": "gutter",
"editor.bracketPairColorization.enabled": false,
"editor.codeActionsOnSave": {