Archived
1
0
Fork 0

all: Replace alacritty with foot

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2023-01-20 23:41:43 +01:00
parent 1104a79827
commit 89a7ed6644
Signed by: c8h4
GPG key ID: 9C82009BEEDEA0FF
5 changed files with 21 additions and 75 deletions

View file

@ -1,71 +0,0 @@
---
scrolling:
history: 0
font:
normal:
family: Source Code Pro
style: Semibold
size: 10.0
# Based on https://github.com/dracula/alacritty
colors:
primary:
background: '#282a36'
foreground: '#f8f8f2'
bright_foreground: '#ffffff'
cursor:
text: CellBackground
cursor: CellForeground
vi_mode_cursor:
text: CellBackground
cursor: CellForeground
search:
matches:
foreground: '#44475a'
background: '#50fa7b'
focused_match:
foreground: '#44475a'
background: '#ffb86c'
footer_bar:
background: '#282a36'
foreground: '#f8f8f2'
hints:
start:
foreground: '#282a36'
background: '#f1fa8c'
end:
foreground: '#f1fa8c'
background: '#282a36'
line_indicator:
foreground: None
background: None
selection:
text: CellForeground
background: '#44475a'
normal:
black: '#21222c'
red: '#ff5555'
green: '#50fa7b'
yellow: '#f1fa8c'
blue: '#bd93f9'
magenta: '#ff79c6'
cyan: '#8be9fd'
white: '#f8f8f2'
bright:
black: '#6272a4'
red: '#ff6e6e'
green: '#69ff94'
yellow: '#ffffa5'
blue: '#d6acff'
magenta: '#ff92df'
cyan: '#a4ffff'
white: '#ffffff'
cursor:
style: Underline
shell:
program: /usr/bin/tmux
args:
- -u

View file

@ -14,7 +14,8 @@ $RSYNC zshrc $HOME/.zshrc
ITEMS="git nvim tmux"
[ "$MODE" != --headless ] && ITEMS+=" alacritty sway swaylock waybar waybar mako wofi mimeapps.list"
[ "$MODE" != --headless ] \
&& ITEMS+=" foot mako mimeapps.list sway swaylock waybar wofi"
for i in $ITEMS; do
[ -d $i ] && mkdir -p $HOME/.config/$i

17
foot/foot.ini Normal file
View file

@ -0,0 +1,17 @@
[main]
shell=tmux
font=Jetbrains Mono:size=9,Noto Color Emoji:size=9
[scrollback]
lines=0
[cursor]
style=underline
color=ffffff ffffff
underline-thickness=1
[mouse]
hide-when-typing=yes
[colors]
background=1e1f27

View file

@ -4,7 +4,7 @@ set $down h
set $up t
set $right n
set $term alacritty
set $term foot
set $menu wofi --show drun --insensitive | xargs swaymsg exec --
set $lock swaylock
set $exit swaynag -t warning -m 'Exit sway?' -B 'Yes, exit' 'swaymsg exit'

View file

@ -12,7 +12,6 @@ $RSYNC $HOME/.latexmkrc latexmkrc
$RSYNC $HOME/.zshrc zshrc
$RSYNC --exclude smtpconfig $HOME/.config/git .
$RSYNC --exclude plugins $HOME/.config/tmux .
$RSYNC \
@ -20,7 +19,7 @@ $RSYNC \
$HOME/.config/nvim .
if [ "$MODE" != --headless ]; then
for i in alacritty waybar mako wofi mimeapps.list; do
for i in foot mako mimeapps.list waybar wofi; do
$RSYNC $HOME/.config/$i .
done