Grouping stuff

This commit is contained in:
2017-10-15 20:50:00 +02:00
parent b90cf92fb5
commit 832fa5ee30
30 changed files with 120 additions and 37 deletions

30
terminal/kitty/kitty.conf Normal file
View File

@@ -0,0 +1,30 @@
font_size 8.0
# macos_hide_titlebar yes
# term xterm-256color
background #282828
foreground #ebdbb2
color0 #282828
color8 #928374
color1 #cc241d
color9 #fb4934
color2 #98971a
color10 #b8bb26
color3 #d79921
color11 #fabd2f
color4 #458588
color12 #83a598
color5 #b16286
color13 #d3869b
color6 #689d6a
color14 #8ec07c
color7 #a89984
color15 #ebdbb2
map super+v paste_from_clipboard
map super+c copy_to_clipboard
map super+minus increase_font_size
map super+shift+minus decrease_font_size
map super+0 restore_font_size

21
terminal/kitty/setup.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env bash
source ${DOTFILES}/helpers.sh
function main()
{
local scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
print_info "Installing kitty terminal"
# Copy kitty.app to /Applications
# cp ${KITTY_PATH} /Applications/.
# Install configuration file
linkfile ${scriptdir}/kitty.conf ${HOME}/Library/Preferences/kitty/kitty.conf
print_ok "Kitty terminal installed"
}
main "$@"