sudo apt-get install git \
xcb \
libxcb-util0-dev \
libxcb-ewmh-dev \
libxcb-randr0-dev \
libxcb-icccm4-dev \
libxcb-keysyms1-dev \
based on https://www.reddit.com/r/vim/comments/24g8r8/italics_in_terminal_vim_and_tmux/
- Check if italic font is supported:
$ echo -e "\e[3mitalic\e[23m"
- Also check:
$ infocmp $TERM | grep sitm
sgr0=\E(B\E[m, sitm=\E[3m, smacs=\E(0, smam=\E[?7h,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple script to handle a DIY shutdown menu. When run you should see a bunch of options (shutdown, reboot etc.) | |
# | |
# Requirements: | |
# - rofi | |
# - systemd, but you can replace the commands for OpenRC or anything else | |
# | |
# Instructions: | |
# - Save this file as power.sh or anything |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# path of your alacritty config file | |
# this should be the default path | |
FILE_LOC="/home/$USER/.config/alacritty/alacritty.yml" | |
def_change_opacity () | |
{ | |
delta_val="0.05" | |
METRIC_ID="background_opacity" |