using nerd fonts; unicode everywhere; etc
This commit is contained in:
parent
7edd8ddcc8
commit
9ef6ded3c1
4 changed files with 20 additions and 20 deletions
2
desks.sh
2
desks.sh
|
@ -8,7 +8,7 @@
|
|||
|
||||
# if we're feeling spartan, just print a simple string for the executor
|
||||
if [ -z $1 ]; then
|
||||
echo ""
|
||||
echo "缾"
|
||||
|
||||
# if we pass '-x', spit a few hexadecimal bytes into the executor for eye-candy
|
||||
elif [ "$1" = "-x" ]; then
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
# MIT License -- do whatever you want
|
||||
|
||||
menu() {
|
||||
dmenu "$@" -p "action >>>" -fn lucidatypewriter-9 -l 6 -nb black -nf grey50 -sb "#1f9b92" -sf black
|
||||
dmenu "$@" -p "action >>>" -fn saucecodepronerdfont-9 -l 6 -nb black -nf grey50 -sb "#1f9b92" -sf black
|
||||
}
|
||||
|
||||
|
||||
|
@ -45,7 +45,7 @@ logoutMenu() {
|
|||
}
|
||||
|
||||
if [ -z $1 ]; then
|
||||
echo ""
|
||||
echo ""
|
||||
|
||||
elif [ "$1" = "-p" ]; then
|
||||
logoutMenu
|
||||
|
|
|
@ -43,8 +43,8 @@ window:
|
|||
# Blank space added around the window in pixels. This padding is scaled
|
||||
# by DPI and the specified value is always added at both opposing sides.
|
||||
padding:
|
||||
x: 2
|
||||
y: 2
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
# Spread additional padding evenly around the terminal content.
|
||||
dynamic_padding: false
|
||||
|
@ -58,7 +58,7 @@ window:
|
|||
# Values for `decorations` (macOS only):
|
||||
# - transparent: Title bar, transparent background and title bar buttons
|
||||
# - buttonless: Title bar, transparent background, but no title bar buttons
|
||||
#decorations: full
|
||||
decorations: none
|
||||
|
||||
# Startup Mode (changes require restart)
|
||||
#
|
||||
|
@ -108,10 +108,10 @@ font:
|
|||
# - (macOS) Menlo
|
||||
# - (Linux/BSD) monospace
|
||||
# - (Windows) Consolas
|
||||
family: lucidatypewriter
|
||||
family: sauce code pro nerd font mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Regular
|
||||
style: Regular
|
||||
|
||||
# Bold font face
|
||||
#bold:
|
||||
|
@ -147,7 +147,7 @@ font:
|
|||
#style: Bold Italic
|
||||
|
||||
# Point size
|
||||
size: 6.5
|
||||
size: 6
|
||||
|
||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||
|
|
22
t2stats.sh
22
t2stats.sh
|
@ -28,37 +28,37 @@ while true; do
|
|||
powerlevel=$(cat /sys/class/power_supply/BAT*/capacity)
|
||||
case $powerlevel in
|
||||
0)
|
||||
meter="[ ]"
|
||||
meter=" "
|
||||
;;
|
||||
1|2|3|4|5|6|7|8|9)
|
||||
meter="[| ]"
|
||||
meter=" "
|
||||
;;
|
||||
10|11|12|13|14|15|16|17|18|19)
|
||||
meter="[| ]"
|
||||
meter=" "
|
||||
;;
|
||||
20|21|22|23|24|25|26|27|28|29)
|
||||
meter="[|| ]"
|
||||
meter=" "
|
||||
;;
|
||||
30|31|32|33|34|35|36|37|38|39)
|
||||
meter="[|| ]"
|
||||
meter=" "
|
||||
;;
|
||||
40|41|42|43|44|45|46|47|48|49)
|
||||
meter="[||| ]"
|
||||
meter=" "
|
||||
;;
|
||||
50|51|52|53|54|55|56|57|58|59)
|
||||
meter="[||| ]"
|
||||
meter=" "
|
||||
;;
|
||||
60|61|62|63|64|65|66|67|68|69)
|
||||
meter="[|||| ]"
|
||||
meter=" "
|
||||
;;
|
||||
70|71|72|73|74|75|76|77|78|79)
|
||||
meter="[|||| ]"
|
||||
meter=" "
|
||||
;;
|
||||
80|81|82|83|84|85|86|87|88|89)
|
||||
meter="[|||||]"
|
||||
meter=""
|
||||
;;
|
||||
*)
|
||||
meter="[|||||]"
|
||||
meter=""
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue