Add ghostty config
This commit is contained in:
parent
4684fc1292
commit
05aee69a06
4 changed files with 59 additions and 24 deletions
37
ghostty/config
Normal file
37
ghostty/config
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# This is the configuration file for Ghostty.
|
||||
#
|
||||
# This template file has been automatically created at the following
|
||||
# path since Ghostty couldn't find any existing config files on your system:
|
||||
#
|
||||
# /home/ceres/.config/ghostty/config
|
||||
#
|
||||
# The template does not set any default options, since Ghostty ships
|
||||
# with sensible defaults for all options. Users should only need to set
|
||||
# options that they want to change from the default.
|
||||
#
|
||||
# Run `ghostty +show-config --default --docs` to view a list of
|
||||
# all available config options and their default values.
|
||||
#
|
||||
# Additionally, each config option is also explained in detail
|
||||
# on Ghostty's website, at https://ghostty.org/docs/config.
|
||||
#
|
||||
# Ghostty can reload the configuration while running by using the menu
|
||||
# # All of these are identical:
|
||||
# key=value
|
||||
# key= value
|
||||
# key =value
|
||||
# key = value
|
||||
#
|
||||
# # Any line beginning with a # is a comment. It's not possible to put
|
||||
# # a comment after a config option, since it would be interpreted as a
|
||||
# # part of the value. For example, this will have a value of "#123abc":
|
||||
# background = #123abc
|
||||
#
|
||||
# # Empty values are used to reset config keys to default.
|
||||
# key =
|
||||
#
|
||||
# # Some config options have unique syntaxes for their value,
|
||||
# # which is explained in the docs for that config option.
|
||||
# # Just for example:
|
||||
# resize-overlay-duration = 4s 200ms
|
||||
font-family = Maple Mono NF
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
# ### Hyprland ###
|
||||
# Apps
|
||||
$terminal = foot
|
||||
$terminal = ghostty
|
||||
$editor = code
|
||||
$fileExplorer = foot fish -C yazi
|
||||
$fileExplorer = ghostty -e fish -C yazi
|
||||
$browser = zen
|
||||
|
||||
# Touchpad
|
||||
|
|
|
|||
41
install.fish
41
install.fish
|
|
@ -118,30 +118,27 @@ if ! set -q _flag_noconfirm
|
|||
end
|
||||
|
||||
|
||||
if test $(lsb_release -is) = Gentoo
|
||||
emerge -v gui-wm/caelestia-meta
|
||||
else
|
||||
# Install AUR helper if not already installed
|
||||
if ! pacman -Q $aur_helper &> /dev/null
|
||||
log "$aur_helper not installed. Installing..."
|
||||
# Install AUR helper if not already installed
|
||||
#if ! pacman -Q $aur_helper &> /dev/null
|
||||
# log "$aur_helper not installed. Installing..."
|
||||
|
||||
# Install
|
||||
sudo pacman -S --needed git base-devel $noconfirm
|
||||
cd /tmp
|
||||
git clone https://aur.archlinux.org/$aur_helper.git
|
||||
cd $aur_helper
|
||||
makepkg -si
|
||||
cd ..
|
||||
rm -rf $aur_helper
|
||||
# Install
|
||||
# sudo pacman -S --needed git base-devel $noconfirm
|
||||
# cd /tmp
|
||||
# git clone https://aur.archlinux.org/$aur_helper.git
|
||||
# cd $aur_helper
|
||||
# makepkg -si
|
||||
# cd ..
|
||||
# rm -rf $aur_helper
|
||||
|
||||
# Setup
|
||||
#if $aur_helper = yay
|
||||
# $aur_helper -Y --gendb
|
||||
# $aur_helper -Y --devel --save
|
||||
#else
|
||||
# $aur_helper --gendb
|
||||
#end
|
||||
|
||||
# Setup
|
||||
if $aur_helper = yay
|
||||
$aur_helper -Y --gendb
|
||||
$aur_helper -Y --devel --save
|
||||
else
|
||||
$aur_helper --gendb
|
||||
end
|
||||
end
|
||||
|
||||
# Cd into dir
|
||||
cd (dirname (status filename)) || exit 1
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
--in-content-primary-button-text-color: var(--c-text) !important;
|
||||
--in-content-primary-button-background: var(--toolbarbutton-hover-background) !important;
|
||||
--in-content-primary-button-background-hover: var(--toolbarbutton-active-background) !important;
|
||||
font-family: Maple Mono NF !important; font-size: 16pt
|
||||
}
|
||||
|
||||
tooltip {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue