1.0 Launch
This commit is contained in:
commit
42a02fc816
|
@ -0,0 +1,418 @@
|
|||
source /etc/profile
|
||||
export PATH=$PATH:~/.local/bin
|
||||
|
||||
#!/bin/sh
|
||||
|
||||
## +-----------------------------------+-----------------------------------+
|
||||
## | |
|
||||
## | FANCY BASH PROMT |
|
||||
## | |
|
||||
## | Copyright (c) 2018, Andres Gongora <mail@andresgongora.com>. |
|
||||
## | |
|
||||
## | This program is free software: you can redistribute it and/or modify |
|
||||
## | it under the terms of the GNU General Public License as published by |
|
||||
## | the Free Software Foundation, either version 3 of the License, or |
|
||||
## | (at your option) any later version. |
|
||||
## | |
|
||||
## | This program is distributed in the hope that it will be useful, |
|
||||
## | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
## | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
## | GNU General Public License for more details. |
|
||||
## | |
|
||||
## | You should have received a copy of the GNU General Public License |
|
||||
## | along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
## | |
|
||||
## +-----------------------------------------------------------------------+
|
||||
|
||||
|
||||
##
|
||||
## DESCRIPTION:
|
||||
## This script updates your "PS1" environment variable to display colors.
|
||||
## Addicitionally, it also shortens the name of your current part to maximum
|
||||
## 25 characters, which is quite useful when working in deeply nested folders.
|
||||
##
|
||||
##
|
||||
##
|
||||
## INSTALLATION:
|
||||
## Copy this script to your home folder and rename it to ".fancy-bash-promt.sh"
|
||||
## Run this command from any terminal:
|
||||
## echo "source ~/.fancy-bash-promt.sh" >> ~/.bashrc
|
||||
##
|
||||
## Alternatively, copy the content of this file into your .bashrc file
|
||||
##
|
||||
##
|
||||
##
|
||||
## FUNCTIONS:
|
||||
##
|
||||
## * bash_prompt_command()
|
||||
## This function takes your current working directory and stores a shortened
|
||||
## version in the variable "NEW_PWD".
|
||||
##
|
||||
## * format_font()
|
||||
## A small helper function to generate color formating codes from simple
|
||||
## number codes (defined below as local variables for convenience).
|
||||
##
|
||||
## * bash_prompt()
|
||||
## This function colorizes the bash promt. The exact color scheme can be
|
||||
## configured here. The structure of the function is as follows:
|
||||
## 1. A. Definition of available colors for 16 bits.
|
||||
## 1. B. Definition of some colors for 256 bits (add your own).
|
||||
## 2. Configuration >> EDIT YOUR PROMT HERE<<.
|
||||
## 4. Generation of color codes.
|
||||
## 5. Generation of window title (some terminal expect the first
|
||||
## part of $PS1 to be the window title)
|
||||
## 6. Formating of the bash promt ($PS1).
|
||||
##
|
||||
## * Main script body:
|
||||
## It calls the adequate helper functions to colorize your promt and sets
|
||||
## a hook to regenerate your working directory "NEW_PWD" when you change it.
|
||||
##
|
||||
|
||||
|
||||
|
||||
|
||||
################################################################################
|
||||
## FUNCTIONS ##
|
||||
################################################################################
|
||||
|
||||
##
|
||||
## ARRANGE $PWD AND STORE IT IN $NEW_PWD
|
||||
## * The home directory (HOME) is replaced with a ~
|
||||
## * The last pwdmaxlen characters of the PWD are displayed
|
||||
## * Leading partial directory names are striped off
|
||||
## /home/me/stuff -> ~/stuff (if USER=me)
|
||||
## /usr/share/big_dir_name -> ../share/big_dir_name (if pwdmaxlen=20)
|
||||
##
|
||||
## Original source: WOLFMAN'S color bash promt
|
||||
## https://wiki.chakralinux.org/index.php?title=Color_Bash_Prompt#Wolfman.27s
|
||||
##
|
||||
bash_prompt_command() {
|
||||
# How many characters of the $PWD should be kept
|
||||
local pwdmaxlen=25
|
||||
|
||||
# Indicate that there has been dir truncation
|
||||
local trunc_symbol=".."
|
||||
|
||||
# Store local dir
|
||||
local dir=${PWD##*/}
|
||||
|
||||
# Which length to use
|
||||
pwdmaxlen=$(( ( pwdmaxlen < ${#dir} ) ? ${#dir} : pwdmaxlen ))
|
||||
|
||||
NEW_PWD=${PWD/#$HOME/\~}
|
||||
|
||||
local pwdoffset=$(( ${#NEW_PWD} - pwdmaxlen ))
|
||||
|
||||
# Generate name
|
||||
if [ ${pwdoffset} -gt "0" ]
|
||||
then
|
||||
NEW_PWD=${NEW_PWD:$pwdoffset:$pwdmaxlen}
|
||||
NEW_PWD=${trunc_symbol}/${NEW_PWD#*/}
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
##
|
||||
## GENERATE A FORMAT SEQUENCE
|
||||
##
|
||||
format_font()
|
||||
{
|
||||
## FIRST ARGUMENT TO RETURN FORMAT STRING
|
||||
local output=$1
|
||||
|
||||
|
||||
case $# in
|
||||
2)
|
||||
eval $output="'\[\033[0;${2}m\]'"
|
||||
;;
|
||||
3)
|
||||
eval $output="'\[\033[0;${2};${3}m\]'"
|
||||
;;
|
||||
4)
|
||||
eval $output="'\[\033[0;${2};${3};${4}m\]'"
|
||||
;;
|
||||
*)
|
||||
eval $output="'\[\033[0m\]'"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
|
||||
|
||||
##
|
||||
## COLORIZE BASH PROMT
|
||||
##
|
||||
bash_prompt() {
|
||||
|
||||
############################################################################
|
||||
## COLOR CODES ##
|
||||
## These can be used in the configuration below ##
|
||||
############################################################################
|
||||
|
||||
## FONT EFFECT
|
||||
local NONE='0'
|
||||
local BOLD='1'
|
||||
local DIM='2'
|
||||
local UNDERLINE='4'
|
||||
local BLINK='5'
|
||||
local INVERT='7'
|
||||
local HIDDEN='8'
|
||||
|
||||
|
||||
## COLORS
|
||||
local DEFAULT='9'
|
||||
local BLACK='0'
|
||||
local RED='1'
|
||||
local GREEN='2'
|
||||
local YELLOW='3'
|
||||
local BLUE='4'
|
||||
local MAGENTA='5'
|
||||
local CYAN='6'
|
||||
local L_GRAY='7'
|
||||
local D_GRAY='60'
|
||||
local L_RED='61'
|
||||
local L_GREEN='62'
|
||||
local L_YELLOW='63'
|
||||
local L_BLUE='64'
|
||||
local L_MAGENTA='65'
|
||||
local L_CYAN='66'
|
||||
local WHITE='67'
|
||||
|
||||
|
||||
## TYPE
|
||||
local RESET='0'
|
||||
local EFFECT='0'
|
||||
local COLOR='30'
|
||||
local BG='40'
|
||||
|
||||
|
||||
## 256 COLOR CODES
|
||||
local NO_FORMAT="\[\033[0m\]"
|
||||
local ORANGE_BOLD="\[\033[1;38;5;208m\]"
|
||||
local TOXIC_GREEN_BOLD="\[\033[1;38;5;118m\]"
|
||||
local RED_BOLD="\[\033[1;38;5;1m\]"
|
||||
local CYAN_BOLD="\[\033[1;38;5;87m\]"
|
||||
local BLACK_BOLD="\[\033[1;38;5;0m\]"
|
||||
local WHITE_BOLD="\[\033[1;38;5;15m\]"
|
||||
local GRAY_BOLD="\[\033[1;90m\]"
|
||||
local BLUE_BOLD="\[\033[1;38;5;74m\]"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
|
||||
|
||||
|
||||
## CONFIGURE HERE ##
|
||||
|
||||
|
||||
|
||||
############################################################################
|
||||
## CONFIGURATION ##
|
||||
## Choose your color combination here ##
|
||||
############################################################################
|
||||
local FONT_COLOR_1=$WHITE
|
||||
local BACKGROUND_1=$BLUE
|
||||
local TEXTEFFECT_1=$BOLD
|
||||
|
||||
local FONT_COLOR_2=$WHITE
|
||||
local BACKGROUND_2=$L_BLUE
|
||||
local TEXTEFFECT_2=$BOLD
|
||||
|
||||
local FONT_COLOR_3=$D_GRAY
|
||||
local BACKGROUND_3=$WHITE
|
||||
local TEXTEFFECT_3=$BOLD
|
||||
|
||||
local PROMT_FORMAT=$BLUE_BOLD
|
||||
|
||||
|
||||
############################################################################
|
||||
## EXAMPLE CONFIGURATIONS ##
|
||||
## I use them for different hosts. Test them out ;) ##
|
||||
############################################################################
|
||||
|
||||
## CONFIGURATION: BLUE-WHITE
|
||||
if [ "$HOSTNAME" = dell ]; then
|
||||
FONT_COLOR_1=$WHITE; BACKGROUND_1=$BLUE; TEXTEFFECT_1=$BOLD
|
||||
FONT_COLOR_2=$WHITE; BACKGROUND_2=$L_BLUE; TEXTEFFECT_2=$BOLD
|
||||
FONT_COLOR_3=$D_GRAY; BACKGROUND_3=$WHITE; TEXTEFFECT_3=$BOLD
|
||||
PROMT_FORMAT=$CYAN_BOLD
|
||||
fi
|
||||
|
||||
## CONFIGURATION: BLACK-RED
|
||||
if [ "$HOSTNAME" = giraff6 ]; then
|
||||
FONT_COLOR_1=$WHITE; BACKGROUND_1=$BLACK; TEXTEFFECT_1=$BOLD
|
||||
FONT_COLOR_2=$WHITE; BACKGROUND_2=$D_GRAY; TEXTEFFECT_2=$BOLD
|
||||
FONT_COLOR_3=$WHITE; BACKGROUND_3=$RED; TEXTEFFECT_3=$BOLD
|
||||
PROMT_FORMAT=$RED_BOLD
|
||||
fi
|
||||
|
||||
## CONFIGURATION: RED-BLACK
|
||||
#FONT_COLOR_1=$WHITE; BACKGROUND_1=$RED; TEXTEFFECT_1=$BOLD
|
||||
#FONT_COLOR_2=$WHITE; BACKGROUND_2=$D_GRAY; TEXTEFFECT_2=$BOLD
|
||||
#FONT_COLOR_3=$WHITE; BACKGROUND_3=$BLACK; TEXTEFFECT_3=$BOLD
|
||||
#PROMT_FORMAT=$RED_BOLD
|
||||
|
||||
## CONFIGURATION: CYAN-BLUE
|
||||
if [ "$HOSTNAME" = sharkoon ]; then
|
||||
FONT_COLOR_1=$BLACK; BACKGROUND_1=$L_CYAN; TEXTEFFECT_1=$BOLD
|
||||
FONT_COLOR_2=$WHITE; BACKGROUND_2=$L_BLUE; TEXTEFFECT_2=$BOLD
|
||||
FONT_COLOR_3=$WHITE; BACKGROUND_3=$BLUE; TEXTEFFECT_3=$BOLD
|
||||
PROMT_FORMAT=$CYAN_BOLD
|
||||
fi
|
||||
|
||||
## CONFIGURATION: GRAY-SCALE
|
||||
if [ "$HOSTNAME" = giraff ]; then
|
||||
FONT_COLOR_1=$WHITE; BACKGROUND_1=$BLACK; TEXTEFFECT_1=$BOLD
|
||||
FONT_COLOR_2=$WHITE; BACKGROUND_2=$D_GRAY; TEXTEFFECT_2=$BOLD
|
||||
FONT_COLOR_3=$WHITE; BACKGROUND_3=$L_GRAY; TEXTEFFECT_3=$BOLD
|
||||
PROMT_FORMAT=$BLACK_BOLD
|
||||
fi
|
||||
|
||||
## CONFIGURATION: GRAY-CYAN
|
||||
if [ "$HOSTNAME" = light ]; then
|
||||
FONT_COLOR_1=$WHITE; BACKGROUND_1=$BLACK; TEXTEFFECT_1=$BOLD
|
||||
FONT_COLOR_2=$WHITE; BACKGROUND_2=$D_GRAY; TEXTEFFECT_2=$BOLD
|
||||
FONT_COLOR_3=$BLACK; BACKGROUND_3=$L_CYAN; TEXTEFFECT_3=$BOLD
|
||||
PROMT_FORMAT=$CYAN_BOLD
|
||||
fi
|
||||
|
||||
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ##
|
||||
|
||||
|
||||
|
||||
|
||||
############################################################################
|
||||
## TEXT FORMATING ##
|
||||
## Generate the text formating according to configuration ##
|
||||
############################################################################
|
||||
|
||||
## CONVERT CODES: add offset
|
||||
FC1=$(($FONT_COLOR_1+$COLOR))
|
||||
BG1=$(($BACKGROUND_1+$BG))
|
||||
FE1=$(($TEXTEFFECT_1+$EFFECT))
|
||||
|
||||
FC2=$(($FONT_COLOR_2+$COLOR))
|
||||
BG2=$(($BACKGROUND_2+$BG))
|
||||
FE2=$(($TEXTEFFECT_2+$EFFECT))
|
||||
|
||||
FC3=$(($FONT_COLOR_3+$COLOR))
|
||||
BG3=$(($BACKGROUND_3+$BG))
|
||||
FE3=$(($TEXTEFFECT_3+$EFFECT))
|
||||
|
||||
FC4=$(($FONT_COLOR_4+$COLOR))
|
||||
BG4=$(($BACKGROUND_4+$BG))
|
||||
FE4=$(($TEXTEFFECT_4+$EFFECT))
|
||||
|
||||
|
||||
## CALL FORMATING HELPER FUNCTION: effect + font color + BG color
|
||||
local TEXT_FORMAT_1
|
||||
local TEXT_FORMAT_2
|
||||
local TEXT_FORMAT_3
|
||||
local TEXT_FORMAT_4
|
||||
format_font TEXT_FORMAT_1 $FE1 $FC1 $BG1
|
||||
format_font TEXT_FORMAT_2 $FE2 $FC2 $BG2
|
||||
format_font TEXT_FORMAT_3 $FC3 $FE3 $BG3
|
||||
format_font TEXT_FORMAT_4 $FC4 $FE4 $BG4
|
||||
|
||||
|
||||
# GENERATE PROMT SECTIONS
|
||||
local PROMT_USER=$"$TEXT_FORMAT_1 \u "
|
||||
local PROMT_HOST=$"$TEXT_FORMAT_2 \h "
|
||||
local PROMT_PWD=$"$TEXT_FORMAT_3 \${NEW_PWD} "
|
||||
local PROMT_INPUT=$"$PROMT_FORMAT "
|
||||
|
||||
|
||||
############################################################################
|
||||
## SEPARATOR FORMATING ##
|
||||
## Generate the separators between sections ##
|
||||
## Uses background colors of the sections ##
|
||||
############################################################################
|
||||
|
||||
## CONVERT CODES
|
||||
TSFC1=$(($BACKGROUND_1+$COLOR))
|
||||
TSBG1=$(($BACKGROUND_2+$BG))
|
||||
|
||||
TSFC2=$(($BACKGROUND_2+$COLOR))
|
||||
TSBG2=$(($BACKGROUND_3+$BG))
|
||||
|
||||
TSFC3=$(($BACKGROUND_3+$COLOR))
|
||||
TSBG3=$(($DEFAULT+$BG))
|
||||
|
||||
|
||||
## CALL FORMATING HELPER FUNCTION: effect + font color + BG color
|
||||
local SEPARATOR_FORMAT_1
|
||||
local SEPARATOR_FORMAT_2
|
||||
local SEPARATOR_FORMAT_3
|
||||
format_font SEPARATOR_FORMAT_1 $TSFC1 $TSBG1
|
||||
format_font SEPARATOR_FORMAT_2 $TSFC2 $TSBG2
|
||||
format_font SEPARATOR_FORMAT_3 $TSFC3 $TSBG3
|
||||
|
||||
|
||||
# GENERATE SEPARATORS WITH FANCY TRIANGLE
|
||||
local TRIANGLE=$'\uE0B0'
|
||||
local SEPARATOR_1=$SEPARATOR_FORMAT_1$TRIANGLE
|
||||
local SEPARATOR_2=$SEPARATOR_FORMAT_2$TRIANGLE
|
||||
local SEPARATOR_3=$SEPARATOR_FORMAT_3$TRIANGLE
|
||||
|
||||
|
||||
|
||||
############################################################################
|
||||
## WINDOW TITLE ##
|
||||
## Prevent messed up terminal-window titles ##
|
||||
############################################################################
|
||||
case $TERM in
|
||||
xterm*|rxvt*)
|
||||
local TITLEBAR='\[\033]0;\u:${NEW_PWD}\007\]'
|
||||
;;
|
||||
*)
|
||||
local TITLEBAR=""
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
|
||||
############################################################################
|
||||
## BASH PROMT ##
|
||||
## Generate promt and remove format from the rest ##
|
||||
############################################################################
|
||||
PS1="$TITLEBAR\n${PROMT_USER}${SEPARATOR_1}${PROMT_HOST}${SEPARATOR_2}${PROMT_PWD}${SEPARATOR_3}${PROMT_INPUT}"
|
||||
|
||||
|
||||
|
||||
## For terminal line coloring, leaving the rest standard
|
||||
none="$(tput sgr0)"
|
||||
trap 'echo -ne "${none}"' DEBUG
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
################################################################################
|
||||
## MAIN ##
|
||||
################################################################################
|
||||
|
||||
## Bash provides an environment variable called PROMPT_COMMAND.
|
||||
## The contents of this variable are executed as a regular Bash command
|
||||
## just before Bash displays a prompt.
|
||||
## We want it to call our own command to truncate PWD and store it in NEW_PWD
|
||||
PROMPT_COMMAND=bash_prompt_command
|
||||
|
||||
## Call bash_promnt only once, then unset it (not needed any more)
|
||||
## It will set $PS1 with colors and relative to $NEW_PWD,
|
||||
## which gets updated by $PROMT_COMMAND on behalf of the terminal
|
||||
bash_prompt
|
||||
unset bash_prompt
|
||||
|
||||
|
||||
|
||||
### EOF ###
|
|
@ -0,0 +1,2 @@
|
|||
install.conf
|
||||
installlog.txt
|
|
@ -0,0 +1,104 @@
|
|||
#!/usr/bin/env bash
|
||||
#-------------------------------------------------------------------------
|
||||
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
||||
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
||||
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
||||
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
||||
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
||||
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
echo "-------------------------------------------------"
|
||||
echo "Setting up mirrors for optimal download "
|
||||
echo "-------------------------------------------------"
|
||||
iso=$(curl -4 ifconfig.co/country-iso)
|
||||
timedatectl set-ntp true
|
||||
pacman -S --noconfirm pacman-contrib terminus-font
|
||||
setfont ter-v22b
|
||||
pacman -S --noconfirm reflector rsync
|
||||
mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.backup
|
||||
echo -e "-------------------------------------------------------------------------"
|
||||
echo -e " █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗"
|
||||
echo -e " ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝"
|
||||
echo -e " ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗"
|
||||
echo -e " ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║"
|
||||
echo -e " ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║"
|
||||
echo -e " ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝"
|
||||
echo -e "-------------------------------------------------------------------------"
|
||||
reflector -a 48 -c $iso -f 5 -l 20 --sort rate --save /etc/pacman.d/mirrorlist
|
||||
mkdir /mnt
|
||||
|
||||
|
||||
echo -e "\nInstalling prereqs...\n$HR"
|
||||
pacman -S --noconfirm gptfdisk btrfs-progs
|
||||
|
||||
echo "-------------------------------------------------"
|
||||
echo "-------select your disk to format----------------"
|
||||
echo "-------------------------------------------------"
|
||||
lsblk
|
||||
echo "Please enter disk to work on: (example /dev/sda)"
|
||||
read DISK
|
||||
echo "THIS WILL FORMAT AND DELETE ALL DATA ON THE DISK"
|
||||
read -p "are you sure you want to continue (Y/N):" formatdisk
|
||||
case $formatdisk in
|
||||
|
||||
y|Y|yes|Yes|YES)
|
||||
echo "--------------------------------------"
|
||||
echo -e "\nFormatting disk...\n$HR"
|
||||
echo "--------------------------------------"
|
||||
|
||||
# disk prep
|
||||
sgdisk -Z ${DISK} # zap all on disk
|
||||
sgdisk -a 2048 -o ${DISK} # new gpt disk 2048 alignment
|
||||
|
||||
# create partitions
|
||||
sgdisk -n 1:0:+1000M ${DISK} # partition 1 (UEFI SYS), default start block, 512MB
|
||||
sgdisk -n 2:0:0 ${DISK} # partition 2 (Root), default start, remaining
|
||||
|
||||
# set partition types
|
||||
sgdisk -t 1:ef00 ${DISK}
|
||||
sgdisk -t 2:8300 ${DISK}
|
||||
|
||||
# label partitions
|
||||
sgdisk -c 1:"UEFISYS" ${DISK}
|
||||
sgdisk -c 2:"ROOT" ${DISK}
|
||||
|
||||
# make filesystems
|
||||
echo -e "\nCreating Filesystems...\n$HR"
|
||||
|
||||
mkfs.vfat -F32 -n "UEFISYS" "${DISK}1"
|
||||
mkfs.btrfs -L "ROOT" "${DISK}2"
|
||||
mount -t btrfs "${DISK}2" /mnt
|
||||
btrfs subvolume create /mnt/@
|
||||
umount /mnt
|
||||
;;
|
||||
esac
|
||||
|
||||
# mount target
|
||||
mount -t btrfs -o subvol=@ "${DISK}2" /mnt
|
||||
mkdir /mnt/boot
|
||||
mkdir /mnt/boot/efi
|
||||
mount -t vfat "${DISK}1" /mnt/boot/
|
||||
|
||||
echo "--------------------------------------"
|
||||
echo "-- Arch Install on Main Drive --"
|
||||
echo "--------------------------------------"
|
||||
pacstrap /mnt base base-devel linux linux-firmware vim nano sudo archlinux-keyring wget libnewt --noconfirm --needed
|
||||
genfstab -U /mnt >> /mnt/etc/fstab
|
||||
echo "keyserver hkp://keyserver.ubuntu.com" >> /mnt/etc/pacman.d/gnupg/gpg.conf
|
||||
echo "--------------------------------------"
|
||||
echo "-- Bootloader Systemd Installation --"
|
||||
echo "--------------------------------------"
|
||||
bootctl install --esp-path=/mnt/boot
|
||||
[ ! -d "/mnt/boot/loader/entries" ] && mkdir -p /mnt/boot/loader/entries
|
||||
cat <<EOF > /mnt/boot/loader/entries/arch.conf
|
||||
title Arch Linux
|
||||
linux /vmlinuz-linux
|
||||
initrd /initramfs-linux.img
|
||||
options root=${DISK}2 rw rootflags=subvol=@
|
||||
EOF
|
||||
cp -R ~/ArchTitus /mnt/root/
|
||||
cp /etc/pacman.d/mirrorlist /mnt/etc/pacman.d/mirrorlist
|
||||
echo "--------------------------------------"
|
||||
echo "-- SYSTEM READY FOR 0-setup --"
|
||||
echo "--------------------------------------"
|
|
@ -0,0 +1,316 @@
|
|||
#!/usr/bin/env bash
|
||||
#-------------------------------------------------------------------------
|
||||
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
||||
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
||||
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
||||
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
||||
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
||||
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
||||
#-------------------------------------------------------------------------
|
||||
echo "--------------------------------------"
|
||||
echo "-- Network Setup --"
|
||||
echo "--------------------------------------"
|
||||
pacman -S networkmanager dhclient --noconfirm --needed
|
||||
systemctl enable --now NetworkManager
|
||||
|
||||
echo "--------------------------------------"
|
||||
echo "-- Set Password for Root --"
|
||||
echo "--------------------------------------"
|
||||
echo "Enter password for root user: "
|
||||
passwd root
|
||||
|
||||
if ! source install.conf; then
|
||||
read -p "Please enter hostname:" hostname
|
||||
|
||||
read -p "Please enter username:" username
|
||||
echo "username=$username" >> ${HOME}/ArchTitus/install.conf
|
||||
echo "password=$password" >> ${HOME}/ArchTitus/install.conf
|
||||
fi
|
||||
|
||||
echo "-------------------------------------------------"
|
||||
echo "Setting up mirrors for optimal download "
|
||||
echo "-------------------------------------------------"
|
||||
pacman -S --noconfirm pacman-contrib curl
|
||||
pacman -S --noconfirm reflector rsync
|
||||
iso=$(curl -4 ifconfig.co/country-iso)
|
||||
cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.bak
|
||||
|
||||
nc=$(grep -c ^processor /proc/cpuinfo)
|
||||
echo "You have " $nc" cores."
|
||||
echo "-------------------------------------------------"
|
||||
echo "Changing the makeflags for "$nc" cores."
|
||||
sudo sed -i 's/#MAKEFLAGS="-j2"/MAKEFLAGS="-j$nc"/g' /etc/makepkg.conf
|
||||
echo "Changing the compression settings for "$nc" cores."
|
||||
sudo sed -i 's/COMPRESSXZ=(xz -c -z -)/COMPRESSXZ=(xz -c -T $nc -z -)/g' /etc/makepkg.conf
|
||||
|
||||
echo "-------------------------------------------------"
|
||||
echo " Setup Language to US and set locale "
|
||||
echo "-------------------------------------------------"
|
||||
sed -i 's/^#en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen
|
||||
locale-gen
|
||||
timedatectl --no-ask-password set-timezone America/Chicago
|
||||
timedatectl --no-ask-password set-ntp 1
|
||||
localectl --no-ask-password set-locale LANG="en_US.UTF-8" LC_COLLATE="" LC_TIME="en_US.UTF-8"
|
||||
|
||||
# Set keymaps
|
||||
localectl --no-ask-password set-keymap us
|
||||
|
||||
# Hostname
|
||||
hostnamectl --no-ask-password set-hostname $hostname
|
||||
|
||||
# Add sudo no password rights
|
||||
sed -i 's/^# %wheel ALL=(ALL) NOPASSWD: ALL/%wheel ALL=(ALL) NOPASSWD: ALL/' /etc/sudoers
|
||||
|
||||
#Add parallel downloading
|
||||
sed -i 's/^#Para/Para/' /etc/pacman.conf
|
||||
|
||||
#Enable multilib
|
||||
cat <<EOF >> /etc/pacman.conf
|
||||
[multilib]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
EOF
|
||||
pacman -Sy --noconfirm
|
||||
|
||||
echo -e "\nInstalling Base System\n"
|
||||
|
||||
PKGS=(
|
||||
'alsa-plugins' # audio plugins
|
||||
'alsa-utils' # audio utils
|
||||
'ark' # compression
|
||||
'audiocd-kio'
|
||||
'autoconf' # build
|
||||
'automake' # build
|
||||
'base'
|
||||
'bash-completion'
|
||||
'bind'
|
||||
'binutils'
|
||||
'bison'
|
||||
'bluedevil'
|
||||
'bluez'
|
||||
'bluez-libs'
|
||||
'breeze'
|
||||
'breeze-gtk'
|
||||
'bridge-utils'
|
||||
'btrfs-progs'
|
||||
'celluloid' # video players
|
||||
'cmatrix'
|
||||
'code' # Visual Studio code
|
||||
'cronie'
|
||||
'cups'
|
||||
'dhcpcd'
|
||||
'dialog'
|
||||
'discover'
|
||||
'dmidecode'
|
||||
'dnsmasq'
|
||||
'dolphin'
|
||||
'dosfstools'
|
||||
'drkonqi'
|
||||
'edk2-ovmf'
|
||||
'efibootmgr' # EFI boot
|
||||
'exfat-utils'
|
||||
'flex'
|
||||
'fuse2'
|
||||
'fuse3'
|
||||
'fuseiso'
|
||||
'gamemode'
|
||||
'gcc'
|
||||
'gimp' # Photo editing
|
||||
'git'
|
||||
'gparted' # partition management
|
||||
'gptfdisk'
|
||||
'groff'
|
||||
'grub'
|
||||
'grub-customizer'
|
||||
'gst-libav'
|
||||
'gst-plugins-good'
|
||||
'gst-plugins-ugly'
|
||||
'haveged'
|
||||
'htop'
|
||||
'iptables-nft'
|
||||
'jdk-openjdk' # Java 17
|
||||
'kactivitymanagerd'
|
||||
'kate'
|
||||
'kvantum-qt5'
|
||||
'kcalc'
|
||||
'kcharselect'
|
||||
'kcron'
|
||||
'kde-cli-tools'
|
||||
'kde-gtk-config'
|
||||
'kdecoration'
|
||||
'kdenetwork-filesharing'
|
||||
'kdeplasma-addons'
|
||||
'kdesdk-thumbnailers'
|
||||
'kdialog'
|
||||
'keychain'
|
||||
'kfind'
|
||||
'kgamma5'
|
||||
'kgpg'
|
||||
'khotkeys'
|
||||
'kinfocenter'
|
||||
'kitty'
|
||||
'kmenuedit'
|
||||
'kmix'
|
||||
'konsole'
|
||||
'kscreen'
|
||||
'kscreenlocker'
|
||||
'ksshaskpass'
|
||||
'ksystemlog'
|
||||
'ksystemstats'
|
||||
'kwallet-pam'
|
||||
'kwalletmanager'
|
||||
'kwayland-integration'
|
||||
'kwayland-server'
|
||||
'kwin'
|
||||
'kwrite'
|
||||
'kwrited'
|
||||
'layer-shell-qt'
|
||||
'libguestfs'
|
||||
'libkscreen'
|
||||
'libksysguard'
|
||||
'libnewt'
|
||||
'libtool'
|
||||
'linux'
|
||||
'linux-lts'
|
||||
'linux-firmware'
|
||||
'linux-headers'
|
||||
'lsof'
|
||||
'lutris'
|
||||
'lzop'
|
||||
'm4'
|
||||
'make'
|
||||
'milou'
|
||||
'nano'
|
||||
'neofetch'
|
||||
'networkmanager'
|
||||
'ntfs-3g'
|
||||
'okular'
|
||||
'openbsd-netcat'
|
||||
'openssh'
|
||||
'os-prober'
|
||||
'oxygen'
|
||||
'p7zip'
|
||||
'pacman-contrib'
|
||||
'patch'
|
||||
'picom'
|
||||
'pkgconf'
|
||||
'plasma-browser-integration'
|
||||
'plasma-desktop'
|
||||
'plasma-disks'
|
||||
'plasma-firewall'
|
||||
'plasma-integration'
|
||||
'plasma-nm'
|
||||
'plasma-pa'
|
||||
'plasma-sdk'
|
||||
'plasma-systemmonitor'
|
||||
'plasma-thunderbolt'
|
||||
'plasma-vault'
|
||||
'plasma-workspace'
|
||||
'plasma-workspace-wallpapers'
|
||||
'polkit-kde-agent'
|
||||
'powerdevil'
|
||||
'powerline-fonts'
|
||||
'print-manager'
|
||||
'pulseaudio'
|
||||
'pulseaudio-alsa'
|
||||
'pulseaudio-bluetooth'
|
||||
'python-pip'
|
||||
'qemu'
|
||||
'rsync'
|
||||
'sddm-kcm'
|
||||
'spectacle'
|
||||
'steam'
|
||||
'sudo'
|
||||
'swtpm'
|
||||
'synergy'
|
||||
'systemsettings'
|
||||
'terminus-font'
|
||||
'texinfo'
|
||||
'traceroute'
|
||||
'ufw'
|
||||
'unrar'
|
||||
'unzip'
|
||||
'usbutils'
|
||||
'vde2'
|
||||
'vim'
|
||||
'virt-manager'
|
||||
'virt-viewer'
|
||||
'wget'
|
||||
'which'
|
||||
'wine-gecko'
|
||||
'wine-mono'
|
||||
'winetricks'
|
||||
'xdg-desktop-portal-kde'
|
||||
'xdg-user-dirs'
|
||||
'xorg-server'
|
||||
'xorg-xinit'
|
||||
'zeroconf-ioslave'
|
||||
'zip'
|
||||
'zsh'
|
||||
'zsh-syntax-highlighting'
|
||||
'zsh-autosuggestions'
|
||||
)
|
||||
|
||||
for PKG in "${PKGS[@]}"; do
|
||||
echo "INSTALLING: ${PKG}"
|
||||
sudo pacman -S "$PKG" --noconfirm --needed
|
||||
done
|
||||
|
||||
#
|
||||
# determine processor type and install microcode
|
||||
#
|
||||
proc_type=$(lscpu | awk '/Vendor ID:/ {print $3}')
|
||||
case "$proc_type" in
|
||||
GenuineIntel)
|
||||
print "Installing Intel microcode"
|
||||
pacman -S --noconfirm intel-ucode
|
||||
proc_ucode=intel-ucode.img
|
||||
;;
|
||||
AuthenticAMD)
|
||||
print "Installing AMD microcode"
|
||||
pacman -S --noconfirm amd-ucode
|
||||
proc_ucode=amd-ucode.img
|
||||
;;
|
||||
esac
|
||||
|
||||
# Graphics Drivers find and install
|
||||
if lspci | grep -E "NVIDIA|GeForce"; then
|
||||
sudo cat <<EOF > /etc/pacman.d/hooks/nvidia.hook
|
||||
[Trigger]
|
||||
Operation=Install
|
||||
Operation=Upgrade
|
||||
Operation=Remove
|
||||
Type=Package
|
||||
Target=nvidia
|
||||
|
||||
[Action]
|
||||
Depends=mkinitcpio
|
||||
When=PostTransaction
|
||||
Exec=/usr/bin/mkinitcpio -P
|
||||
EOF
|
||||
pacman -S nvidia-dkms dkms --noconfirm --needed
|
||||
elif lspci | grep -E "Radeon"; then
|
||||
pacman -S xf86-video-amdgpu --noconfirm --needed
|
||||
elif lspci | grep -E "Integrated Graphics Controller"; then
|
||||
pacman -S libva-intel-driver libvdpau-va-gl lib32-vulkan-intel vulkan-intel libva-intel-driver libva-utils --needed --noconfirm
|
||||
fi
|
||||
|
||||
echo -e "\nDone!\n"
|
||||
|
||||
if [ $(whoami) = "root" ];
|
||||
then
|
||||
[ ! -d "/home/$username" ] && useradd -m -g users -G wheel -s /bin/bash $username
|
||||
cp -R /root/ArchTitus /home/$username/
|
||||
echo "--------------------------------------"
|
||||
echo "-- Set Password for $username --"
|
||||
echo "--------------------------------------"
|
||||
echo "Enter password for $username user: "
|
||||
passwd $username
|
||||
cp /etc/skel/.bash_profile /home/$username/
|
||||
cp /etc/skel/.bash_logout /home/$username/
|
||||
cp /etc/skel/.bashrc /home/$username/.bashrc
|
||||
chown -R $username: /home/$username
|
||||
sed -n '#/home/'"$username"'/#,s#bash#zsh#' /etc/passwd
|
||||
else
|
||||
echo "You are already a user proceed with aur installs"
|
||||
fi
|
||||
|
|
@ -0,0 +1,76 @@
|
|||
#!/usr/bin/env bash
|
||||
#-------------------------------------------------------------------------
|
||||
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
||||
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
||||
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
||||
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
||||
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
||||
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nINSTALLING AUR SOFTWARE\n"
|
||||
# You can solve users running this script as root with this and then doing the same for the next for statement. However I will leave this up to you.
|
||||
|
||||
echo "CLONING: YAY"
|
||||
cd ~
|
||||
git clone "https://aur.archlinux.org/yay.git"
|
||||
cd ${HOME}/yay
|
||||
makepkg -si --noconfirm
|
||||
cd ~
|
||||
touch "$HOME/.cache/zshhistory"
|
||||
git clone "https://github.com/ChrisTitusTech/zsh"
|
||||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $HOME/powerlevel10k
|
||||
ln -s "$HOME/zsh/.zshrc" $HOME/.zshrc
|
||||
|
||||
PKGS=(
|
||||
'autojump'
|
||||
'awesome-terminal-fonts'
|
||||
'brave-bin' # Brave Browser
|
||||
'dxvk-bin' # DXVK DirectX to Vulcan
|
||||
'github-desktop-bin' # Github Desktop sync
|
||||
'lightly-git'
|
||||
'lightlyshaders-git'
|
||||
'mangohud' # Gaming FPS Counter
|
||||
'mangohud-common'
|
||||
'nerd-fonts-fira-code'
|
||||
'nordic-darker-standard-buttons-theme'
|
||||
'nordic-darker-theme'
|
||||
'nordic-kde-git'
|
||||
'nordic-theme'
|
||||
'noto-fonts-emoji'
|
||||
'papirus-icon-theme'
|
||||
'sddm-nordic-theme-git'
|
||||
'ocs-url' # install packages from websites
|
||||
'timeshift-bin'
|
||||
'ttf-droid'
|
||||
'ttf-hack'
|
||||
'ttf-meslo' # Nerdfont package
|
||||
'ttf-roboto'
|
||||
'zoom' # video conferences
|
||||
|
||||
)
|
||||
|
||||
for PKG in "${PKGS[@]}"; do
|
||||
yay -S --noconfirm $PKG
|
||||
done
|
||||
|
||||
cat <<EOF >> /home/$(whoami)/.config/mpv/mpv.conf
|
||||
vo=vdpau
|
||||
profile=opengl-hq
|
||||
hwdec=vdpau
|
||||
hwdec-codecs=all
|
||||
scale=ewa_lanczossharp
|
||||
cscale=ewa_lanczossharp
|
||||
interpolation
|
||||
tscale=oversample
|
||||
EOF
|
||||
|
||||
export PATH=$PATH:~/.local/bin
|
||||
cp -r $HOME/ArchTitus/dotfiles/* $HOME/.config/
|
||||
pip install konsave
|
||||
konsave -i $HOME/ArchTitus/kde.knsv
|
||||
sleep 1
|
||||
konsave -a kde
|
||||
|
||||
echo -e "\nDone!\n"
|
||||
exit
|
|
@ -0,0 +1,139 @@
|
|||
#!/usr/bin/env bash
|
||||
#-------------------------------------------------------------------------
|
||||
# █████╗ ██████╗ ██████╗██╗ ██╗████████╗██╗████████╗██╗ ██╗███████╗
|
||||
# ██╔══██╗██╔══██╗██╔════╝██║ ██║╚══██╔══╝██║╚══██╔══╝██║ ██║██╔════╝
|
||||
# ███████║██████╔╝██║ ███████║ ██║ ██║ ██║ ██║ ██║███████╗
|
||||
# ██╔══██║██╔══██╗██║ ██╔══██║ ██║ ██║ ██║ ██║ ██║╚════██║
|
||||
# ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝███████║
|
||||
# ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nFINAL SETUP AND CONFIGURATION"
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nGenerating .xinitrc file"
|
||||
|
||||
# Generate the .xinitrc file so we can launch Awesome from the
|
||||
# terminal using the "startx" command
|
||||
cat <<EOF > ${HOME}/.xinitrc
|
||||
#!/bin/bash
|
||||
# Disable bell
|
||||
xset -b
|
||||
|
||||
# Disable all Power Saving Stuff
|
||||
xset -dpms
|
||||
xset s off
|
||||
|
||||
# X Root window color
|
||||
xsetroot -solid darkgrey
|
||||
|
||||
# Merge resources (optional)
|
||||
#xrdb -merge $HOME/.Xresources
|
||||
|
||||
# Caps to Ctrl, no caps
|
||||
setxkbmap -layout us -option ctrl:nocaps
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
||||
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
||||
[ -x "\$f" ] && . "\$f"
|
||||
done
|
||||
unset f
|
||||
fi
|
||||
|
||||
exit 0
|
||||
EOF
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nConfiguring LTS Kernel as a secondary boot option"
|
||||
|
||||
sudo cp /boot/loader/entries/arch.conf /boot/loader/entries/arch-lts.conf
|
||||
sudo sed -i 's|Arch Linux|Arch Linux LTS Kernel|g' /boot/loader/entries/arch-lts.conf
|
||||
sudo sed -i 's|vmlinuz-linux|vmlinuz-linux-lts|g' /boot/loader/entries/arch-lts.conf
|
||||
sudo sed -i 's|initramfs-linux.img|initramfs-linux-lts.img|g' /boot/loader/entries/arch-lts.conf
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nConfiguring vconsole.conf to set a larger font for login shell"
|
||||
|
||||
sudo cat <<EOF > /etc/vconsole.conf
|
||||
KEYMAP=us
|
||||
FONT=ter-v16b
|
||||
EOF
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nIncreasing file watcher count"
|
||||
|
||||
# This prevents a "too many files" error in Visual Studio Code
|
||||
echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nDisabling Pulse .esd_auth module"
|
||||
|
||||
# Pulse audio loads the `esound-protocol` module, which best I can tell is rarely needed.
|
||||
# That module creates a file called `.esd_auth` in the home directory which I'd prefer to not be there. So...
|
||||
sudo sed -i 's|load-module module-esound-protocol-unix|#load-module module-esound-protocol-unix|g' /etc/pulse/default.pa
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nEnabling Login Display Manager"
|
||||
|
||||
sudo systemctl enable --now sddm.service
|
||||
|
||||
|
||||
echo -e "\nSetup SDDM Theme"
|
||||
|
||||
sudo cat <<EOF > /etc/sddm.conf.d/kde_settings.conf
|
||||
[Autologin]
|
||||
Relogin=false
|
||||
Session=
|
||||
User=
|
||||
|
||||
[General]
|
||||
HaltCommand=/usr/bin/systemctl poweroff
|
||||
RebootCommand=/usr/bin/systemctl reboot
|
||||
|
||||
[Theme]
|
||||
Current=Nordic
|
||||
|
||||
[Users]
|
||||
MaximumUid=60513
|
||||
MinimumUid=1000
|
||||
EOF
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nEnabling bluetooth daemon and setting it to auto-start"
|
||||
|
||||
sudo sed -i 's|#AutoEnable=false|AutoEnable=true|g' /etc/bluetooth/main.conf
|
||||
sudo systemctl enable --now bluetooth.service
|
||||
|
||||
# ------------------------------------------------------------------------
|
||||
|
||||
echo -e "\nEnabling the cups service daemon so we can print"
|
||||
|
||||
systemctl enable --now cups.service
|
||||
sudo ntpd -qg
|
||||
sudo systemctl enable --now ntpd.service
|
||||
sudo systemctl disable dhcpcd.service
|
||||
sudo systemctl stop dhcpcd.service
|
||||
sudo systemctl enable --now NetworkManager.service
|
||||
echo "
|
||||
###############################################################################
|
||||
# Cleaning
|
||||
###############################################################################
|
||||
"
|
||||
# Remove no password sudo rights
|
||||
sed -i 's/^%wheel ALL=(ALL) NOPASSWD: ALL/# %wheel ALL=(ALL) NOPASSWD: ALL/' /etc/sudoers
|
||||
# Add sudo rights
|
||||
sed -i 's/^# %wheel ALL=(ALL) ALL/%wheel ALL=(ALL) ALL/' /etc/sudoers
|
||||
|
||||
# Replace in the same state
|
||||
cd $pwd
|
||||
echo "
|
||||
###############################################################################
|
||||
# Done
|
||||
###############################################################################
|
||||
"
|
|
@ -0,0 +1,39 @@
|
|||
# ArchTitus Installer Script
|
||||
|
||||
<img src="https://i.imgur.com/YiNMnan.png" />
|
||||
|
||||
This README contains the steps I do to install and configure a fully-functional Arch Linux installation containing a desktop environment, all the support packages (network, bluetooth, audio, printers, etc.), along with all my preferred applications and utilities. The shell scripts in this repo allow the entire process to be automated.)
|
||||
|
||||
---
|
||||
## Create Arch ISO
|
||||
|
||||
Download ArchISO from <https://archlinux.org/download/> and put on a USB drive with Ventoy or Etcher
|
||||
|
||||
## Boot Arch ISO
|
||||
|
||||
From initial Prompt type the following commands:
|
||||
|
||||
```
|
||||
pacman -Sy git
|
||||
git clone https://github.com/ChrisTitusTech/ArchTitus
|
||||
cd ArchTitus
|
||||
./archtitus.sh
|
||||
```
|
||||
|
||||
### System Description
|
||||
This is completely automated arch install of the KDE desktop environment on arch using all the packages I use on a daily basis.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
__[Arch Linux Installation Guide](https://github.com/rickellis/Arch-Linux-Install-Guide)__
|
||||
|
||||
### No Wifi
|
||||
|
||||
```bash
|
||||
sudo wifi-menu`
|
||||
```
|
||||
|
||||
## Credits
|
||||
|
||||
- Original packages script was a post install cleanup script called ArchMatic located here: https://github.com/rickellis/ArchMatic
|
||||
- Thank you to all the folks that helped during the creation from YouTube Chat! Here are all those Livestreams showing the creation: <https://www.youtube.com/watch?v=IkMCtkDIhe8&list=PLc7fktTRMBowNaBTsDHlL6X3P3ViX3tYg>
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
bash 0-preinstall.sh
|
||||
arch-chroot /mnt /root/ArchTitus/1-setup.sh
|
||||
source /mnt/root/ArchTitus/install.conf
|
||||
arch-chroot /mnt /usr/bin/runuser -u $username -- /home/$username/ArchTitus/2-user.sh
|
||||
arch-chroot /mnt /root/ArchTitus/3-post-setup.sh
|
|
@ -0,0 +1,111 @@
|
|||
{
|
||||
"files": [
|
||||
"README.md"
|
||||
],
|
||||
"badgeTemplate": "[](#contributors)",
|
||||
"contributorTemplate": "<a href=\"<%= contributor.profile %>\"><b><%= contributor.name %></b></a><br /><%= contributions %>",
|
||||
"imageSize": 100,
|
||||
"commit": false,
|
||||
"contributors": [
|
||||
{
|
||||
"login": "scopatz",
|
||||
"name": "Anthony Scopatz",
|
||||
"avatar_url": "https://avatars2.githubusercontent.com/u/320553?v=4",
|
||||
"profile": "http://www.scopatz.com",
|
||||
"contributions": [
|
||||
"doc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "orangecoloured",
|
||||
"name": "RCKT",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/3314891?v=4",
|
||||
"profile": "https://rckt.cc",
|
||||
"contributions": [
|
||||
"theme"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "varmanishant",
|
||||
"name": "varmanishant",
|
||||
"avatar_url": "https://avatars1.githubusercontent.com/u/4084912?v=4",
|
||||
"profile": "https://github.com/varmanishant",
|
||||
"contributions": [
|
||||
"theme"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "rlerdorf",
|
||||
"name": "Rasmus Lerdorf",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/54641?v=4",
|
||||
"profile": "https://github.com/rlerdorf",
|
||||
"contributions": [
|
||||
"bug",
|
||||
"ideas"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "Luflosi",
|
||||
"name": "Luflosi",
|
||||
"avatar_url": "https://avatars1.githubusercontent.com/u/15217907?v=4",
|
||||
"profile": "https://github.com/Luflosi",
|
||||
"contributions": [
|
||||
"fix",
|
||||
"question",
|
||||
"doc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "connorholyday",
|
||||
"name": "Connor Holyday",
|
||||
"avatar_url": "https://avatars1.githubusercontent.com/u/4559119?v=4",
|
||||
"profile": "https://holyday.me",
|
||||
"contributions": [
|
||||
"fix"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "BlueDrink9",
|
||||
"name": "BlueDrink9",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/26474254?v=4",
|
||||
"profile": "https://github.com/BlueDrink9",
|
||||
"contributions": [
|
||||
"bug"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "brujoand",
|
||||
"name": "Anders Brujordet",
|
||||
"avatar_url": "https://avatars1.githubusercontent.com/u/124421?v=4",
|
||||
"profile": "https://github.com/brujoand",
|
||||
"contributions": [
|
||||
"theme"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "rjshrjndrn",
|
||||
"name": "Rajesh Rajendran",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/2563385?v=4",
|
||||
"profile": "http://www.hackouts.com",
|
||||
"contributions": [
|
||||
"fix"
|
||||
]
|
||||
}
|
||||
],
|
||||
"types": {
|
||||
"theme": {
|
||||
"symbol": "😻",
|
||||
"description": "New theme added to the collection"
|
||||
},
|
||||
"fix": {
|
||||
"symbol": "🛠️",
|
||||
"description": "Fixed a theme"
|
||||
}
|
||||
},
|
||||
"contributorsPerLine": 7,
|
||||
"projectName": "kitty-themes",
|
||||
"projectOwner": "dexpota",
|
||||
"repoType": "github",
|
||||
"repoHost": "https://github.com",
|
||||
"commitConvention": "none"
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
# Contributing to kitty-themes
|
||||
|
||||
We always welcome your pull request! To start contributing follow these simple
|
||||
steps:
|
||||
|
||||
1. Fork the repo and create your branch from `master`;
|
||||
2. Add your theme as config file under `themes` directory;
|
||||
3. Issue the pull request through github;
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2019 Fabrizio Destro <fabrizio@destro.dev>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -0,0 +1,465 @@
|
|||
[iterm2-themes]: https://github.com/mbadolato/iTerm2-Color-Schemes
|
||||
[color-scripts]: https://github.com/stark/Color-Scripts/tree/master/color-scripts
|
||||
[license]: https://opensource.org/licenses/MIT
|
||||
[license-badge]: https://img.shields.io/github/license/dexpota/kitty-themes.svg?style=for-the-badge
|
||||
[kitty-themes-previews]: https://github.com/dexpota/kitty-themes-website/tree/master/previews
|
||||
|
||||

|
||||
|
||||
> **Personalize** your *kitty* terminal and choose your theme from this awesome
|
||||
> collection, for more information on the terminal visit
|
||||
> https://github.com/kovidgoyal/kitty
|
||||
|
||||
[![License: MIT][license-badge]][license]
|
||||
[](#contributors)
|
||||
|
||||
- [About](#about)
|
||||
- [Installation](#installation)
|
||||
- [Source Code](#source-code)
|
||||
- [Conda](#conda)
|
||||
- [License](#license)
|
||||
- [Bring me to the previews!](#previews)
|
||||
- [Contributors](#contributors)
|
||||
|
||||
## About
|
||||
|
||||
In this repository you can find a set of themes to personalize your kitty
|
||||
terminal, these have been ported from [iTerm2-Color-Schemes][iterm2-themes]. You can find
|
||||
the previews for each theme in the [section](#previews) below or in this other
|
||||
[repository](kitty-themes-previews).
|
||||
|
||||
## Installation
|
||||
|
||||
### Source Code
|
||||
|
||||
1. If you want to download and use one of these theme you have two options:
|
||||
- clone the entire *kitty-themes* repository:
|
||||
```bash
|
||||
git clone --depth 1 git@github.com:dexpota/kitty-themes.git ~/.config/kitty/kitty-themes
|
||||
```
|
||||
- or download just one theme:
|
||||
```bash
|
||||
THEME=https://raw.githubusercontent.com/dexpota/kitty-themes/master/themes/3024_Day.conf
|
||||
wget "$THEME" -P ~/.config/kitty/kitty-themes/themes
|
||||
```
|
||||
|
||||
2. Choose a theme and create a symlink:
|
||||
|
||||
```bash
|
||||
cd ~/.config/kitty
|
||||
ln -s ./kitty-themes/themes/Floraverse.conf ~/.config/kitty/theme.conf
|
||||
```
|
||||
|
||||
3. Add this line to your kitty.conf configuration file:
|
||||
|
||||
```
|
||||
include ./theme.conf
|
||||
```
|
||||
|
||||
### Conda
|
||||
|
||||
If you using the ``conda`` package manager, you may also install these themes
|
||||
with the following command:
|
||||
|
||||
```bash
|
||||
conda install -c conda-forge kitty-themes
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
All original content of this repository is licensed with the [MIT
|
||||
License](./LICENSE.md). Whenever possible the author of the theme is cited
|
||||
inside each theme configuration file, together with its license. Hit me up if
|
||||
you find your theme inside this repository and you want a proper citation.
|
||||
|
||||
## Previews
|
||||
|
||||
If you have followed the [installation](#installation) instructions and cloned
|
||||
the entire repo, you have two options to try a theme:
|
||||
|
||||
1. If you have enabled remote control in *kitty* you can run this command:
|
||||
|
||||
```bash
|
||||
kitty @ set-colors -a "~/.config/kitty/kitty-themes/themes/AdventureTime.conf"
|
||||
```
|
||||
|
||||
2. Otherwise you can start another instance of kitty and specify another config
|
||||
file to read from, this will cause *kitty* to read both its normal config
|
||||
file and the specified one:
|
||||
|
||||
```bash
|
||||
kitty -o include="~/.config/kitty/kitty-themes/themes/AdventureTime.conf"
|
||||
```
|
||||
|
||||
### Bonus
|
||||
|
||||
Try your new theme with one of the scripts in [Color-scripts][color-scripts] with this
|
||||
one-liner (requires `jq`):
|
||||
|
||||
```bash
|
||||
COLOR_SCRIPT_REPO=https://api.github.com/repos/stark/Color-Scripts/contents/color-scripts
|
||||
wget -q -O - $(curl -s $COLOR_SCRIPT_REPO | jq '.[] | "\(.path) \(.download_url)"' -r | shuf -n1 | cut -d " " -f2) | bash
|
||||
```
|
||||
|
||||
### 3024 Day
|
||||

|
||||
### 3024 Night
|
||||

|
||||
### AdventureTime
|
||||

|
||||
### Afterglow
|
||||

|
||||
### AlienBlood
|
||||

|
||||
### Alucard
|
||||

|
||||
### Apprentice
|
||||

|
||||
### Argonaut
|
||||

|
||||
### Arthur
|
||||

|
||||
### AtelierSulphurpool
|
||||

|
||||
### Atom
|
||||

|
||||
### AtomOneLight
|
||||

|
||||
### ayu
|
||||

|
||||
### ayu light
|
||||

|
||||
### ayu mirage
|
||||

|
||||
### Batman
|
||||

|
||||
### Belafonte Day
|
||||

|
||||
### Belafonte Night
|
||||

|
||||
### BirdsOfParadise
|
||||

|
||||
### Blazer
|
||||

|
||||
### Borland
|
||||

|
||||
### Bright Lights
|
||||

|
||||
### Broadcast
|
||||

|
||||
### Brogrammer
|
||||

|
||||
### C64
|
||||

|
||||
### Chalk
|
||||

|
||||
### Chalkboard
|
||||

|
||||
### Ciapre
|
||||

|
||||
### CLRS
|
||||

|
||||
### Cobalt2
|
||||

|
||||
### Cobalt Neon
|
||||

|
||||
### CrayonPonyFish
|
||||

|
||||
### Dark Pastel
|
||||

|
||||
### Darkside
|
||||

|
||||
### Desert
|
||||

|
||||
### DimmedMonokai
|
||||

|
||||
### DotGov
|
||||

|
||||
### Dracula
|
||||

|
||||
### Dumbledore
|
||||

|
||||
### Duotone Dark
|
||||

|
||||
### Earthsong
|
||||

|
||||
### Elemental
|
||||

|
||||
### ENCOM
|
||||

|
||||
### Espresso
|
||||

|
||||
### Espresso Libre
|
||||

|
||||
### Fideloper
|
||||

|
||||
### FishTank
|
||||

|
||||
### Flat
|
||||

|
||||
### Flatland
|
||||

|
||||
### Floraverse
|
||||

|
||||
### FrontEndDelight
|
||||

|
||||
### FunForrest
|
||||

|
||||
### Galaxy
|
||||

|
||||
### Github
|
||||

|
||||
### Glacier
|
||||

|
||||
### GoaBase
|
||||

|
||||
### Grape
|
||||

|
||||
### Grass
|
||||

|
||||
### gruvbox dark
|
||||

|
||||
### gruvbox light
|
||||

|
||||
### Hardcore
|
||||

|
||||
### Harper
|
||||

|
||||
### Highway
|
||||

|
||||
### Hipster Green
|
||||

|
||||
### Homebrew
|
||||

|
||||
### Hurtado
|
||||

|
||||
### Hybrid
|
||||

|
||||
### IC Green PPL
|
||||

|
||||
### IC Orange PPL
|
||||

|
||||
### idleToes
|
||||

|
||||
### IR Black
|
||||

|
||||
### Jackie Brown
|
||||

|
||||
### Japanesque
|
||||

|
||||
### Jellybeans
|
||||

|
||||
### JetBrains Darcula
|
||||

|
||||
### Kibble
|
||||

|
||||
### Later This Evening
|
||||

|
||||
### Lavandula
|
||||

|
||||
### LiquidCarbon
|
||||

|
||||
### LiquidCarbonTransparent
|
||||

|
||||
### LiquidCarbonTransparentInverse
|
||||

|
||||
### Man Page
|
||||

|
||||
### Material
|
||||

|
||||
### MaterialDark
|
||||

|
||||
### Mathias
|
||||

|
||||
### Medallion
|
||||

|
||||
### Misterioso
|
||||

|
||||
### Molokai
|
||||

|
||||
### MonaLisa
|
||||

|
||||
### Monokai Classic
|
||||

|
||||
### Monokai Pro
|
||||

|
||||
### Monokai Pro (Filter Machine)
|
||||
/preview.png)
|
||||
### Monokai Pro (Filter Octagon)
|
||||
/preview.png)
|
||||
### Monokai Pro (Filter Ristretto)
|
||||
/preview.png)
|
||||
### Monokai Pro (Filter Spectrum)
|
||||
/preview.png)
|
||||
### Monokai Soda
|
||||

|
||||
### N0tch2k
|
||||

|
||||
### Neopolitan
|
||||

|
||||
### Neutron
|
||||

|
||||
### NightLion v1
|
||||

|
||||
### NightLion v2
|
||||

|
||||
### Nova
|
||||

|
||||
### Novel
|
||||

|
||||
### Obsidian
|
||||

|
||||
### Ocean
|
||||

|
||||
### OceanicMaterial
|
||||

|
||||
### Ollie
|
||||

|
||||
### OneDark
|
||||

|
||||
### Parasio Dark
|
||||

|
||||
### PaulMillr
|
||||

|
||||
### PencilDark
|
||||

|
||||
### PencilLight
|
||||

|
||||
### Piatto Light
|
||||

|
||||
### Pnevma
|
||||

|
||||
### Pro
|
||||

|
||||
### Red Alert
|
||||

|
||||
### Red Sands
|
||||

|
||||
### Relaxed Afterglow
|
||||

|
||||
### Renault Style
|
||||

|
||||
### Renault Style Light
|
||||

|
||||
### Rippedcasts
|
||||

|
||||
### Royal
|
||||

|
||||
### Seafoam Pastel
|
||||

|
||||
### SeaShells
|
||||

|
||||
### Seti
|
||||

|
||||
### Shaman
|
||||

|
||||
### Slate
|
||||

|
||||
### Smyck
|
||||

|
||||
### snazzy
|
||||

|
||||
### SoftServer
|
||||

|
||||
### Solarized Darcula
|
||||

|
||||
### Solarized Dark
|
||||

|
||||
### Solarized Dark Higher Contrast
|
||||

|
||||
### Solarized Dark - Patched
|
||||

|
||||
### Solarized Light
|
||||

|
||||
### Source Code X
|
||||

|
||||
### Spacedust
|
||||

|
||||
### SpaceGray
|
||||

|
||||
### SpaceGray Eighties
|
||||

|
||||
### SpaceGray Eighties Dull
|
||||

|
||||
### Spiderman
|
||||

|
||||
### Spring
|
||||

|
||||
### Square
|
||||

|
||||
### Sundried
|
||||

|
||||
### Symfonic
|
||||

|
||||
### Tango Dark
|
||||

|
||||
### Tango Light
|
||||

|
||||
### Teerb
|
||||

|
||||
### Thayer Bright
|
||||

|
||||
### The Hulk
|
||||

|
||||
### Tomorrow
|
||||

|
||||
### Tomorrow Night
|
||||

|
||||
### Tomorrow Night Blue
|
||||

|
||||
### Tomorrow Night Bright
|
||||

|
||||
### Tomorrow Night Eighties
|
||||

|
||||
### ToyChest
|
||||

|
||||
### Treehouse
|
||||

|
||||
### Twilight
|
||||

|
||||
### Ubuntu
|
||||

|
||||
### Urple
|
||||

|
||||
### Vaughn
|
||||

|
||||
### VibrantInk
|
||||

|
||||
### WarmNeon
|
||||

|
||||
### Wez
|
||||

|
||||
### WildCherry
|
||||

|
||||
### Wombat
|
||||

|
||||
### Wryan
|
||||

|
||||
### Zenburn
|
||||

|
||||
|
||||
## Contributors
|
||||
|
||||
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
||||
|
||||
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
||||
<!-- prettier-ignore -->
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center"><a href="http://www.scopatz.com"><b>Anthony Scopatz</b></a><br /><a href="https://github.com/dexpota/kitty-themes/commits?author=scopatz" title="Documentation">📖</a></td>
|
||||
<td align="center"><a href="https://rckt.cc"><b>RCKT</b></a><br /><a href="#theme-orangecoloured" title="New theme added to the collection">😻</a></td>
|
||||
<td align="center"><a href="https://github.com/varmanishant"><b>varmanishant</b></a><br /><a href="#theme-varmanishant" title="New theme added to the collection">😻</a></td>
|
||||
<td align="center"><a href="https://github.com/rlerdorf"><b>Rasmus Lerdorf</b></a><br /><a href="https://github.com/dexpota/kitty-themes/issues?q=author%3Arlerdorf" title="Bug reports">🐛</a> <a href="#ideas-rlerdorf" title="Ideas, Planning, & Feedback">🤔</a></td>
|
||||
<td align="center"><a href="https://github.com/Luflosi"><b>Luflosi</b></a><br /><a href="#fix-Luflosi" title="Fixed a theme">🛠️</a> <a href="#question-Luflosi" title="Answering Questions">💬</a> <a href="https://github.com/dexpota/kitty-themes/commits?author=Luflosi" title="Documentation">📖</a></td>
|
||||
<td align="center"><a href="https://holyday.me"><b>Connor Holyday</b></a><br /><a href="#fix-connorholyday" title="Fixed a theme">🛠️</a></td>
|
||||
<td align="center"><a href="https://github.com/BlueDrink9"><b>BlueDrink9</b></a><br /><a href="https://github.com/dexpota/kitty-themes/issues?q=author%3ABlueDrink9" title="Bug reports">🐛</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><a href="https://github.com/brujoand"><b>Anders Brujordet</b></a><br /><a href="#theme-brujoand" title="New theme added to the collection">😻</a></td>
|
||||
<td align="center"><a href="http://www.hackouts.com"><b>Rajesh Rajendran</b></a><br /><a href="#fix-rjshrjndrn" title="Fixed a theme">🛠️</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
||||
|
||||
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
|
|
@ -0,0 +1,21 @@
|
|||
background #f7f7f7
|
||||
foreground #494542
|
||||
cursor #494542
|
||||
selection_background #a4a1a1
|
||||
color0 #090200
|
||||
color8 #5b5754
|
||||
color1 #da2c20
|
||||
color9 #e8bacf
|
||||
color2 #00a152
|
||||
color10 #3a3332
|
||||
color3 #fcec02
|
||||
color11 #494542
|
||||
color4 #00a0e4
|
||||
color12 #7f7c7b
|
||||
color5 #a06994
|
||||
color13 #d6d4d3
|
||||
color6 #b5e4f4
|
||||
color14 #ccab53
|
||||
color7 #a4a1a1
|
||||
color15 #f7f7f7
|
||||
selection_foreground #f7f7f7
|
|
@ -0,0 +1,21 @@
|
|||
background #090200
|
||||
foreground #a4a1a1
|
||||
cursor #a4a1a1
|
||||
selection_background #494542
|
||||
color0 #090200
|
||||
color8 #5b5754
|
||||
color1 #da2c20
|
||||
color9 #e8bacf
|
||||
color2 #00a152
|
||||
color10 #3a3332
|
||||
color3 #fcec02
|
||||
color11 #494542
|
||||
color4 #00a0e4
|
||||
color12 #7f7c7b
|
||||
color5 #a06994
|
||||
color13 #d6d4d3
|
||||
color6 #b5e4f4
|
||||
color14 #ccab53
|
||||
color7 #a4a1a1
|
||||
color15 #f7f7f7
|
||||
selection_foreground #090200
|
|
@ -0,0 +1,21 @@
|
|||
background #1e1c44
|
||||
foreground #f8dbc0
|
||||
cursor #eebf37
|
||||
selection_background #6f6a4e
|
||||
color0 #050404
|
||||
color8 #4e7bbf
|
||||
color1 #bc0013
|
||||
color9 #fc5e59
|
||||
color2 #49b117
|
||||
color10 #9dff6e
|
||||
color3 #e6741d
|
||||
color11 #efc11a
|
||||
color4 #0f49c6
|
||||
color12 #1896c6
|
||||
color5 #665992
|
||||
color13 #9a5952
|
||||
color6 #6fa497
|
||||
color14 #c8f9f3
|
||||
color7 #f8dbc0
|
||||
color15 #f5f4fb
|
||||
selection_foreground #1e1c44
|
|
@ -0,0 +1,21 @@
|
|||
background #202020
|
||||
foreground #d0d0d0
|
||||
cursor #d0d0d0
|
||||
selection_background #303030
|
||||
color0 #151515
|
||||
color8 #505050
|
||||
color1 #ac4142
|
||||
color9 #ac4142
|
||||
color2 #7e8d50
|
||||
color10 #7e8d50
|
||||
color3 #e5b566
|
||||
color11 #e5b566
|
||||
color4 #6c99ba
|
||||
color12 #6c99ba
|
||||
color5 #9e4e85
|
||||
color13 #9e4e85
|
||||
color6 #7dd5cf
|
||||
color14 #7dd5cf
|
||||
color7 #d0d0d0
|
||||
color15 #f5f5f5
|
||||
selection_foreground #202020
|
|
@ -0,0 +1,21 @@
|
|||
background #0f160f
|
||||
foreground #637d75
|
||||
cursor #73f990
|
||||
selection_background #1d4025
|
||||
color0 #112615
|
||||
color8 #3c4711
|
||||
color1 #7f2b26
|
||||
color9 #df8008
|
||||
color2 #2f7e25
|
||||
color10 #18e000
|
||||
color3 #707f23
|
||||
color11 #bde000
|
||||
color4 #2f697f
|
||||
color12 #00a9df
|
||||
color5 #47577e
|
||||
color13 #0058df
|
||||
color6 #317f76
|
||||
color14 #00dfc3
|
||||
color7 #647d75
|
||||
color15 #73f990
|
||||
selection_foreground #0f160f
|
|
@ -0,0 +1,21 @@
|
|||
background #222330
|
||||
foreground #cef3ff
|
||||
cursor #ffffff
|
||||
selection_background #44475a
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ff5555
|
||||
color9 #ff5454
|
||||
color2 #fa0074
|
||||
color10 #50fa7b
|
||||
color3 #7f0a1f
|
||||
color11 #f0fa8b
|
||||
color4 #3282ff
|
||||
color12 #1200f8
|
||||
color5 #1b3cff
|
||||
color13 #ff78c5
|
||||
color6 #0037fc
|
||||
color14 #8ae9fc
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #222330
|
|
@ -0,0 +1,26 @@
|
|||
# Apprentice by Romain Lafourcade, https://github.com/romainl
|
||||
# This work is licensed under the terms of the MIT license.
|
||||
# For a copy, see https://opensource.org/licenses/MIT.
|
||||
|
||||
cursor #c7c7c7
|
||||
cursor_text_color #feffff
|
||||
selection_foreground #3e3e3e
|
||||
selection_background #c1ddff
|
||||
foreground #c8c8c8
|
||||
background #323232
|
||||
color0 #252525
|
||||
color8 #555555
|
||||
color1 #be7472
|
||||
color9 #ff9900
|
||||
color2 #709772
|
||||
color10 #97bb98
|
||||
color3 #989772
|
||||
color11 #fefdbc
|
||||
color4 #7199bc
|
||||
color12 #9fbdde
|
||||
color5 #727399
|
||||
color13 #989abc
|
||||
color6 #719899
|
||||
color14 #6fbbbc
|
||||
color7 #7f7f7f
|
||||
color15 #feffff
|
|
@ -0,0 +1,21 @@
|
|||
background #0d0f18
|
||||
foreground #fffaf3
|
||||
cursor #ff0017
|
||||
selection_background #002a3a
|
||||
color0 #222222
|
||||
color8 #444444
|
||||
color1 #ff000f
|
||||
color9 #ff273f
|
||||
color2 #8ce00a
|
||||
color10 #abe05a
|
||||
color3 #ffb900
|
||||
color11 #ffd141
|
||||
color4 #008df8
|
||||
color12 #0092ff
|
||||
color5 #6c43a5
|
||||
color13 #9a5feb
|
||||
color6 #00d7eb
|
||||
color14 #67ffef
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #0d0f18
|
|
@ -0,0 +1,21 @@
|
|||
background #1c1c1c
|
||||
foreground #ddeedd
|
||||
cursor #e2bbef
|
||||
selection_background #4d4d4d
|
||||
color0 #3d352a
|
||||
color8 #554444
|
||||
color1 #cd5c5c
|
||||
color9 #cc5533
|
||||
color2 #86af80
|
||||
color10 #88aa22
|
||||
color3 #e8ae5b
|
||||
color11 #ffa75d
|
||||
color4 #6495ed
|
||||
color12 #87ceeb
|
||||
color5 #deb887
|
||||
color13 #996600
|
||||
color6 #b0c4de
|
||||
color14 #b0c4de
|
||||
color7 #bbaa99
|
||||
color15 #ddccbb
|
||||
selection_foreground #1c1c1c
|
|
@ -0,0 +1,21 @@
|
|||
background #202745
|
||||
foreground #969cb3
|
||||
cursor #969cb3
|
||||
selection_background #5e6686
|
||||
color0 #202745
|
||||
color8 #6a7394
|
||||
color1 #c84821
|
||||
color9 #c76a28
|
||||
color2 #ab9639
|
||||
color10 #283256
|
||||
color3 #c08a2f
|
||||
color11 #5e6686
|
||||
color4 #3d8ed0
|
||||
color12 #898ea3
|
||||
color5 #6678cc
|
||||
color13 #dee1f0
|
||||
color6 #21a1c8
|
||||
color14 #9c6279
|
||||
color7 #969cb3
|
||||
color15 #f4f7ff
|
||||
selection_foreground #202745
|
|
@ -0,0 +1,21 @@
|
|||
background #161718
|
||||
foreground #c4c8c5
|
||||
cursor #d0d0d0
|
||||
selection_background #444444
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #fc5ef0
|
||||
color9 #fc5ef0
|
||||
color2 #86c38a
|
||||
color10 #94f936
|
||||
color3 #ffd6b1
|
||||
color11 #f5ffa7
|
||||
color4 #85befd
|
||||
color12 #95cbfe
|
||||
color5 #b9b5fc
|
||||
color13 #b9b5fc
|
||||
color6 #85befd
|
||||
color14 #85befd
|
||||
color7 #dfdfdf
|
||||
color15 #dfdfdf
|
||||
selection_foreground #161718
|
|
@ -0,0 +1,21 @@
|
|||
background #f8f8f8
|
||||
foreground #2a2b33
|
||||
cursor #bbbbbb
|
||||
selection_background #ececec
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #de3d35
|
||||
color9 #de3d35
|
||||
color2 #3e953a
|
||||
color10 #3e953a
|
||||
color3 #d2b67b
|
||||
color11 #d2b67b
|
||||
color4 #2f5af3
|
||||
color12 #2f5af3
|
||||
color5 #950095
|
||||
color13 #a00095
|
||||
color6 #3e953a
|
||||
color14 #3e953a
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #f8f8f8
|
|
@ -0,0 +1,21 @@
|
|||
background #1b1d1e
|
||||
foreground #6e6e6e
|
||||
cursor #fcee0b
|
||||
selection_background #4d4f4c
|
||||
color0 #1b1d1e
|
||||
color8 #505354
|
||||
color1 #e6db43
|
||||
color9 #fff68d
|
||||
color2 #c8be46
|
||||
color10 #fff27c
|
||||
color3 #f3fd21
|
||||
color11 #feed6c
|
||||
color4 #737074
|
||||
color12 #909495
|
||||
color5 #737271
|
||||
color13 #9a999d
|
||||
color6 #615f5e
|
||||
color14 #a2a2a5
|
||||
color7 #c5c5be
|
||||
color15 #dadad5
|
||||
selection_foreground #1b1d1e
|
|
@ -0,0 +1,21 @@
|
|||
background #d4ccb9
|
||||
foreground #45363b
|
||||
cursor #45363b
|
||||
selection_background #958b83
|
||||
color0 #20111a
|
||||
color8 #5e5252
|
||||
color1 #bd100d
|
||||
color9 #bd100d
|
||||
color2 #858062
|
||||
color10 #858062
|
||||
color3 #e9a448
|
||||
color11 #e9a448
|
||||
color4 #416978
|
||||
color12 #416978
|
||||
color5 #96522b
|
||||
color13 #96522b
|
||||
color6 #98999c
|
||||
color14 #98999c
|
||||
color7 #958b83
|
||||
color15 #d4ccb9
|
||||
selection_foreground #d4ccb9
|
|
@ -0,0 +1,21 @@
|
|||
background #20111a
|
||||
foreground #958b83
|
||||
cursor #958b83
|
||||
selection_background #45363b
|
||||
color0 #20111a
|
||||
color8 #5e5252
|
||||
color1 #bd100d
|
||||
color9 #bd100d
|
||||
color2 #858062
|
||||
color10 #858062
|
||||
color3 #e9a448
|
||||
color11 #e9a448
|
||||
color4 #416978
|
||||
color12 #416978
|
||||
color5 #96522b
|
||||
color13 #96522b
|
||||
color6 #98999c
|
||||
color14 #98999c
|
||||
color7 #958b83
|
||||
color15 #d4ccb9
|
||||
selection_foreground #20111a
|
|
@ -0,0 +1,21 @@
|
|||
background #2a1e1d
|
||||
foreground #dfdab7
|
||||
cursor #573d25
|
||||
selection_background #563c27
|
||||
color0 #573d25
|
||||
color8 #9a6b49
|
||||
color1 #be2d26
|
||||
color9 #e84526
|
||||
color2 #6ba08a
|
||||
color10 #94d7ba
|
||||
color3 #e99c29
|
||||
color11 #d0d04f
|
||||
color4 #5a86ac
|
||||
color12 #b8d3ed
|
||||
color5 #ab80a6
|
||||
color13 #d09dca
|
||||
color6 #74a5ac
|
||||
color14 #92ced6
|
||||
color7 #dfdab7
|
||||
color15 #fff9d4
|
||||
selection_foreground #2a1e1d
|
|
@ -0,0 +1,21 @@
|
|||
background #0d1925
|
||||
foreground #d9e5f1
|
||||
cursor #d9e5f1
|
||||
color0 #000000
|
||||
color8 #252525
|
||||
color1 #b87979
|
||||
color9 #dabdbd
|
||||
color2 #79b879
|
||||
color10 #bddabd
|
||||
color3 #b8b879
|
||||
color11 #dadabd
|
||||
color4 #7979b8
|
||||
color12 #bdbdda
|
||||
color5 #b879b8
|
||||
color13 #dabdda
|
||||
color6 #79b8b8
|
||||
color14 #bddada
|
||||
color7 #d9d9d9
|
||||
color15 #ffffff
|
||||
selection_foreground #0d1925
|
||||
selection_background #d9e6f2
|
|
@ -0,0 +1,21 @@
|
|||
background #0000a3
|
||||
foreground #ffff4d
|
||||
cursor #ffa460
|
||||
selection_background #a3a3a3
|
||||
color0 #4e4e4e
|
||||
color8 #7c7c7c
|
||||
color1 #ff6b60
|
||||
color9 #ffb6b0
|
||||
color2 #a7ff60
|
||||
color10 #ceffab
|
||||
color3 #ffffb6
|
||||
color11 #ffffcb
|
||||
color4 #96cafd
|
||||
color12 #b5dcfe
|
||||
color5 #ff73fd
|
||||
color13 #ff9cfe
|
||||
color6 #c6c4fd
|
||||
color14 #dfdffe
|
||||
color7 #eeeeee
|
||||
color15 #ffffff
|
||||
selection_foreground #0000a3
|
|
@ -0,0 +1,21 @@
|
|||
background #191919
|
||||
foreground #b2c8d6
|
||||
cursor #f34a00
|
||||
selection_background #b2c8d6
|
||||
color0 #191919
|
||||
color8 #191919
|
||||
color1 #ff355b
|
||||
color9 #ff355b
|
||||
color2 #b6e875
|
||||
color10 #b6e875
|
||||
color3 #ffc150
|
||||
color11 #ffc150
|
||||
color4 #75d3ff
|
||||
color12 #75d4ff
|
||||
color5 #b975e6
|
||||
color13 #b975e6
|
||||
color6 #6cbeb5
|
||||
color14 #6cbeb5
|
||||
color7 #c1c8d6
|
||||
color15 #c1c8d6
|
||||
selection_foreground #191919
|
|
@ -0,0 +1,21 @@
|
|||
background #2b2b2b
|
||||
foreground #e5e1db
|
||||
cursor #ffffff
|
||||
selection_background #5a637e
|
||||
color0 #000000
|
||||
color8 #323232
|
||||
color1 #da4839
|
||||
color9 #ff7b6a
|
||||
color2 #509f50
|
||||
color10 #83d082
|
||||
color3 #ffd249
|
||||
color11 #ffff7b
|
||||
color4 #6d9cbd
|
||||
color12 #9fcef0
|
||||
color5 #cfcfff
|
||||
color13 #ffffff
|
||||
color6 #6d9cbd
|
||||
color14 #a0cef0
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #2b2b2b
|
|
@ -0,0 +1,21 @@
|
|||
background #131313
|
||||
foreground #d6dae4
|
||||
cursor #b9b9b9
|
||||
selection_background #1f1f1f
|
||||
color0 #1f1f1f
|
||||
color8 #d6dae4
|
||||
color1 #f71118
|
||||
color9 #de342e
|
||||
color2 #2cc55d
|
||||
color10 #1dd260
|
||||
color3 #ecb90f
|
||||
color11 #f2bd09
|
||||
color4 #2a84d2
|
||||
color12 #0f80d5
|
||||
color5 #4e59b7
|
||||
color13 #524fb9
|
||||
color6 #0f80d5
|
||||
color14 #0f7cda
|
||||
color7 #d6dae4
|
||||
color15 #ffffff
|
||||
selection_foreground #131313
|
|
@ -0,0 +1,21 @@
|
|||
background #40318d
|
||||
foreground #7869c4
|
||||
cursor #7869c4
|
||||
selection_background #7869c4
|
||||
color0 #090300
|
||||
color8 #000000
|
||||
color1 #883932
|
||||
color9 #883932
|
||||
color2 #55a049
|
||||
color10 #55a049
|
||||
color3 #bfce72
|
||||
color11 #bfce72
|
||||
color4 #40318d
|
||||
color12 #40318d
|
||||
color5 #8b3f96
|
||||
color13 #8a3e95
|
||||
color6 #67b6bd
|
||||
color14 #67b6bd
|
||||
color7 #ffffff
|
||||
color15 #f7f7f7
|
||||
selection_foreground #40318d
|
|
@ -0,0 +1,21 @@
|
|||
background #ffffff
|
||||
foreground #262626
|
||||
cursor #6fd2fc
|
||||
selection_background #6fd2fc
|
||||
color0 #000000
|
||||
color8 #545753
|
||||
color1 #f72729
|
||||
color9 #fb0416
|
||||
color2 #32895c
|
||||
color10 #2cc631
|
||||
color3 #f96f1c
|
||||
color11 #fcd627
|
||||
color4 #125ccf
|
||||
color12 #156ffe
|
||||
color5 #9f00bc
|
||||
color13 #e800b0
|
||||
color6 #32c2c0
|
||||
color14 #39d5ce
|
||||
color7 #b2b2b2
|
||||
color15 #ededec
|
||||
selection_foreground #ffffff
|
|
@ -0,0 +1,21 @@
|
|||
background #2b2c2e
|
||||
foreground #d2d8d9
|
||||
cursor #708183
|
||||
selection_background #e3e8ed
|
||||
color0 #7c8a8f
|
||||
color8 #888888
|
||||
color1 #b23a51
|
||||
color9 #f24840
|
||||
color2 #789a69
|
||||
color10 #80c46f
|
||||
color3 #b9ab4a
|
||||
color11 #ffeb62
|
||||
color4 #2a7fac
|
||||
color12 #4095ff
|
||||
color5 #bc4f5a
|
||||
color13 #fb5175
|
||||
color6 #44a799
|
||||
color14 #52ccbd
|
||||
color7 #d2d8d9
|
||||
color15 #d2d8d9
|
||||
selection_foreground #2b2c2e
|
|
@ -0,0 +1,21 @@
|
|||
background #29262f
|
||||
foreground #d9e6f2
|
||||
cursor #d9e6f2
|
||||
selection_background #073642
|
||||
color0 #000000
|
||||
color8 #323232
|
||||
color1 #c37372
|
||||
color9 #dbaaaa
|
||||
color2 #72c373
|
||||
color10 #aadbaa
|
||||
color3 #c2c372
|
||||
color11 #dadbaa
|
||||
color4 #7372c3
|
||||
color12 #aaaadb
|
||||
color5 #c372c2
|
||||
color13 #dbaada
|
||||
color6 #72c2c3
|
||||
color14 #aadadb
|
||||
color7 #d9d9d9
|
||||
color15 #ffffff
|
||||
selection_foreground #29262f
|
|
@ -0,0 +1,21 @@
|
|||
background #181c27
|
||||
foreground #ada37a
|
||||
cursor #91805a
|
||||
selection_background #172539
|
||||
color0 #181818
|
||||
color8 #555555
|
||||
color1 #800009
|
||||
color9 #ab3834
|
||||
color2 #48513b
|
||||
color10 #a6a65d
|
||||
color3 #cc8a3e
|
||||
color11 #dcde7b
|
||||
color4 #566d8c
|
||||
color12 #2f97c6
|
||||
color5 #724c7c
|
||||
color13 #d33060
|
||||
color6 #5b4f4a
|
||||
color14 #f3dab1
|
||||
color7 #ada37e
|
||||
color15 #f3f3f3
|
||||
selection_foreground #181c27
|
|
@ -0,0 +1,21 @@
|
|||
background #122637
|
||||
foreground #ffffff
|
||||
cursor #f0cb09
|
||||
selection_background #18344f
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ff0000
|
||||
color9 #f40d17
|
||||
color2 #37dd21
|
||||
color10 #3bcf1d
|
||||
color3 #fee409
|
||||
color11 #ecc809
|
||||
color4 #1460d2
|
||||
color12 #5555ff
|
||||
color5 #ff005d
|
||||
color13 #ff55ff
|
||||
color6 #00bbbb
|
||||
color14 #6ae3f9
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #122637
|
|
@ -0,0 +1,21 @@
|
|||
background #142838
|
||||
foreground #8ff586
|
||||
cursor #c4206f
|
||||
selection_background #084fb0
|
||||
color0 #142630
|
||||
color8 #fff688
|
||||
color1 #ff2320
|
||||
color9 #d4312e
|
||||
color2 #3aa5ff
|
||||
color10 #8ff586
|
||||
color3 #e9e75c
|
||||
color11 #e9f06d
|
||||
color4 #8ff586
|
||||
color12 #3c7dd2
|
||||
color5 #781aa0
|
||||
color13 #8230a7
|
||||
color6 #8ff586
|
||||
color14 #6cbc67
|
||||
color7 #ba45b1
|
||||
color15 #8ff586
|
||||
selection_foreground #142838
|
|
@ -0,0 +1,21 @@
|
|||
background #140607
|
||||
foreground #685259
|
||||
cursor #685259
|
||||
selection_background #2a1a1c
|
||||
color0 #2a1a1c
|
||||
color8 #3c2a2e
|
||||
color1 #90002a
|
||||
color9 #c5245c
|
||||
color2 #579523
|
||||
color10 #8dff56
|
||||
color3 #aa301b
|
||||
color11 #c7371d
|
||||
color4 #8b87af
|
||||
color12 #cfc9ff
|
||||
color5 #682e50
|
||||
color13 #fb6cb9
|
||||
color6 #e8a766
|
||||
color14 #ffceae
|
||||
color7 #685259
|
||||
color15 #af949d
|
||||
selection_foreground #140607
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #ffffff
|
||||
cursor #bbbbbb
|
||||
selection_background #b5d5ff
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ff5555
|
||||
color9 #ff5555
|
||||
color2 #55ff55
|
||||
color10 #55ff55
|
||||
color3 #ffff55
|
||||
color11 #ffff55
|
||||
color4 #5555ff
|
||||
color12 #5555ff
|
||||
color5 #ff55ff
|
||||
color13 #ff55ff
|
||||
color6 #55ffff
|
||||
color14 #55ffff
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #212324
|
||||
foreground #b9b9b9
|
||||
cursor #bbbbbb
|
||||
selection_background #2f3333
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #e8331c
|
||||
color9 #df5a4f
|
||||
color2 #68c156
|
||||
color10 #76b768
|
||||
color3 #f1d32b
|
||||
color11 #eed64a
|
||||
color4 #1c98e8
|
||||
color12 #387bd2
|
||||
color5 #8e69c8
|
||||
color13 #957bbd
|
||||
color6 #1c98e8
|
||||
color14 #3d96e2
|
||||
color7 #b9b9b9
|
||||
color15 #b9b9b9
|
||||
selection_foreground #212324
|
|
@ -0,0 +1,21 @@
|
|||
background #333333
|
||||
foreground #ffffff
|
||||
cursor #00ff00
|
||||
selection_background #b5d5ff
|
||||
color0 #4d4d4d
|
||||
color8 #545454
|
||||
color1 #ff2b2b
|
||||
color9 #ff5555
|
||||
color2 #98fb98
|
||||
color10 #55ff55
|
||||
color3 #f0e68c
|
||||
color11 #ffff55
|
||||
color4 #cd853f
|
||||
color12 #87ceff
|
||||
color5 #ffdead
|
||||
color13 #ff55ff
|
||||
color6 #ffa0a0
|
||||
color14 #ffd700
|
||||
color7 #f5deb3
|
||||
color15 #ffffff
|
||||
selection_foreground #333333
|
|
@ -0,0 +1,21 @@
|
|||
background #1e1e1e
|
||||
foreground #b8bcb9
|
||||
cursor #f83d19
|
||||
selection_background #292c31
|
||||
color0 #3a3c43
|
||||
color8 #888987
|
||||
color1 #be3e48
|
||||
color9 #fb001e
|
||||
color2 #869a3a
|
||||
color10 #0e712e
|
||||
color3 #c4a535
|
||||
color11 #c37033
|
||||
color4 #4e76a1
|
||||
color12 #176ce3
|
||||
color5 #855b8d
|
||||
color13 #fb0067
|
||||
color6 #568ea3
|
||||
color14 #2d6f6c
|
||||
color7 #b8bcb9
|
||||
color15 #fcffb8
|
||||
selection_foreground #1e1e1e
|
|
@ -0,0 +1,21 @@
|
|||
background #252b35
|
||||
foreground #eaeaea
|
||||
cursor #d9002f
|
||||
selection_background #194080
|
||||
color0 #181818
|
||||
color8 #181818
|
||||
color1 #bf081d
|
||||
color9 #bf081d
|
||||
color2 #3d9751
|
||||
color10 #3d9751
|
||||
color3 #f6bb33
|
||||
color11 #f6bb33
|
||||
color4 #16b1df
|
||||
color12 #16b1df
|
||||
color5 #772fb0
|
||||
color13 #772fb0
|
||||
color6 #8bd1ed
|
||||
color14 #8bd1ed
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #252b35
|
|
@ -0,0 +1,21 @@
|
|||
background #1e1f28
|
||||
foreground #f8f8f2
|
||||
cursor #bbbbbb
|
||||
selection_background #44475a
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ff5555
|
||||
color9 #ff5454
|
||||
color2 #50fa7b
|
||||
color10 #50fa7b
|
||||
color3 #f0fa8b
|
||||
color11 #f0fa8b
|
||||
color4 #bd92f8
|
||||
color12 #bd92f8
|
||||
color5 #ff78c5
|
||||
color13 #ff78c5
|
||||
color6 #8ae9fc
|
||||
color14 #8ae9fc
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #1e1f28
|
|
@ -0,0 +1,21 @@
|
|||
background #422553
|
||||
foreground #c4c8c5
|
||||
cursor #c4c8c5
|
||||
selection_background #008aff
|
||||
color0 #2b283d
|
||||
color8 #413e53
|
||||
color1 #ae0000
|
||||
color9 #d3a624
|
||||
color2 #3e7c54
|
||||
color10 #aaaaaa
|
||||
color3 #f0c75e
|
||||
color11 #716254
|
||||
color4 #415baf
|
||||
color12 #946a2c
|
||||
color5 #9445ae
|
||||
color13 #b294ba
|
||||
color6 #008aff
|
||||
color14 #25de50
|
||||
color7 #850000
|
||||
color15 #c9c9c9
|
||||
selection_foreground #422553
|
|
@ -0,0 +1,21 @@
|
|||
background #1f1c27
|
||||
foreground #b6a0ff
|
||||
cursor #ff9738
|
||||
selection_background #353146
|
||||
color0 #1f1c27
|
||||
color8 #353146
|
||||
color1 #d8393d
|
||||
color9 #d8393d
|
||||
color2 #2dcc72
|
||||
color10 #2dcc72
|
||||
color3 #d8b76e
|
||||
color11 #d8b76e
|
||||
color4 #ffc183
|
||||
color12 #ffc183
|
||||
color5 #dd8d40
|
||||
color13 #dd8d40
|
||||
color6 #2388ff
|
||||
color14 #2388ff
|
||||
color7 #b6a0ff
|
||||
color15 #e9e4ff
|
||||
selection_foreground #1f1c27
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #00a595
|
||||
cursor #bbbbbb
|
||||
selection_background #00a48c
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #9f0000
|
||||
color9 #ff0000
|
||||
color2 #008b00
|
||||
color10 #00ee00
|
||||
color3 #ffcf00
|
||||
color11 #ffff00
|
||||
color4 #0081ff
|
||||
color12 #0000ff
|
||||
color5 #bc00ca
|
||||
color13 #ff00ff
|
||||
color6 #008b8b
|
||||
color14 #00cdcd
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #282420
|
||||
foreground #e5c6a8
|
||||
cursor #f6f6ec
|
||||
selection_background #111417
|
||||
color0 #111417
|
||||
color8 #665e54
|
||||
color1 #c84134
|
||||
color9 #ff6459
|
||||
color2 #84c44b
|
||||
color10 #97e035
|
||||
color3 #f4ae2e
|
||||
color11 #dfd561
|
||||
color4 #1397b9
|
||||
color12 #5ed9ff
|
||||
color5 #d0623c
|
||||
color13 #ff9168
|
||||
color6 #4f9452
|
||||
color14 #83ef88
|
||||
color7 #e5c5a9
|
||||
color15 #f6f6ec
|
||||
selection_foreground #282420
|
|
@ -0,0 +1,21 @@
|
|||
background #21211c
|
||||
foreground #807973
|
||||
cursor #facb7f
|
||||
selection_background #403729
|
||||
color0 #3c3b30
|
||||
color8 #545444
|
||||
color1 #97280f
|
||||
color9 #df502a
|
||||
color2 #479942
|
||||
color10 #60e06f
|
||||
color3 #7f7110
|
||||
color11 #d69827
|
||||
color4 #497f7d
|
||||
color12 #78d8d8
|
||||
color5 #7e4e2e
|
||||
color13 #cd7c53
|
||||
color6 #387f58
|
||||
color14 #58d598
|
||||
color7 #807974
|
||||
color15 #fff1e8
|
||||
selection_foreground #21211c
|
|
@ -0,0 +1,27 @@
|
|||
# Theme ported from the Mac Terminal application.
|
||||
|
||||
background #323232
|
||||
foreground #ffffff
|
||||
cursor #d6d6d6
|
||||
selection_background #5b5b5b
|
||||
selection_foreground #323232
|
||||
color0 #353535
|
||||
color8 #535353
|
||||
color1 #d25252
|
||||
color9 #f00c0c
|
||||
color2 #a4c161
|
||||
color10 #c1df74
|
||||
color3 #ffc56d
|
||||
color11 #e1e48a
|
||||
color4 #6c99ba
|
||||
color12 #8ab6d9
|
||||
color5 #d096d9
|
||||
color13 #efb5f7
|
||||
color6 #bdd6ff
|
||||
color14 #dbf4ff
|
||||
color7 #ededec
|
||||
color15 #ffffff
|
||||
active_tab_foreground #ffffff
|
||||
active_tab_background #535353
|
||||
inactive_tab_foreground #ffffff
|
||||
inactive_tab_background #353535
|
|
@ -0,0 +1,21 @@
|
|||
background #2a211c
|
||||
foreground #b8a898
|
||||
cursor #ffffff
|
||||
selection_background #c3dcff
|
||||
color0 #000000
|
||||
color8 #545753
|
||||
color1 #cc0000
|
||||
color9 #ef2828
|
||||
color2 #1a921c
|
||||
color10 #9aff87
|
||||
color3 #efe43a
|
||||
color11 #fffa5c
|
||||
color4 #0066ff
|
||||
color12 #43a8ed
|
||||
color5 #c5656b
|
||||
color13 #ff8089
|
||||
color6 #05989a
|
||||
color14 #34e2e2
|
||||
color7 #d3d7cf
|
||||
color15 #ededec
|
||||
selection_foreground #2a211c
|
|
@ -0,0 +1,21 @@
|
|||
background #282f32
|
||||
foreground #dad9df
|
||||
cursor #d35f5a
|
||||
selection_background #eeb7ab
|
||||
color0 #282f32
|
||||
color8 #092027
|
||||
color1 #ca1d2c
|
||||
color9 #d35f5a
|
||||
color2 #edb7ab
|
||||
color10 #d35f5a
|
||||
color3 #b7aa9a
|
||||
color11 #a86571
|
||||
color4 #2e78c1
|
||||
color12 #7c84c4
|
||||
color5 #c0226e
|
||||
color13 #5b5db2
|
||||
color6 #309185
|
||||
color14 #81908f
|
||||
color7 #e9e2cd
|
||||
color15 #fcf4de
|
||||
selection_foreground #282f32
|
|
@ -0,0 +1,21 @@
|
|||
background #222436
|
||||
foreground #eceffd
|
||||
cursor #fdcd5e
|
||||
selection_background #fcf6e8
|
||||
color0 #03063c
|
||||
color8 #6c5a30
|
||||
color1 #c60049
|
||||
color9 #d94a8a
|
||||
color2 #abf157
|
||||
color10 #daffa8
|
||||
color3 #fdcd5e
|
||||
color11 #fee6a8
|
||||
color4 #525fb8
|
||||
color12 #b1bdf9
|
||||
color5 #976f81
|
||||
color13 #fda4cc
|
||||
color6 #968662
|
||||
color14 #a4bc86
|
||||
color7 #eceffc
|
||||
color15 #f6ffec
|
||||
selection_foreground #222436
|
|
@ -0,0 +1,21 @@
|
|||
background #002240
|
||||
foreground #2bc45d
|
||||
cursor #e5bd0c
|
||||
selection_background #782b9c
|
||||
color0 #212c3e
|
||||
color8 #202b3b
|
||||
color1 #a72320
|
||||
color9 #d3302e
|
||||
color2 #32a448
|
||||
color10 #2c9440
|
||||
color3 #e58d11
|
||||
color11 #e5bd0c
|
||||
color4 #3066ab
|
||||
color12 #3b7cd2
|
||||
color5 #7819a0
|
||||
color13 #822fa7
|
||||
color6 #2b9270
|
||||
color14 #35b286
|
||||
color7 #afb6b9
|
||||
color15 #e6ecec
|
||||
selection_foreground #002240
|
|
@ -0,0 +1,21 @@
|
|||
background #1c1e20
|
||||
foreground #b8daee
|
||||
cursor #708183
|
||||
selection_background #2a2a24
|
||||
color0 #1c1d19
|
||||
color8 #1c1d19
|
||||
color1 #f18238
|
||||
color9 #d12a24
|
||||
color2 #9ed264
|
||||
color10 #a7d32c
|
||||
color3 #f3ef6d
|
||||
color11 #ff8948
|
||||
color4 #4f96be
|
||||
color12 #61b8d0
|
||||
color5 #695abb
|
||||
color13 #695abb
|
||||
color6 #d53864
|
||||
color14 #d53864
|
||||
color7 #fefffe
|
||||
color15 #fefffe
|
||||
selection_foreground #1c1e20
|
|
@ -0,0 +1,21 @@
|
|||
background #0e0c15
|
||||
foreground #dbd0b9
|
||||
cursor #bbbbbb
|
||||
selection_background #f3e0b8
|
||||
color0 #08002e
|
||||
color8 #331d4c
|
||||
color1 #64002c
|
||||
color9 #cf2062
|
||||
color2 #5d731a
|
||||
color10 #b3ce58
|
||||
color3 #cd751c
|
||||
color11 #fac357
|
||||
color4 #1d6da1
|
||||
color12 #40a4cf
|
||||
color5 #b7077e
|
||||
color13 #f02aae
|
||||
color6 #42a38c
|
||||
color14 #62caa8
|
||||
color7 #f3e0b8
|
||||
color15 #fff5db
|
||||
selection_foreground #0e0c15
|
|
@ -0,0 +1,21 @@
|
|||
background #1b1b1d
|
||||
foreground #acacac
|
||||
cursor #cccccc
|
||||
selection_background #e96153
|
||||
color0 #242426
|
||||
color8 #5eac6c
|
||||
color1 #f8501a
|
||||
color9 #f64319
|
||||
color2 #565746
|
||||
color10 #74eb4c
|
||||
color3 #f9761d
|
||||
color11 #fcc224
|
||||
color4 #2c70b7
|
||||
color12 #3393c9
|
||||
color5 #f02d4e
|
||||
color13 #e75e4e
|
||||
color6 #3ba0a5
|
||||
color14 #4ebce5
|
||||
color7 #acacac
|
||||
color15 #8b735a
|
||||
selection_foreground #1b1b1d
|
|
@ -0,0 +1,21 @@
|
|||
background #241200
|
||||
foreground #ddc165
|
||||
cursor #e5591c
|
||||
selection_background #e5591c
|
||||
color0 #000000
|
||||
color8 #7e6954
|
||||
color1 #d5252b
|
||||
color9 #e4591b
|
||||
color2 #909b00
|
||||
color10 #bfc659
|
||||
color3 #bd8a13
|
||||
color11 #ffca1b
|
||||
color4 #4698a2
|
||||
color12 #7cc9ce
|
||||
color5 #8c4231
|
||||
color13 #d16349
|
||||
color6 #d98112
|
||||
color14 #e6a96b
|
||||
color7 #ddc165
|
||||
color15 #ffe9a3
|
||||
selection_foreground #241200
|
|
@ -0,0 +1,21 @@
|
|||
background #1c2836
|
||||
foreground #ffffff
|
||||
cursor #bbbbbb
|
||||
selection_background #b4d5ff
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #f9555f
|
||||
color9 #fa8b8e
|
||||
color2 #20af89
|
||||
color10 #34bb99
|
||||
color3 #fdf029
|
||||
color11 #ffff55
|
||||
color4 #589cf5
|
||||
color12 #589cf5
|
||||
color5 #934d95
|
||||
color13 #e75598
|
||||
color6 #1e9ee6
|
||||
color14 #3978bb
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #1c2836
|
|
@ -0,0 +1,21 @@
|
|||
background #f4f4f4
|
||||
foreground #3e3e3e
|
||||
cursor #3f3f3f
|
||||
selection_background #a9c1e2
|
||||
color0 #3e3e3e
|
||||
color8 #666666
|
||||
color1 #970b16
|
||||
color9 #de0000
|
||||
color2 #07962a
|
||||
color10 #87d5a2
|
||||
color3 #f7edc7
|
||||
color11 #f0cf06
|
||||
color4 #003e8a
|
||||
color12 #2e6cba
|
||||
color5 #e94691
|
||||
color13 #ffa29f
|
||||
color6 #89d1ec
|
||||
color14 #1cfafe
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #f4f4f4
|
|
@ -0,0 +1,21 @@
|
|||
background #0c1115
|
||||
foreground #ffffff
|
||||
cursor #6c6c6c
|
||||
selection_background #bd2523
|
||||
color0 #2e343c
|
||||
color8 #404a55
|
||||
color1 #bd0f2f
|
||||
color9 #bd0f2f
|
||||
color2 #35a770
|
||||
color10 #49e998
|
||||
color3 #fb9435
|
||||
color11 #fddf6e
|
||||
color4 #1f5872
|
||||
color12 #2a8bc1
|
||||
color5 #bd2523
|
||||
color13 #ea4727
|
||||
color6 #778397
|
||||
color14 #a0b6d3
|
||||
color7 #ffffff
|
||||
color15 #ffffff
|
||||
selection_foreground #0c1115
|
|
@ -0,0 +1,21 @@
|
|||
background #2f0033
|
||||
foreground #f6ed00
|
||||
cursor #1a6500
|
||||
selection_background #100a24
|
||||
color0 #880041
|
||||
color8 #411a6d
|
||||
color1 #f78000
|
||||
color9 #f800e1
|
||||
color2 #249000
|
||||
color10 #5743ff
|
||||
color3 #f40000
|
||||
color11 #ea00d7
|
||||
color4 #000482
|
||||
color12 #b90003
|
||||
color5 #f43bff
|
||||
color13 #9a5952
|
||||
color6 #3affff
|
||||
color14 #c8f9f3
|
||||
color7 #000000
|
||||
color15 #f5f4fb
|
||||
selection_foreground #2f0033
|
|
@ -0,0 +1,21 @@
|
|||
background #161423
|
||||
foreground #9e9ea0
|
||||
cursor #a188f7
|
||||
selection_background #483d70
|
||||
color0 #2d283e
|
||||
color8 #58506a
|
||||
color1 #ec2160
|
||||
color9 #f0719a
|
||||
color2 #1fa91b
|
||||
color10 #52a95d
|
||||
color3 #8ddc1f
|
||||
color11 #b2dc87
|
||||
color4 #487cf4
|
||||
color12 #a9bbeb
|
||||
color5 #8c35c8
|
||||
color13 #ac81c1
|
||||
color6 #3added
|
||||
color14 #9ce3ea
|
||||
color7 #9e9ea0
|
||||
color15 #a188f7
|
||||
selection_foreground #161423
|
|
@ -0,0 +1,23 @@
|
|||
# Theme ported from the Mac Terminal application.
|
||||
|
||||
background #12773d
|
||||
foreground #fff0a4
|
||||
cursor #8b2800
|
||||
selection_background #b64825
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ba0000
|
||||
color9 #ba0000
|
||||
color2 #00ba00
|
||||
color10 #00ba00
|
||||
color3 #e6af00
|
||||
color11 #e6af00
|
||||
color4 #0000a3
|
||||
color12 #0000ba
|
||||
color5 #950062
|
||||
color13 #ff54ff
|
||||
color6 #00baba
|
||||
color14 #54ffff
|
||||
color7 #bababa
|
||||
color15 #ffffff
|
||||
selection_foreground #12773d
|
|
@ -0,0 +1,21 @@
|
|||
background #121212
|
||||
foreground #a0a0a0
|
||||
cursor #bbbbbb
|
||||
selection_background #453a39
|
||||
color0 #1b1d1e
|
||||
color8 #505354
|
||||
color1 #f92672
|
||||
color9 #ff669d
|
||||
color2 #a6e22e
|
||||
color10 #beed5f
|
||||
color3 #fd971f
|
||||
color11 #e6db74
|
||||
color4 #66d9ef
|
||||
color12 #66d9ef
|
||||
color5 #9e6ffe
|
||||
color13 #9e6ffe
|
||||
color6 #5e7175
|
||||
color14 #a3babf
|
||||
color7 #ccccc6
|
||||
color15 #f8f8f2
|
||||
selection_foreground #121212
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #a7a39c
|
||||
cursor #a7a39c
|
||||
selection_background #5a5753
|
||||
color0 #000000
|
||||
color8 #716d69
|
||||
color1 #f7b63e
|
||||
color9 #f7b63e
|
||||
color2 #7fb5e1
|
||||
color10 #7fb5e1
|
||||
color3 #d6da24
|
||||
color11 #d6da24
|
||||
color4 #489d48
|
||||
color12 #489d48
|
||||
color5 #b295c5
|
||||
color13 #b295c5
|
||||
color6 #f4bed6
|
||||
color14 #f4bed6
|
||||
color7 #a7a39c
|
||||
color15 #fefbe9
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #212224
|
||||
foreground #ededed
|
||||
cursor #dfd9b8
|
||||
selection_background #384563
|
||||
color0 #000000
|
||||
color8 #5c4f49
|
||||
color1 #cf0d17
|
||||
color9 #ef7d17
|
||||
color2 #128033
|
||||
color10 #b1d130
|
||||
color3 #ffca3d
|
||||
color11 #fff11f
|
||||
color4 #006ab3
|
||||
color12 #4fc2fd
|
||||
color5 #6a2674
|
||||
color13 #de0070
|
||||
color6 #384563
|
||||
color14 #5c4f49
|
||||
color7 #ededed
|
||||
color15 #fefffe
|
||||
selection_foreground #212224
|
|
@ -0,0 +1,21 @@
|
|||
background #0f0a05
|
||||
foreground #84c137
|
||||
cursor #23ff18
|
||||
selection_background #083905
|
||||
color0 #000000
|
||||
color8 #666666
|
||||
color1 #b6204a
|
||||
color9 #e50000
|
||||
color2 #00a600
|
||||
color10 #86a83e
|
||||
color3 #bebe00
|
||||
color11 #e5e500
|
||||
color4 #246db2
|
||||
color12 #0000ff
|
||||
color5 #b200b2
|
||||
color13 #e500e5
|
||||
color6 #00a6b2
|
||||
color14 #00e5e5
|
||||
color7 #bfbfbf
|
||||
color15 #e5e5e5
|
||||
selection_foreground #0f0a05
|
|
@ -0,0 +1,23 @@
|
|||
# Theme ported from the Mac Terminal application.
|
||||
|
||||
background #000000
|
||||
foreground #00ff00
|
||||
cursor #23ff18
|
||||
selection_background #083905
|
||||
color0 #000000
|
||||
color8 #666666
|
||||
color1 #990000
|
||||
color9 #e50000
|
||||
color2 #00a600
|
||||
color10 #00d900
|
||||
color3 #999900
|
||||
color11 #e5e500
|
||||
color4 #0000b2
|
||||
color12 #0000ff
|
||||
color5 #b200b2
|
||||
color13 #e500e5
|
||||
color6 #00a6b2
|
||||
color14 #00e5e5
|
||||
color7 #bebebe
|
||||
color15 #e5e5e5
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #dadbda
|
||||
cursor #bbbbbb
|
||||
selection_background #b4d5ff
|
||||
color0 #575757
|
||||
color8 #252525
|
||||
color1 #ff1b00
|
||||
color9 #d41c00
|
||||
color2 #a5df55
|
||||
color10 #a5df55
|
||||
color3 #fbe74a
|
||||
color11 #fbe749
|
||||
color4 #486387
|
||||
color12 #89bdff
|
||||
color5 #fc5ef0
|
||||
color13 #bf00c0
|
||||
color6 #85e9fe
|
||||
color14 #85e9fe
|
||||
color7 #cbcbcb
|
||||
color15 #dbdbdb
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #161718
|
||||
foreground #b7bcb9
|
||||
cursor #b7bcb9
|
||||
selection_background #1e1f22
|
||||
color0 #2a2e33
|
||||
color8 #1d1e21
|
||||
color1 #b74d50
|
||||
color9 #8c2d32
|
||||
color2 #b3be5a
|
||||
color10 #788331
|
||||
color3 #e3b55e
|
||||
color11 #e5894f
|
||||
color4 #6d90b0
|
||||
color12 #4b6b88
|
||||
color5 #a07eab
|
||||
color13 #6e4f79
|
||||
color6 #7fbeb3
|
||||
color14 #4d7b73
|
||||
color7 #b5b8b6
|
||||
color15 #5a6169
|
||||
selection_foreground #161718
|
|
@ -0,0 +1,21 @@
|
|||
background #3a3c3e
|
||||
foreground #d9eed2
|
||||
cursor #41ff58
|
||||
selection_background #2a9b34
|
||||
color0 #1e1e1e
|
||||
color8 #03260f
|
||||
color1 #fb0029
|
||||
color9 #a6ff3e
|
||||
color2 #329b24
|
||||
color10 #9fff6d
|
||||
color3 #649a25
|
||||
color11 #d1ff6d
|
||||
color4 #149b45
|
||||
color12 #72ffb5
|
||||
color5 #53b82b
|
||||
color13 #50ff3d
|
||||
color6 #2bb767
|
||||
color14 #22ff71
|
||||
color7 #dffeee
|
||||
color15 #daeed0
|
||||
selection_foreground #3a3c3e
|
|
@ -0,0 +1,21 @@
|
|||
background #262626
|
||||
foreground #ffcb83
|
||||
cursor #fb521c
|
||||
selection_background #c03f1f
|
||||
color0 #000000
|
||||
color8 #6a4e29
|
||||
color1 #c03900
|
||||
color9 #ff8b67
|
||||
color2 #a3a900
|
||||
color10 #f6ff3f
|
||||
color3 #caae00
|
||||
color11 #ffe36e
|
||||
color4 #bd6c00
|
||||
color12 #ffbd54
|
||||
color5 #fb5d00
|
||||
color13 #fc874f
|
||||
color6 #f79400
|
||||
color14 #c59752
|
||||
color7 #ffc88a
|
||||
color15 #f9f9fe
|
||||
selection_foreground #262626
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #f1f1f1
|
||||
cursor #7f7f7f
|
||||
selection_background #b4d5ff
|
||||
color0 #4f4f4f
|
||||
color8 #7b7b7b
|
||||
color1 #fa6c5f
|
||||
color9 #fcb6af
|
||||
color2 #a8fe60
|
||||
color10 #ceffab
|
||||
color3 #fffeb6
|
||||
color11 #fffecc
|
||||
color4 #96cafd
|
||||
color12 #b5dcfe
|
||||
color5 #fa72fc
|
||||
color13 #fb9bfe
|
||||
color6 #c6c4fd
|
||||
color14 #dfdffd
|
||||
color7 #eeedee
|
||||
color15 #fefffe
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #2c1c15
|
||||
foreground #ffcc2f
|
||||
cursor #23ff18
|
||||
selection_background #ae8c20
|
||||
color0 #2c1d16
|
||||
color8 #666666
|
||||
color1 #ef5734
|
||||
color9 #e50000
|
||||
color2 #2baf2b
|
||||
color10 #86a83e
|
||||
color3 #bdbe00
|
||||
color11 #e5e500
|
||||
color4 #246db2
|
||||
color12 #0000ff
|
||||
color5 #cf5ec0
|
||||
color13 #e500e5
|
||||
color6 #00acee
|
||||
color14 #00e5e5
|
||||
color7 #bfbfbf
|
||||
color15 #e5e5e5
|
||||
selection_foreground #2c1c15
|
|
@ -0,0 +1,21 @@
|
|||
background #1d1d1d
|
||||
foreground #f7f6ec
|
||||
cursor #eccf4f
|
||||
selection_background #165776
|
||||
color0 #343835
|
||||
color8 #585a58
|
||||
color1 #ce3e60
|
||||
color9 #d18ea6
|
||||
color2 #7bb75b
|
||||
color10 #767e2b
|
||||
color3 #e8b32a
|
||||
color11 #77592e
|
||||
color4 #4c99d3
|
||||
color12 #135879
|
||||
color5 #a57fc4
|
||||
color13 #5f4190
|
||||
color6 #389aac
|
||||
color14 #76bbca
|
||||
color7 #f9faf6
|
||||
color15 #b1b5ae
|
||||
selection_foreground #1d1d1d
|
|
@ -0,0 +1,21 @@
|
|||
background #111111
|
||||
foreground #dedede
|
||||
cursor #ffa460
|
||||
selection_background #464d91
|
||||
color0 #919191
|
||||
color8 #bdbdbd
|
||||
color1 #e17373
|
||||
color9 #ffa0a0
|
||||
color2 #94b978
|
||||
color10 #bddeab
|
||||
color3 #ffb97b
|
||||
color11 #ffdba0
|
||||
color4 #96bddb
|
||||
color12 #b1d7f6
|
||||
color5 #e1c0fa
|
||||
color13 #fbdaff
|
||||
color6 #00988e
|
||||
color14 #19b2a7
|
||||
color7 #dedede
|
||||
color15 #ffffff
|
||||
selection_foreground #111111
|
|
@ -0,0 +1,21 @@
|
|||
background #202020
|
||||
foreground #adadad
|
||||
cursor #ffffff
|
||||
selection_background #1a3272
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #fa5355
|
||||
color9 #fb7172
|
||||
color2 #126e00
|
||||
color10 #67ff4f
|
||||
color3 #c2c300
|
||||
color11 #ffff00
|
||||
color4 #4581eb
|
||||
color12 #6d9df1
|
||||
color5 #fa54ff
|
||||
color13 #fb82ff
|
||||
color6 #33c2c1
|
||||
color14 #60d3d1
|
||||
color7 #adadad
|
||||
color15 #eeeeee
|
||||
selection_foreground #202020
|
|
@ -0,0 +1,21 @@
|
|||
background #0e100a
|
||||
foreground #f7f7f7
|
||||
cursor #9fda9c
|
||||
selection_background #9ba686
|
||||
color0 #4d4d4d
|
||||
color8 #5a5a5a
|
||||
color1 #c70031
|
||||
color9 #f01578
|
||||
color2 #29cf13
|
||||
color10 #6ce05c
|
||||
color3 #d8e30e
|
||||
color11 #f3f79e
|
||||
color4 #3449d1
|
||||
color12 #97a4f7
|
||||
color5 #8400ff
|
||||
color13 #c495f0
|
||||
color6 #0798ab
|
||||
color14 #68f2e0
|
||||
color7 #e2d1e3
|
||||
color15 #ffffff
|
||||
selection_foreground #0e100a
|
|
@ -0,0 +1,21 @@
|
|||
background #212121
|
||||
foreground #949494
|
||||
cursor #424242
|
||||
selection_background #424242
|
||||
color0 #2b2b2b
|
||||
color8 #444747
|
||||
color1 #d35a5f
|
||||
color9 #d3222e
|
||||
color2 #afba66
|
||||
color10 #aabb39
|
||||
color3 #e5d289
|
||||
color11 #e4bd39
|
||||
color4 #a0b9d5
|
||||
color12 #6599d5
|
||||
color5 #bf92d5
|
||||
color13 #aa52d5
|
||||
color6 #91beb6
|
||||
color14 #5fbfad
|
||||
color7 #3b3c3c
|
||||
color15 #c0c2c2
|
||||
selection_foreground #212121
|
|
@ -0,0 +1,21 @@
|
|||
background #050014
|
||||
foreground #736d7c
|
||||
cursor #8b91fa
|
||||
selection_background #36323b
|
||||
color0 #230045
|
||||
color8 #362c45
|
||||
color1 #7c1525
|
||||
color9 #df5066
|
||||
color2 #337e6f
|
||||
color10 #52e0c4
|
||||
color3 #7f6f49
|
||||
color11 #e0c286
|
||||
color4 #4f4a7f
|
||||
color12 #8e86df
|
||||
color5 #593f7e
|
||||
color13 #a675df
|
||||
color6 #57767f
|
||||
color14 #9ad3df
|
||||
color7 #736d7c
|
||||
color15 #8b91fa
|
||||
selection_foreground #050014
|
|
@ -0,0 +1,21 @@
|
|||
background #2f2f2f
|
||||
foreground #afc2c2
|
||||
cursor #ffffff
|
||||
selection_background #7cbeff
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #ff2f2f
|
||||
color9 #ff2f2f
|
||||
color2 #549a6f
|
||||
color10 #549a6f
|
||||
color3 #ccac00
|
||||
color11 #ccac00
|
||||
color4 #0099cc
|
||||
color12 #0099cc
|
||||
color5 #cc68c8
|
||||
color13 #cc68c8
|
||||
color6 #79c4cc
|
||||
color14 #79c4cc
|
||||
color7 #bccccc
|
||||
color15 #bccccc
|
||||
selection_foreground #2f2f2f
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #afc2c2
|
||||
cursor #ffffff
|
||||
selection_background #7cbeff
|
||||
color0 #000000
|
||||
color8 #000000
|
||||
color1 #ff2f2f
|
||||
color9 #ff2f2f
|
||||
color2 #549a6f
|
||||
color10 #549a6f
|
||||
color3 #ccac00
|
||||
color11 #ccac00
|
||||
color4 #0099cc
|
||||
color12 #0099cc
|
||||
color5 #cc68c8
|
||||
color13 #cc68c8
|
||||
color6 #79c4cc
|
||||
color14 #79c4cc
|
||||
color7 #bccccc
|
||||
color15 #bccccc
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #afc2c2
|
||||
cursor #ffffff
|
||||
selection_background #7cbeff
|
||||
color0 #bbcbcc
|
||||
color8 #ffffff
|
||||
color1 #ff2f2f
|
||||
color9 #ff2f2f
|
||||
color2 #549a6f
|
||||
color10 #549a6f
|
||||
color3 #ccac00
|
||||
color11 #ccac00
|
||||
color4 #0099cc
|
||||
color12 #0099cc
|
||||
color5 #cc68c8
|
||||
color13 #cc68c8
|
||||
color6 #79c4cc
|
||||
color14 #79c4cc
|
||||
color7 #000000
|
||||
color15 #000000
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,23 @@
|
|||
# Theme ported from the Mac Terminal application.
|
||||
|
||||
background #fef49c
|
||||
foreground #000000
|
||||
cursor #7f7f7f
|
||||
selection_background #a4c9cd
|
||||
color0 #000000
|
||||
color8 #666666
|
||||
color1 #cc0000
|
||||
color9 #e50000
|
||||
color2 #00a600
|
||||
color10 #00d900
|
||||
color3 #999900
|
||||
color11 #e5e500
|
||||
color4 #0000b2
|
||||
color12 #0000ff
|
||||
color5 #b200b2
|
||||
color13 #e500e5
|
||||
color6 #00a6b2
|
||||
color14 #00e5e5
|
||||
color7 #cccccc
|
||||
color15 #e5e5e5
|
||||
selection_foreground #fef49c
|
|
@ -0,0 +1,21 @@
|
|||
background #eaeaea
|
||||
foreground #222221
|
||||
cursor #16aec9
|
||||
selection_background #c1c1c1
|
||||
color0 #212121
|
||||
color8 #424242
|
||||
color1 #b7141e
|
||||
color9 #e83a3f
|
||||
color2 #457b23
|
||||
color10 #7aba39
|
||||
color3 #f5971d
|
||||
color11 #fee92e
|
||||
color4 #134eb2
|
||||
color12 #53a4f3
|
||||
color5 #550087
|
||||
color13 #a94dbb
|
||||
color6 #0e707c
|
||||
color14 #26bad1
|
||||
color7 #eeeeee
|
||||
color15 #d8d8d8
|
||||
selection_foreground #eaeaea
|
|
@ -0,0 +1,21 @@
|
|||
background #222221
|
||||
foreground #e4e4e4
|
||||
cursor #16aec9
|
||||
selection_background #dedede
|
||||
color0 #212121
|
||||
color8 #424242
|
||||
color1 #b7141e
|
||||
color9 #e83a3f
|
||||
color2 #457b23
|
||||
color10 #7aba39
|
||||
color3 #f5971d
|
||||
color11 #fee92e
|
||||
color4 #134eb2
|
||||
color12 #53a4f3
|
||||
color5 #550087
|
||||
color13 #a94dbb
|
||||
color6 #0e707c
|
||||
color14 #26bad1
|
||||
color7 #eeeeee
|
||||
color15 #d8d8d8
|
||||
selection_foreground #222221
|
|
@ -0,0 +1,21 @@
|
|||
background #000000
|
||||
foreground #bbbbbb
|
||||
cursor #bbbbbb
|
||||
selection_background #545454
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #e52222
|
||||
color9 #ff5555
|
||||
color2 #a6e32d
|
||||
color10 #55ff55
|
||||
color3 #fc951e
|
||||
color11 #ffff55
|
||||
color4 #c48dff
|
||||
color12 #5555ff
|
||||
color5 #fa2573
|
||||
color13 #ff55ff
|
||||
color6 #67d9f0
|
||||
color14 #55ffff
|
||||
color7 #f2f2f2
|
||||
color15 #ffffff
|
||||
selection_foreground #000000
|
|
@ -0,0 +1,21 @@
|
|||
background #1d1808
|
||||
foreground #cac296
|
||||
cursor #d3b92f
|
||||
selection_background #616cab
|
||||
color0 #000000
|
||||
color8 #5e5118
|
||||
color1 #b54c00
|
||||
color9 #ff9148
|
||||
color2 #7c8a16
|
||||
color10 #b1c93a
|
||||
color3 #d2bd25
|
||||
color11 #ffe449
|
||||
color4 #606baf
|
||||
color12 #abb8ff
|
||||
color5 #8b5990
|
||||
color13 #fe9fff
|
||||
color6 #906b25
|
||||
color14 #ffbb51
|
||||
color7 #c9c199
|
||||
color15 #fed597
|
||||
selection_foreground #1d1808
|
|
@ -0,0 +1,21 @@
|
|||
background #2d3743
|
||||
foreground #e1e1e0
|
||||
cursor #000000
|
||||
selection_background #2d37ff
|
||||
color0 #000000
|
||||
color8 #545454
|
||||
color1 #ff4141
|
||||
color9 #ff3241
|
||||
color2 #74ae68
|
||||
color10 #74cc68
|
||||
color3 #ffac28
|
||||
color11 #ffb928
|
||||
color4 #338e86
|
||||
color12 #23d6d6
|
||||
color5 #9413e5
|
||||
color13 #ff37ff
|
||||
color6 #23d6d6
|
||||
color14 #00ece1
|
||||
color7 #e1e1df
|
||||
color15 #ffffff
|
||||
selection_foreground #2d3743
|
|
@ -0,0 +1,21 @@
|
|||
background #121212
|
||||
foreground #bbbbbb
|
||||
cursor #bbbbbb
|
||||
selection_background #b4d5ff
|
||||
color0 #121212
|
||||
color8 #545454
|
||||
color1 #fa2573
|
||||
color9 #f5669c
|
||||
color2 #97e123
|
||||
color10 #b0e05e
|
||||
color3 #dfd460
|
||||
color11 #fef26c
|
||||
color4 #0f7fcf
|
||||
color12 #00afff
|
||||
color5 #8700ff
|
||||
color13 #af87ff
|
||||
color6 #42a7cf
|
||||
color14 #50cdfe
|
||||
color7 #bbbbbb
|
||||
color15 #ffffff
|
||||
selection_foreground #121212
|
|
@ -0,0 +1,21 @@
|
|||
background #110b0d
|
||||
foreground #f6d56a
|
||||
cursor #c36c32
|
||||
selection_background #f6d56a
|
||||
color0 #341a0d
|
||||
color8 #874227
|
||||
color1 #9b281b
|
||||
color9 #ff4230
|
||||
color2 #626132
|
||||
color10 #b3b163
|
||||
color3 #c26e27
|
||||
color11 #ff9565
|
||||
color4 #515b5c
|
||||
color12 #9eb2b3
|
||||
color5 #9b1d29
|
||||
color13 #ff5b6a
|
||||
color6 #588056
|
||||
color14 #89cc8e
|
||||
color7 #f6d75c
|
||||
color15 #ffe597
|
||||
selection_foreground #110b0d
|
|
@ -0,0 +1,41 @@
|
|||
# Monokai
|
||||
|
||||
background #272822
|
||||
foreground #f8f8f2
|
||||
cursor #f8f8f2
|
||||
selection_background #f8f8f2
|
||||
selection_foreground #272822
|
||||
active_tab_background #75715e
|
||||
active_tab_foreground #272822
|
||||
active_border_color #75715e
|
||||
inactive_tab_background #272822
|
||||
inactive_tab_foreground #75715e
|
||||
inactive_border_color #75715e
|
||||
url_color #f8f8f2
|
||||
|
||||
# 16 Color Space
|
||||
|
||||
# black
|
||||
color0 #272822
|
||||
color8 #75715e
|
||||
# red
|
||||
color1 #f92672
|
||||
color9 #f92672
|
||||
# green
|
||||
color2 #a6e22e
|
||||
color10 #a6e22e
|
||||
# yellow
|
||||
color3 #e6db74
|
||||
color11 #e6db74
|
||||
# blue
|
||||
color4 #66d9ef
|
||||
color12 #66d9ef
|
||||
# magenta
|
||||
color5 #fd971f
|
||||
color13 #fd971f
|
||||
# cyan
|
||||
color6 #ae81ff
|
||||
color14 #ae81ff
|
||||
# white
|
||||
color7 #f8f8f2
|
||||
color15 #f8f8f2
|
|
@ -0,0 +1,47 @@
|
|||
background #3b3c35
|
||||
foreground #fdfff1
|
||||
|
||||
cursor #fdfff1
|
||||
cursor_text_color #000000
|
||||
selection_foreground #3b3c35
|
||||
selection_background #fdfff1
|
||||
|
||||
# dull black
|
||||
color0 #3b3c35
|
||||
# light black
|
||||
color8 #6e7066
|
||||
|
||||
# dull red
|
||||
color1 #f82570
|
||||
# light red
|
||||
color9 #f82570
|
||||
|
||||
# dull green
|
||||
color2 #a6e12d
|
||||
# light green
|
||||
color10 #a6e12d
|
||||
|
||||
# yellow
|
||||
color3 #e4db73
|
||||
# light yellow
|
||||
color11 #e4db73
|
||||
|
||||
# blue
|
||||
color4 #fc961f
|
||||
# light blue
|
||||
color12 #fc961f
|
||||
|
||||
# magenta
|
||||
color5 #ae81ff
|
||||
# light magenta
|
||||
color13 #ae81ff
|
||||
|
||||
# cyan
|
||||
color6 #66d9ee
|
||||
# light cyan
|
||||
color14 #66d9ee
|
||||
|
||||
# dull white
|
||||
color7 #fdfff1
|
||||
# bright white
|
||||
color15 #fdfff1
|
|
@ -0,0 +1,47 @@
|
|||
background #403e41
|
||||
foreground #fcfcfa
|
||||
|
||||
cursor #fcfcfa
|
||||
cursor_text_color #000000
|
||||
selection_foreground #403e41
|
||||
selection_background #fcfcfa
|
||||
|
||||
# dull black
|
||||
color0 #403e41
|
||||
# light black
|
||||
color8 #727072
|
||||
|
||||
# dull red
|
||||
color1 #ff6188
|
||||
# light red
|
||||
color9 #ff6188
|
||||
|
||||
# dull green
|
||||
color2 #a9dc76
|
||||
# light green
|
||||
color10 #a9dc76
|
||||
|
||||
# yellow
|
||||
color3 #ffd866
|
||||
# light yellow
|
||||
color11 #ffd866
|
||||
|
||||
# blue
|
||||
color4 #fc9867
|
||||
# light blue
|
||||
color12 #fc9867
|
||||
|
||||
# magenta
|
||||
color5 #ab9df2
|
||||
# light magenta
|
||||
color13 #ab9df2
|
||||
|
||||
# cyan
|
||||
color6 #78dce8
|
||||
# light cyan
|
||||
color14 #78dce8
|
||||
|
||||
# dull white
|
||||
color7 #fcfcfa
|
||||
# bright white
|
||||
color15 #fcfcfa
|
|
@ -0,0 +1,47 @@
|
|||
background #3a4449
|
||||
foreground #f2fffc
|
||||
|
||||
cursor #f2fffc
|
||||
cursor_text_color #000000
|
||||
selection_foreground #3a4449
|
||||
selection_background #f2fffc
|
||||
|
||||
# dull black
|
||||
color0 #3a4449
|
||||
# light black
|
||||
color8 #6b7678
|
||||
|
||||
# dull red
|
||||
color1 #ff6d7e
|
||||
# light red
|
||||
color9 #ff6d7e
|
||||
|
||||
# dull green
|
||||
color2 #a2e57b
|
||||
# light green
|
||||
color10 #a2e57b
|
||||
|
||||
# yellow
|
||||
color3 #ffed72
|
||||
# light yellow
|
||||
color11 #ffed72
|
||||
|
||||
# blue
|
||||
color4 #ffb270
|
||||
# light blue
|
||||
color12 #ffb270
|
||||
|
||||
# magenta
|
||||
color5 #baa0f8
|
||||
# light magenta
|
||||
color13 #baa0f8
|
||||
|
||||
# cyan
|
||||
color6 #7cd5f1
|
||||
# light cyan
|
||||
color14 #7cd5f1
|
||||
|
||||
# dull white
|
||||
color7 #f2fffc
|
||||
# bright white
|
||||
color15 #f2fffc
|
|
@ -0,0 +1,47 @@
|
|||
background #3a3d4b
|
||||
foreground #eaf2f1
|
||||
|
||||
cursor #eaf2f1
|
||||
cursor_text_color #000000
|
||||
selection_foreground #3a3d4b
|
||||
selection_background #eaf2f1
|
||||
|
||||
# dull black
|
||||
color0 #3a3d4b
|
||||
# light black
|
||||
color8 #696d77
|
||||
|
||||
# dull red
|
||||
color1 #ff657a
|
||||
# light red
|
||||
color9 #ff657a
|
||||
|
||||
# dull green
|
||||
color2 #bad761
|
||||
# light green
|
||||
color10 #bad761
|
||||
|
||||
# yellow
|
||||
color3 #ffd76d
|
||||
# light yellow
|
||||
color11 #ffd76d
|
||||
|
||||
# blue
|
||||
color4 #ff9b5e
|
||||
# light blue
|
||||
color12 #ff9b5e
|
||||
|
||||
# magenta
|
||||
color5 #c39ac9
|
||||
# light magenta
|
||||
color13 #c39ac9
|
||||
|
||||
# cyan
|
||||
color6 #9cd1bb
|
||||
# light cyan
|
||||
color14 #9cd1bb
|
||||
|
||||
# dull white
|
||||
color7 #eaf2f1
|
||||
# bright white
|
||||
color15 #eaf2f1
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue