Parsed off from home manager config

This commit is contained in:
2024-11-06 23:33:20 +00:00
commit 83b02bd753
2351 changed files with 203739 additions and 0 deletions

224
.bashrc Normal file
View File

@@ -0,0 +1,224 @@
#
# ~/.bashrc
#
[[ $- != *i* ]]
colors() {
local fgc bgc vals seq0
printf "Color escapes are %s\n" '\e[${value};...;${value}m'
printf "Values 30..37 are \e[33mforeground colors\e[m\n"
printf "Values 40..47 are \e[43mbackground colors\e[m\n"
printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n"
# foreground colors
for fgc in {30..37}; do
# background colors
for bgc in {40..47}; do
fgc=${fgc#37} # white
bgc=${bgc#40} # black
vals="${fgc:+$fgc;}${bgc}"
vals=${vals%%;}
seq0="${vals:+\e[${vals}m}"
printf " %-9s" "${seq0:-(default)}"
printf " ${seq0}TEXT\e[m"
printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m"
done
echo; echo
done
}
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion
# Change the window title of X terminals
case ${TERM} in
xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"'
;;
screen*)
PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"'
;;
esac
use_color=true
# Set colorful PS1 only on colorful terminals.
# dircolors --print-database uses its own built-in database
# instead of using /etc/DIR_COLORS. Try to use the external file
# first to take advantage of user additions. Use internal bash
# globbing instead of external grep binary.
safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
match_lhs=""
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
[[ -z ${match_lhs} ]] \
&& type -P dircolors >/dev/null \
&& match_lhs=$(dircolors --print-database)
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
if ${use_color} ; then
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
if type -P dircolors >/dev/null ; then
if [[ -f ~/.dir_colors ]] ; then
eval "$(dircolors -b ~/.dir_colors)"
elif [[ -f /etc/DIR_COLORS ]] ; then
eval "$(dircolors -b /etc/DIR_COLORS)"
fi
fi
# code for handling prompt feedback about error or success
PROMPT_COMMAND='if [ $? = 0 ]; then DOLLAR_COLOR="\033[32m"; else DOLLAR_COLOR="\033[31m"; fi'
if [[ ${EUID} == 0 ]] ; then
PS1='\[\033[01;35m\]\u@\h\[\033[01;37m\] \W\[\033[01;32m\] \[$(echo -ne $DOLLAR_COLOR)\]$\[\033[00m\] '
else
PS1='\[\033[01;34m\]\u@\h\[\033[01;37m\] \W\[\033[01;32m\] \[$(echo -ne $DOLLAR_COLOR)\]$\[\033[00m\] ' # normal prompt
fi
alias ls='ls --color=auto'
alias grep='grep --colour=auto'
alias egrep='egrep --colour=auto'
alias fgrep='fgrep --colour=auto'
else
if [[ ${EUID} == 0 ]] ; then
# show root@ when we don't have colors
PS1='\u@\h \W \$ '
else
PS1='\u@\h \w \$ '
fi
fi
unset use_color safe_term match_lhs sh
alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias free='free -m' # show sizes in MB
alias np='nano -w PKGBUILD'
alias more=less
xhost +local:root > /dev/null 2>&1
complete -cf sudo
# Bash won't get SIGWINCH if another process is in the foreground.
# Enable checkwinsize so that bash will check the terminal size when
# it regains control. #65623
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
shopt -s checkwinsize
shopt -s expand_aliases
# export QT_SELECT=4
# Enable history appending instead of overwriting. #139609
shopt -s histappend
#
# # ex - archive extractor
# # usage: ex <file>
ex ()
{
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xjf "$1" ;;
*.tar.gz) tar xzf "$1" ;;
*.bz2) bunzip2 "$1" ;;
*.rar) unrar x "$1" ;;
*.gz) gunzip "$1" ;;
*.tar) tar xf "$1" ;;
*.tbz2) tar xjf "$1" ;;
*.tgz) tar xzf "$1" ;;
*.zip) unzip "$1" ;;
*.Z) uncompress "$1" ;;
*.7z) 7z x "$1" ;;
*) echo "'$1' cannot be extracted via ex()" ;;
esac
else
echo "'$1' is not a valid file"
fi
}
# better yaourt colors (or other AUR helper)
export YAOURT_COLORS="nb=1:pkg=1:ver=1;32:lver=1;45:installed=1;42:grp=1;34:od=1;41;5:votes=1;44:dsc=0:other=1;35"
# custom aliases
alias q="exit"
alias c="clear"
alias h="history"
alias cs="clear;ls"
alias p="cat"
alias pd="pwd"
alias lsa="ls -a"
alias lsl="ls -l"
alias pd="pwd"
alias t="time"
alias k="kill"
alias null="/dev/null"
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias ......="cd ../../../../.."
# alias for upgrade of all pip packages
alias pip-upgrade="pip freeze --user | cut -d'=' -f1 | xargs -n1 pip install -U"
# Aliases for conditionally present packages
# alias for using the "thefuck" command
if (hash thefuck &> /dev/null)
then
eval "$(thefuck --alias)"
fi
if (hash pypy3 &> /dev/null) && (! hash pypy &> /dev/null)
then
alias pypy="pypy3"
fi
if (hash paru &> /dev/null) && (! hash yay &> /dev/null)
then
alias yay="paru"
fi
# to finish, if fastfetch, neofetch or screenfetch is present, call it (preferring fastfetch)
if (hash neofetch &> /dev/null)
then
fastfetch
elif (hash neofetch &> /dev/null)
then
neofetch
elif (hash screenfetch &> /dev/null)
then
screenfetch
fi
# bashrc session path variables
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.poetry/bin:$PATH"
# Compiler/interpreter variables
export MAKEFLAGS="-j$(nproc)"
export JULIA_NUM_THREADS=12
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('$HOME/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "$HOME/anaconda3/etc/profile.d/conda.sh" ]; then
. "$HOME/anaconda3/etc/profile.d/conda.sh"
else
export PATH="$HOME/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
if [ -d "$HOME/.bash_completions/openapi-python-client.sh" ]
then
source "$HOME/.bash_completions/openapi-python-client.sh"
fi

6
.config/.rye/config.toml Normal file
View File

@@ -0,0 +1,6 @@
[behavior]
use-uv = true
global-python = true
[default]
toolchain = "cpython@3.12"

38
.config/Thunar/uca.xml Normal file
View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<icon>utilities-terminal</icon>
<name>Open Terminal Here</name>
<submenu></submenu>
<unique-id>1723548740136882-1</unique-id>
<command>kitty -d %f</command>
<description>Open terminal in current directory</description>
<range></range>
<patterns>*</patterns>
<startup-notify/>
<directories/>
</action>
<action>
<icon>text-x-script</icon>
<name>Open Neovim Here</name>
<submenu></submenu>
<unique-id>1723551422453301-1</unique-id>
<command>kitty -d %f nvim</command>
<description>Start an instance of neovim running in this directory</description>
<range>*</range>
<patterns>*</patterns>
<directories/>
</action>
<action>
<icon>text-x-script</icon>
<name>Open in Neovim</name>
<submenu></submenu>
<unique-id>1723551959204741-2</unique-id>
<command>kitty -d %D nvim %f</command>
<description>Open the selected file in Neovim</description>
<range>*</range>
<patterns>*</patterns>
<other-files/>
<text-files/>
</action>
</actions>

File diff suppressed because it is too large Load Diff

189
.config/bottom/bottom.toml Normal file
View File

@@ -0,0 +1,189 @@
# This is a default config file for bottom. All of the settings are commented
# out by default; if you wish to change them uncomment and modify as you see
# fit.
# This group of options represents a command-line flag/option. Flags explicitly
# added when running (ie: btm -a) will override this config file if an option
# is also set here.
[flags]
# Whether to hide the average cpu entry.
#hide_avg_cpu = false
# Whether to use dot markers rather than braille.
#dot_marker = false
# The update rate of the application.
#rate = "1s"
# Whether to put the CPU legend to the left.
#left_legend = false
# Whether to set CPU% on a process to be based on the total CPU or just current usage.
#current_usage = false
# Whether to set CPU% on a process to be based on the total CPU or per-core CPU% (not divided by the number of cpus).
#unnormalized_cpu = false
# Whether to group processes with the same name together by default.
group_processes = true
# Whether to make process searching case sensitive by default.
#case_sensitive = false
# Whether to make process searching look for matching the entire word by default.
#whole_word = false
# Whether to make process searching use regex by default.
#regex = false
# Defaults to Celsius. Temperature is one of:
#temperature_type = "k"
#temperature_type = "f"
#temperature_type = "c"
#temperature_type = "kelvin"
#temperature_type = "fahrenheit"
#temperature_type = "celsius"
# The default time interval (in milliseconds).
#default_time_value = "60s"
# The time delta on each zoom in/out action (in milliseconds).
#time_delta = 15000
# Hides the time scale.
#hide_time = false
# Override layout default widget
#default_widget_type = "proc"
#default_widget_count = 1
# Expand selected widget upon starting the app
#expanded_on_startup = true
# Use basic mode
#basic = false
# Use the old network legend style
#use_old_network_legend = false
# Remove space in tables
#hide_table_gap = false
# Show the battery widgets
#battery = false
# Disable mouse clicks
#disable_click = false
# Built-in themes. Valid values are "default", "default-light", "gruvbox", "gruvbox-light", "nord", "nord-light"
#color = "default"
# Show memory values in the processes widget as values by default
#mem_as_value = false
# Show tree mode by default in the processes widget.
#tree = false
# Shows an indicator in table widgets tracking where in the list you are.
#show_table_scroll_position = false
# Show processes as their commands by default in the process widget.
#process_command = false
# Displays the network widget with binary prefixes.
#network_use_binary_prefix = false
# Displays the network widget using bytes.
#network_use_bytes = false
# Displays the network widget with a log scale.
#network_use_log = false
# Hides advanced options to stop a process on Unix-like systems.
#disable_advanced_kill = false
# Shows GPU(s) memory
enable_gpu_memory = true
# Shows cache and buffer memory
enable_cache_memory = true
# How much data is stored at once in terms of time.
#retention = "10m"
# These are flags around the process widget.
#[processes]
#columns = ["PID", "Name", "CPU%", "Mem%", "R/s", "W/s", "T.Read", "T.Write", "User", "State"]
# These are all the components that support custom theming. Note that colour support
# will depend on terminal support.
#[colors] # Uncomment if you want to use custom colors
# Represents the colour of table headers (processes, CPU, disks, temperature).
#table_header_color="LightBlue"
# Represents the colour of the label each widget has.
#widget_title_color="Gray"
# Represents the average CPU color.
#avg_cpu_color="Red"
# Represents the colour the core will use in the CPU legend and graph.
#cpu_core_colors=["LightMagenta", "LightYellow", "LightCyan", "LightGreen", "LightBlue", "LightRed", "Cyan", "Green", "Blue", "Red"]
# Represents the colour RAM will use in the memory legend and graph.
#ram_color="LightMagenta"
# Represents the colour SWAP will use in the memory legend and graph.
#swap_color="LightYellow"
# Represents the colour ARC will use in the memory legend and graph.
#arc_color="LightCyan"
# Represents the colour the GPU will use in the memory legend and graph.
#gpu_core_colors=["LightGreen", "LightBlue", "LightRed", "Cyan", "Green", "Blue", "Red"]
# Represents the colour rx will use in the network legend and graph.
#rx_color="LightCyan"
# Represents the colour tx will use in the network legend and graph.
#tx_color="LightGreen"
# Represents the colour of the border of unselected widgets.
#border_color="Gray"
# Represents the colour of the border of selected widgets.
#highlighted_border_color="LightBlue"
# Represents the colour of most text.
#text_color="Gray"
# Represents the colour of text that is selected.
#selected_text_color="Black"
# Represents the background colour of text that is selected.
#selected_bg_color="LightBlue"
# Represents the colour of the lines and text of the graph.
#graph_color="Gray"
# Represents the colours of the battery based on charge
#high_battery_color="green"
#medium_battery_color="yellow"
#low_battery_color="red"
# Layout - layouts follow a pattern like this:
# [[row]] represents a row in the application.
# [[row.child]] represents either a widget or a column.
# [[row.child.child]] represents a widget.
#
# All widgets must have the type value set to one of ["cpu", "mem", "proc", "net", "temp", "disk", "empty"].
# All layout components have a ratio value - if this is not set, then it defaults to 1.
# The default widget layout:
#[[row]]
# ratio=30
# [[row.child]]
# type="cpu"
#[[row]]
# ratio=40
# [[row.child]]
# ratio=4
# type="mem"
# [[row.child]]
# ratio=3
# [[row.child.child]]
# type="temp"
# [[row.child.child]]
# type="disk"
#[[row]]
# ratio=30
# [[row.child]]
# type="net"
# [[row.child]]
# type="proc"
# default=true
# Filters - you can hide specific temperature sensors, network interfaces, and disks using filters. This is admittedly
# a bit hard to use as of now, and there is a planned in-app interface for managing this in the future:
#[disk_filter]
#is_list_ignored = true
#list = ["/dev/sda\\d+", "/dev/nvme0n1p2"]
#regex = true
#case_sensitive = false
#whole_word = false
#[mount_filter]
#is_list_ignored = true
#list = ["/mnt/.*", "/boot"]
#regex = true
#case_sensitive = false
#whole_word = false
#[temp_filter]
#is_list_ignored = true
#list = ["cpu", "wifi"]
#regex = false
#case_sensitive = false
#whole_word = false
#[net_filter]
#is_list_ignored = true
#list = ["virbr0.*"]
#regex = true
#case_sensitive = false
#whole_word = false

View File

@@ -0,0 +1 @@
--enable-features=UseOzonePlatform --ozone-platform=wayland

View File

@@ -0,0 +1,16 @@
{
"edit_mode": "vi",
"external_editor": "nvim",
"color_scheme": "default",
"syntax_theme": "inkpot",
"autoformat": true,
"autoinspect": true,
"autocomplete": true,
"enable_language_servers": true,
"accent_color": "#7aa2f7",
"show_file_icons": true,
"notebook": {
"show_side_bar": true,
"background_pattern": 5
}
}

View File

@@ -0,0 +1,28 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"type": "file-raw",
"source": "/home/cianh/.config/fastfetch/logo.txt"
},
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"de",
"wm",
"terminal",
"cpu",
"gpu",
"memory",
"swap",
"localip",
"battery",
"poweradapter",
"break"
]
}

View File

@@ -0,0 +1,30 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"type": "kitty-direct",
"source": "/home/cianh/.config/fastfetch/logo.png",
"width": 64,
"height": 18
},
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"de",
"wm",
"terminal",
"cpu",
"gpu",
"memory",
"swap",
"localip",
"battery",
"poweradapter",
"break"
]
}

BIN
.config/fastfetch/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,27 @@
  
 
 
 
▆▅▄▃▂▂▁  
▃▂▁▁╺╶╴▇▇▆▅▄▃▂▂▁ 
▇▇▆▅▄▃▂▁▁ ╺╴▇▇▆▅▄▃▃▂▁ 
   ▇▇▆▅▄▃▂▂▁╴╸─▇▇▆▅▅▄▃ 
  ▗▄▃    ▇▇▆▅▄▃▃▁╻▊ 
     ▝┊╴▆▇▇▎      ▍┃▊ ▃▄▖ 
  ▇▇▝▅╺━▖   ▍┃▊  ▂▘▗▅▁▄ 
    ▏▏▂▗▃▁▌     ▍┃▊  ▂▅▆▂▄▆  ▄▃▂▆▅▄▂▁ 
    ▏▆▆ ▄▆▌      ▍┃▊ ▃▅▁▄▆  ▆▄▂▆▄▂ ▁▃▄ 
   ▅▅▄▃▂▁▌   ▍┃▊ ▃▅▃▆   ▆▄▁▁▃▖▉ 
      ▍┃▊ ▗▘▃▅  ▏ ▄▃▂▂   ▌▊ 
▄▄▃▂▁▁       ▍┃ ▅▗▘ ▇▇▝▄▃▁▆▍ ▗▄▃▆▂▃▇▅  ▎▌ 
▇▆▆▅▄▃▂▁▆▅▄▃▂▁▁  ▍┃▃▉▎ ▁▂▄▅▇▅▄▃▂▁  ▝▃ ▌╍╹▇▖▋ ▌▝ 
 ▇▇▎▗▄▏▇▁▆▅▄▃▂▂▁   ▍┃╺╾┰▃▂ ╺╸ ┒▃▂▁╺┄╴▇▆▅▅▄▃▂▏▍▝▂     ▏▍  ▃▄▅▅▅▄▂ 
 ▂▄▃▎▍ ▏ ▍ ▇▇▆▅▄▖▇▇▆▅▄▘╹ ╸ ▗▖ ╎▅ ╶─╴▇▆▅╺━─▃▂▁▁╸─ ▇▆▅▄▃▂▁▁▌▊ ▘╹ ▄━▘ ╴▖ 
 ▁▄▆▃▆▆▎▍ ▏▄▆▅▄▃▂▂▁▝▄▃▂▁▁ ╵▅ ╶┬╴▇▆▁╺━ ▗▂ ▝╴ ┒▇▆▁ ━━╴ ▂▁ ╾╴ ▁▆▊┊┈┉  ╴▅▊ 
 ▌ ▄▃▂▂▝▂▁▁▗ ▇▇▆╸ ▉  ▇▆▅▄▃▂▁▁ ▇ ▝╴ ▃ ╵▅ ╺╾╴▉▂▆ ┉━─▃▂▆╵ ▋ ▖┊▃▂▂▂▃ ▅▅▄▃▂▁ 
 ▝▅▄▃▂▁▁ ▇▇▆▅▄▄▆╴▁▄▇ ▇▇▆▅▄▃▂▁ ▇▇ ━╸ ▃  ▅┉━╸▇▁▄▆ ▋╶▃▇▇▇▖▊ ▇▆▅▄▃▂▂▆▅▄▃▂▁▁ 
  ▇▆▅▄▃▂▃▆  ▇▆▅▄▃▂▂▁ ▆╵ ▂▆  ┊╎▂▂▂╴▌  ▇▆▅▄▃▂▇▆▅▄▃
  ▇▆▅▇ ▅▄▄▄▄▅ ▇▆▆
 
 
 

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

View File

@@ -0,0 +1,30 @@
{
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
"logo": {
"type": "sixel",
"source": "/home/cianh/.config/fastfetch/logo.six",
"width": 64,
"height": 18
},
"modules": [
"title",
"separator",
"os",
"host",
"kernel",
"uptime",
"packages",
"shell",
"de",
"wm",
"terminal",
"cpu",
"gpu",
"memory",
"swap",
"localip",
"battery",
"poweradapter",
"break"
]
}

29
.config/git/config Normal file
View File

@@ -0,0 +1,29 @@
[user]
name = Cian Hughes
email = chughes000@gmail.com
[init]
defaultBranch = "main"
[credential]
helper = manager
credentialStore = gpg
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[core]
pager = delta
[diff]
tool = delta
[difftool]
prompt = false
trustExitCode = true
[merge]
conflictstyle = diff3
tool = meld
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
line-numbers = true
side-by-side = true

View File

@@ -0,0 +1,182 @@
{
"document": {
"block_prefix": "\n",
"block_suffix": "\n",
"color": "#a9b1d6",
"margin": 2
},
"block_quote": {
"indent": 1,
"indent_token": "│ "
},
"paragraph": {},
"list": {
"color": "#a9b1d6",
"level_indent": 2
},
"heading": {
"block_suffix": "\n",
"color": "#bb9af7",
"bold": true
},
"h1": {
"prefix": "# ",
"bold": true
},
"h2": {
"prefix": "## "
},
"h3": {
"prefix": "### "
},
"h4": {
"prefix": "#### "
},
"h5": {
"prefix": "##### "
},
"h6": {
"prefix": "###### "
},
"text": {},
"strikethrough": {
"crossed_out": true
},
"emph": {
"italic": true
},
"strong": {
"bold": true
},
"hr": {
"color": "#565f89",
"format": "\n--------\n"
},
"item": {
"block_prefix": "• "
},
"enumeration": {
"block_prefix": ". ",
"color": "#7aa2f7"
},
"task": {
"ticked": "[✓] ",
"unticked": "[ ] "
},
"link": {
"color": "#7aa2f7",
"underline": true
},
"link_text": {
"color": "#2ac3de"
},
"image": {
"color": "#7aa2f7",
"underline": true
},
"image_text": {
"color": "#2ac3de",
"format": "Image: {{.text}} →"
},
"code": {
"color": "#9ece6a"
},
"code_block": {
"color": "#ff9e64",
"margin": 2,
"chroma": {
"text": {
"color": "#a9b1d6"
},
"error": {
"color": "#a9b1d6",
"background_color": "#f7768e"
},
"comment": {
"color": "#565f89"
},
"comment_preproc": {
"color": "#2ac3de"
},
"keyword": {
"color": "#2ac3de"
},
"keyword_reserved": {
"color": "#2ac3de"
},
"keyword_namespace": {
"color": "#2ac3de"
},
"keyword_type": {
"color": "#7aa2f7"
},
"operator": {
"color": "#2ac3de"
},
"punctuation": {
"color": "#a9b1d6"
},
"name": {
"color": "#7aa2f7"
},
"name_builtin": {
"color": "#7aa2f7"
},
"name_tag": {
"color": "#2ac3de"
},
"name_attribute": {
"color": "#9ece6a"
},
"name_class": {
"color": "#7aa2f7"
},
"name_constant": {
"color": "#bb9af7"
},
"name_decorator": {
"color": "#9ece6a"
},
"name_exception": {},
"name_function": {
"color": "#9ece6a"
},
"name_other": {},
"literal": {},
"literal_number": {},
"literal_date": {},
"literal_string": {
"color": "#e0af68"
},
"literal_string_escape": {
"color": "#2ac3de"
},
"generic_deleted": {
"color": "#f7768e"
},
"generic_emph": {
"italic": true
},
"generic_inserted": {
"color": "#9ece6a"
},
"generic_strong": {
"bold": true
},
"generic_subheading": {
"color": "#bb9af7"
},
"background": {
"background_color": "#1a1b26"
}
}
},
"table": {},
"definition_list": {},
"definition_term": {},
"definition_description": {
"block_prefix": "\n🠶 "
},
"html_block": {},
"html_span": {}
}

10
.config/glow/glow.yml Normal file
View File

@@ -0,0 +1,10 @@
# style name or JSON path (default "auto")
style: "auto"
# show local files only; no network (TUI-mode only)
local: false
# mouse support (TUI-mode only)
mouse: false
# use pager to display markdown
pager: false
# word-wrap at width
width: 80

12
.config/helix/config.toml Normal file
View File

@@ -0,0 +1,12 @@
theme = "tokyonight"
[editor]
line-number = "relative"
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false

17
.config/hg/hgrc Normal file
View File

@@ -0,0 +1,17 @@
# example user config (see 'hg help config' for more info)
[ui]
# name and email, e.g.
username = Cian Hughes <chughes000@gmail.com>
# We recommend enabling tweakdefaults to get slight improvements to
# the UI over time. Make sure to set HGPLAIN in the environment when
# writing scripts!
tweakdefaults = True
[extensions]
# uncomment the lines below to enable some popular extensions
# (see 'hg help extensions' for more info)
#
# histedit =
# rebase =
# uncommit =

View File

@@ -0,0 +1,16 @@
input {
kb_layout = us
kb_variant =
kb_model =
kb_options =
kb_rules =
follow_mouse = 1
touchpad {
natural_scroll = true
}
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
}

View File

@@ -0,0 +1,2 @@
# Animation preferences
bezier = easeInOutBack,0.05,0.9,0.1,1.1

75
.config/hypr/binds.conf Normal file
View File

@@ -0,0 +1,75 @@
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
bind = $mainMod, Q, exec, $terminal
bind = $mainMod, W, exec, $browser
bind = $mainMod, E, exec, $fileManager
bind = $mainMod, R, exec, $menu
bind = $mainMod, T, exec, $screenshot
bind = $mainMod, ESCAPE, exec, $lockscreen
bind = $mainMod SHIFT, T, exec, $colorpicker
bind = $mainMod, ., exec, $emojipicker
bind = $mainMod, C, killactive,
bind = $mainMod, V, togglefloating,
bind = $mainMod, M, exit,
bind = $mainMod, P, pseudo, # dwindle
bind = $mainMod, ;, togglesplit, # dwindle
# Move focus with mainMod + arrow keys
bind = $mainMod, left, movefocus, l
bind = $mainMod, down, movefocus, d
bind = $mainMod, up, movefocus, u
bind = $mainMod, right, movefocus, r
bind = $mainMod, H, movefocus, l
bind = $mainMod, J, movefocus, d
bind = $mainMod, K, movefocus, u
bind = $mainMod, L, movefocus, r
# Move active window around workspaces with mainMod + SHIFT + arrow keys
bind = $mainMod SHIFT, left, movewindow, l
bind = $mainMod SHIFT, down, movetoworkspace, +1
bind = $mainMod SHIFT, up, movetoworkspace, -1
bind = $mainMod SHIFT, right, movewindow, r
bind = $mainMod SHIFT, H, movewindow, l
bind = $mainMod SHIFT, J, movetoworkspace, +1
bind = $mainMod SHIFT, K, movetoworkspace, -1
bind = $mainMod SHIFT, L, movewindow, r
# Switch workspaces with mainMod + [0-9]
bind = $mainMod, 1, workspace, 1
bind = $mainMod, 2, workspace, 2
bind = $mainMod, 3, workspace, 3
bind = $mainMod, 4, workspace, 4
bind = $mainMod, 5, workspace, 5
bind = $mainMod, 6, workspace, 6
bind = $mainMod, 7, workspace, 7
bind = $mainMod, 8, workspace, 8
bind = $mainMod, 9, workspace, 9
bind = $mainMod, 0, workspace, 10
# Move active window to a workspace with mainMod + SHIFT + [0-9]
bind = $mainMod SHIFT, 1, movetoworkspace, 1
bind = $mainMod SHIFT, 2, movetoworkspace, 2
bind = $mainMod SHIFT, 3, movetoworkspace, 3
bind = $mainMod SHIFT, 4, movetoworkspace, 4
bind = $mainMod SHIFT, 5, movetoworkspace, 5
bind = $mainMod SHIFT, 6, movetoworkspace, 6
bind = $mainMod SHIFT, 7, movetoworkspace, 7
bind = $mainMod SHIFT, 8, movetoworkspace, 8
bind = $mainMod SHIFT, 9, movetoworkspace, 9
bind = $mainMod SHIFT, 0, movetoworkspace, 10
# Example special workspace (scratchpad)
bind = $mainMod, S, togglespecialworkspace, magic
bind = $mainMod SHIFT, S, movetoworkspace, special:magic
# Scroll through existing workspaces with mainMod + scroll
bind = $mainMod, mouse_down, workspace, e+1
bind = $mainMod, mouse_up, workspace, e-1
# Move/resize windows with mainMod + LMB/RMB and dragging
bindm = $mainMod, mouse:272, movewindow
bindm = $mainMod, mouse:273, resizewindow
# Media key bindings
binde=, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+
binde=, XF86AudioLowerVolume, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%-
binde=, XF86AudioMute, exec, wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 0%

View File

@@ -0,0 +1,26 @@
# Some default env vars.
env = SDL_VIDEODRIVER,wayland
env = CLUTTER_BACKEND,wayland
env = HYPRCURSOR_THEME,"phinger-cursor"
env = HYPRCURSOR_SIZE,28
$terminal = kitty
$fileManager = thunar
$browser = zen
$lockscreen = hyprlock
$colorpicker = hyprpicker
$emojipicker = smile
$screenshot = hyprshot --mode region -o ~/Pictures/Screenshot/
$menu = wofi --show drun --normal window --prompt "Run application"
$mainMod = SUPER
source = monitors.conf
source = variables.conf
source = rules.conf
source = binds.conf
source = inputs.conf
source = appearance.conf
exec-once = pueued -d
exec-once = waybar
exec-once = hyprpaper

View File

@@ -0,0 +1,76 @@
background {
monitor =
path = ~/Pictures/Wallpapers/City_1_Upscaled.png
color = rgba(25, 20, 20, 1.0)
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
blur_passes = 0 # 0 disables blurring
blur_size = 7
noise = 0.0117
contrast = 0.8916
brightness = 0.8172
vibrancy = 0.1696
vibrancy_darkness = 0.0
}
image {
monitor =
path = ~/Pictures/Avatars/Avatar.jpg
size = 192 # lesser side if not 1:1 ratio
rounding = -1 # negative values mean circle
border_size = 4
border_color = rgb(7aa2f7)
rotate = 0 # degrees, counter-clockwise
reload_time = -1 # seconds between reloading, 0 to reload with SIGUSR2
reload_cmd = # command to get new path. if empty, old path will be used. don't run "follow" commands like tail -F
position = 0, 200
halign = center
valign = center
}
input-field {
monitor =
size = 420, 50
outline_thickness = 3
dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8
dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0
dots_center = true
dots_rounding = -1 # -1 default circle, -2 follow input-field rounding
outer_color = rgb(7aa2f7)
inner_color = rgb(1a1b26)
font_color = rgb(c0caf5)
fade_on_empty = true
fade_timeout = 1000 # Milliseconds before fade_on_empty is triggered.
placeholder_text = <i>Input Password...</i> # Text rendered in the input box when it's empty.
hide_input = false
rounding = -1 # -1 means complete rounding (circle/oval)
check_color = rgb(204, 136, 34)
fail_color = rgb(204, 34, 34) # if authentication failed, changes outer_color and fail message color
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i> # can be set to empty
fail_timeout = 2000 # milliseconds before fail_text and fail_color disappears
fail_transition = 300 # transition time in ms between normal outer_color and fail_color
capslock_color = -1
numlock_color = -1
bothlock_color = -1 # when both locks are active. -1 means don't change outer color (same for above)
invert_numlock = false # change color if numlock is off
swap_font_color = false # see below
position = 0, -20
halign = center
valign = center
}
label {
monitor =
text = Hi there, $USER
text_align = center # center/right or any value for default left. multi-line text alignment inside label container
color = rgb(c0caf5)
font_size = 25
font_family = Noto Sans
rotate = 0 # degrees, counter-clockwise
position = 0, 80
halign = center
valign = center
}

View File

@@ -0,0 +1,7 @@
preload = ~/Pictures/Wallpapers/City_1_Upscaled.png
splash = true
wallpaper = eDP-1,~/Pictures/Wallpapers/City_1_Upscaled.png
wallpaper = DP-4,~/Pictures/Wallpapers/City_1_Upscaled.png
wallpaper = DP-5,~/Pictures/Wallpapers/City_1_Upscaled.png
wallpaper = DP-6,~/Pictures/Wallpapers/City_1_Upscaled.png

View File

@@ -0,0 +1,2 @@
ie
us

View File

@@ -0,0 +1,5 @@
# See https://wiki.hyprland.org/Configuring/Monitors/
monitor=,preferred,auto,auto
monitor=eDP-1,1920x1080@60,auto,1.2
monitor=DP-6,1920x1080@60,auto,auto,transform,3
monitor=DP-4,2560x1440@144,auto-left,auto

2
.config/hypr/rules.conf Normal file
View File

@@ -0,0 +1,2 @@
windowrulev2 = stayfocused,class:(wofi)
windowrulev2 = noborder,class:(wofi)

View File

@@ -0,0 +1,8 @@
#! /usr/bin/env bash
SCRIPT_PATH="$(realpath "$0")"
SCRIPT_DIR="$(dirname "$SCRIPT_PATH")"
cd "$SCRIPT_DIR"
go build -o ./cycle_kb_layout ./src/cycle_kb_layout.go

Binary file not shown.

View File

@@ -0,0 +1,148 @@
package main
import (
"bufio"
"flag"
"fmt"
"os"
"path/filepath"
"strings"
)
const valueToChange = "kb_layout"
func readLayouts(layoutFile string) ([]string, error) {
file, err := os.Open(layoutFile)
if err != nil {
return nil, err
}
defer file.Close()
var layouts []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
layout := strings.TrimSpace(scanner.Text())
if layout != "" {
layouts = append(layouts, layout)
}
}
if err := scanner.Err(); err != nil {
return nil, err
}
// To prevent index out of range error in toggleLine function
layouts = append(layouts, layouts[0]) // Cycle back to the first layout
return layouts, nil
}
func isTargetLine(line string) bool {
return strings.Contains(line, valueToChange)
}
func readCurrentConfig(configFile string) ([]string, error) {
file, err := os.Open(configFile)
if err != nil {
return nil, err
}
defer file.Close()
var lines []string
scanner := bufio.NewScanner(file)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
if err := scanner.Err(); err != nil {
return nil, err
}
return lines, nil
}
func writeNewConfig(lines []string, configFile string) error {
file, err := os.Create(configFile)
if err != nil {
return err
}
defer file.Close()
for _, line := range lines {
_, err := file.WriteString(line + "\n")
if err != nil {
return err
}
}
return nil
}
func toggleLine(line string, layouts []string) string {
var builder strings.Builder
indentLength := len(line) - len(strings.TrimLeft(line, " \t"))
builder.Grow(len(line)) // Preallocate enough space to avoid multiple allocations
builder.WriteString(strings.Repeat(" ", indentLength))
codeAndComments := strings.SplitN(line, "#", 2)
code := strings.TrimSpace(codeAndComments[0])
tokens := strings.Fields(code)
currentLayout := tokens[len(tokens)-1]
index := (strings.Index(strings.Join(layouts, " "), currentLayout)/len(currentLayout) + 1) % len(layouts)
tokens[len(tokens)-1] = layouts[index]
builder.WriteString(strings.Join(tokens, " "))
if len(codeAndComments) > 1 {
builder.WriteString(" # ")
builder.WriteString(codeAndComments[1])
}
return builder.String()
}
func cycleKbLayout(configFile, layoutFile string) error {
layouts, err := readLayouts(layoutFile)
if err != nil {
return err
}
lines, err := readCurrentConfig(configFile)
if err != nil {
return err
}
var newLines []string
for _, line := range lines {
if isTargetLine(line) {
line = toggleLine(line, layouts)
}
newLines = append(newLines, line)
}
return writeNewConfig(newLines, configFile)
}
// Define flags for the input files
var configFile = flag.String("c", "inputs.conf", "Path to the configuration file")
var layoutFile = flag.String("l", "kb_layouts.txt", "Path to the keyboard layout file")
func main() {
// Parse command-line flags
flag.Parse()
// Determine the absolute paths based on provided flags
hyprDir, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
fmt.Println("Error getting directory: %v", err)
}
configFilePath := filepath.Join(hyprDir, *configFile)
layoutFilePath := filepath.Join(hyprDir, *layoutFile)
// Call the cycleKbLayout function with the paths from the flags
if err := cycleKbLayout(configFilePath, layoutFilePath); err != nil {
fmt.Println("Error cycling keyboard layout: %v", err)
}
}

