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,
| #!/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" |
| #!/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 |
based on https://www.reddit.com/r/vim/comments/24g8r8/italics_in_terminal_vim_and_tmux/
$ echo -e "\e[3mitalic\e[23m"
$ infocmp $TERM | grep sitm
sgr0=\E(B\E[m, sitm=\E[3m, smacs=\E(0, smam=\E[?7h,