View File

@@ -0,0 +1,3 @@
module cycle_kb_layout
go 1.21.8

View File

@@ -0,0 +1,64 @@
general {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
gaps_in = 6
gaps_out = 6
border_size = 2
col.active_border = rgb(7aa2f7)
col.inactive_border = rgba(595959aa)
layout = dwindle
# Please see https://wiki.hyprland.org/Configuring/Tearing/ before you turn this on
allow_tearing = false
}
decoration {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
rounding = 8
blur {
enabled = true
size = 3
passes = 1
vibrancy = 0.1696
}
drop_shadow = true
shadow_range = 4
shadow_render_power = 3
col.shadow = rgba(1a1a1aee)
}
animations {
enabled = true
# Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more
bezier = myBezier, 0.05, 0.9, 0.1, 1.05
animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default
animation = borderangle, 1, 8, default
animation = fade, 1, 7, default
animation = workspaces, 1, 6, default
}
dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = true # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = true # you probably want this
}
gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
workspace_swipe = false
}
misc {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers
}

View File

@@ -0,0 +1,10 @@
font_family MonaspiceNeNFM-Regular
bold_font MonaspiceNeNFM-Bold
italic_font MonaspiceNeNFM-Italic
bold_italic_font MonaspiceNeNFM-BoldItalic
# calt (texture healing) needs to be disabled because it doesn;t render correctly right now
font_features MonaspiceNeNFM-Regular -calt +liga +ss01 +ss02 +ss03 +ss04 +ss05 +ss06 +ss07 +ss08
font_features MonaspiceNeNFM-Bold -calt +liga +ss01 +ss02 +ss03 +ss04 +ss05 +ss06 +ss07 +ss08
font_features MonaspiceNeNFM-Italic -calt +liga +ss01 +ss02 +ss03 +ss04 +ss05 +ss06 +ss07 +ss08
font_features MonaspiceNeNFM-BoldItalic -calt +liga +ss01 +ss02 +ss03 +ss04 +ss05 +ss06 +ss07 +ss08
font_size 16.0

View File

@@ -0,0 +1,36 @@
# First, lets remove default keybindings i dont want to keep
map ctrl+shift+t discard_event
map ctrl+shift+left discard_event
map ctrl+shift+right discard_event
map ctrl+shift+enter discard_event
map ctrl+shift+l discard_event
map ctrl+shift+[ discard_event
map ctrl+shift+] discard_event
map ctrl+shift+n discard_event
map ctrl+shift+q discard_event
# I like the zellij bindings so lets make something similar here
map alt+n new_window
map alt+shift+n launch --cwd=current
map ctrl+alt+n new_os_window
map ctrl+alt+shift+n new_os_window_with_cwd
map alt+q close_window
map alt+l next_window
map alt+right next_window
map alt+h previous_window
map alt+left previous_window
map alt+shift+l move_window_forward
map alt+shift+right move_window_forward
map alt+shift+h move_window_backward
map alt+shift+left move_window_backward
map alt+r start_resizing_window
# Lets fill in the gaps with tab controls that make sense
map alt+t new_tab
map alt+shift+t set_tab_title
map alt+k next_tab
map alt+up next_tab
map alt+j previous_tab
map alt+down previous_tab
map alt+shift+k move_tab_forward
map alt+shift+up move_tab_forward
map alt+shift+j move_tab_backward
map alt+shift+down move_tab_backward

View File

@@ -0,0 +1,5 @@
hide_window_decorations yes
enabled_layouts Grid, Stack, Splits, Horizontal, Vertical, Fat, Tall
tab_bar_style powerline
tab_powerline_style slanted
# tab_activity_symbol "󰜎 "

View File

@@ -0,0 +1,45 @@
# vim:ft=kitty
## name: Tokyo Night
## license: MIT
## author: Folke Lemaitre
## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty_tokyonight_night.conf
background #1a1b26
foreground #c0caf5
selection_background #33467C
selection_foreground #c0caf5
url_color #73daca
cursor #c0caf5
# Tabs
active_tab_background #7aa2f7
active_tab_foreground #1f2335
inactive_tab_background #292e42
inactive_tab_foreground #545c7e
#tab_bar_background #15161E
# normal
color0 #15161E
color1 #f7768e
color2 #9ece6a
color3 #e0af68
color4 #7aa2f7
color5 #bb9af7
color6 #7dcfff
color7 #a9b1d6
# bright
color8 #414868
color9 #f7768e
color10 #9ece6a
color11 #e0af68
color12 #7aa2f7
color13 #bb9af7
color14 #7dcfff
color15 #c0caf5
# extended colors
color16 #ff9e64
color17 #db4b4b

6
.config/kitty/kitty.conf Normal file
View File

@@ -0,0 +1,6 @@
globinclude config/*.conf
# BEGIN_KITTY_THEME
# Tokyo Night
include current-theme.conf
# END_KITTY_THEME

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

Some files were not shown because too many files have changed in this diff Show More