Compare commits
18 Commits
terry
...
update-sud
| Author | SHA1 | Date | |
|---|---|---|---|
| fe5ad9f4af | |||
| f2c4618f5b | |||
| b74fdc59fd | |||
| 43f32ee7ff | |||
| f8352b9f02 | |||
| 75bd35b942 | |||
| 61317b5483 | |||
| 008fec04a7 | |||
| c8f0d4d729 | |||
| a860c85827 | |||
| bcc4ffa91a | |||
| a9c33ba704 | |||
| aa899f592e | |||
| fd6138e96f | |||
| 44f739e9db | |||
| af3b58f9d9 | |||
| 9755ce389a | |||
| 8d13ca672e |
501
alacritty.yml
Normal file
501
alacritty.yml
Normal file
@@ -0,0 +1,501 @@
|
||||
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||
|
||||
# Any items in the `env` entry below will be added as
|
||||
# environment variables. Some entries may override variables
|
||||
# set by alacritty itself.
|
||||
#env:
|
||||
# TERM variable
|
||||
#
|
||||
# This value is used to set the `$TERM` environment variable for
|
||||
# each instance of Alacritty. If it is not present, alacritty will
|
||||
# check the local terminfo database and use 'alacritty' if it is
|
||||
# available, otherwise 'xterm-256color' is used.
|
||||
#TERM: xterm-256color
|
||||
|
||||
window:
|
||||
# Window dimensions (changes require restart)
|
||||
#
|
||||
# Specified in number of columns/lines, not pixels.
|
||||
# If both are `0`, this setting is ignored.
|
||||
dimensions:
|
||||
columns: 0
|
||||
lines: 0
|
||||
|
||||
# Window padding (changes require restart)
|
||||
#
|
||||
# Blank space added around the window in pixels. This padding is not scaled
|
||||
# by DPI and the specified value is always added at both opposing sides.
|
||||
padding:
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
# Window decorations
|
||||
#
|
||||
# Values for `decorations`:
|
||||
# - full: Borders and title bar
|
||||
# - none: Neither borders nor title bar
|
||||
decorations: none
|
||||
|
||||
dynamic_title: false
|
||||
opacity: 0.8
|
||||
|
||||
scrolling:
|
||||
# Maximum number of lines in the scrollback buffer.
|
||||
# Specifying '0' will disable scrolling.
|
||||
history: 10000
|
||||
|
||||
# Number of lines the viewport will move for every line scrolled when
|
||||
# scrollback is enabled (history > 0).
|
||||
multiplier: 3
|
||||
|
||||
# Font configuration (changes require restart)
|
||||
#
|
||||
# Important font attributes like antialiasing, subpixel aa, and hinting can be
|
||||
# controlled through fontconfig. Specifically, the following attributes should
|
||||
# have an effect:
|
||||
# - hintstyle
|
||||
# - antialias
|
||||
# - lcdfilter
|
||||
# - rgba
|
||||
#
|
||||
# For instance, if you wish to disable subpixel antialiasing, you might set the
|
||||
# rgba property to `none`. If you wish to completely disable antialiasing, you
|
||||
# can set antialias to `false`.
|
||||
#
|
||||
# Please see these resources for more information on how to use fontconfig:
|
||||
# - https://wiki.archlinux.org/index.php/font_configuration#Fontconfig_configuration
|
||||
# - file:///usr/share/doc/fontconfig/fontconfig-user.html
|
||||
font:
|
||||
# Normal (roman) font face
|
||||
normal:
|
||||
# family: Ubuntu Mono Nerd Font
|
||||
family: custom monospace
|
||||
# family: Ubuntu Mono derivative Powerline
|
||||
# family: Inconsolata for Powerline
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Regular
|
||||
|
||||
# # Bold font face
|
||||
# bold:
|
||||
# family: Inconsolata for Powerline
|
||||
# # The `style` can be specified to pick a specific face.
|
||||
# #style: Bold
|
||||
|
||||
# # Italic font face
|
||||
# italic:
|
||||
# family: Inconsolata for Powerline
|
||||
# # The `style` can be specified to pick a specific face.
|
||||
# #style: Italic
|
||||
|
||||
# Point size
|
||||
size: 8.0
|
||||
|
||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||
offset:
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
# Glyph offset determines the locations of the glyphs within their cells with
|
||||
# the default being at the bottom. Increasing `x` moves the glyph to the right,
|
||||
# increasing `y` moves the glyph upwards.
|
||||
glyph_offset:
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
# If `true`, bold text is drawn using the bright color variants.
|
||||
draw_bold_text_with_bright_colors: true
|
||||
|
||||
# Colors (Tomorrow Night Bright)
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x000000'
|
||||
foreground: '0xeaeaea'
|
||||
|
||||
# Bright and dim foreground colors
|
||||
#
|
||||
# The dimmed foreground color is calculated automatically if it is not present.
|
||||
# If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
|
||||
# is `false`, the normal foreground color will be used.
|
||||
#dim_foreground: '0x9a9a9a'
|
||||
#bright_foreground: '0xffffff'
|
||||
|
||||
# Cursor colors
|
||||
#
|
||||
# Colors which should be used to draw the terminal cursor. If these are unset,
|
||||
# the cursor color will be the inverse of the cell color.
|
||||
#cursor:
|
||||
# text: '0x000000'
|
||||
# cursor: '0xffffff'
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
|
||||
black: '0x000000'
|
||||
red: '0xcd0000'
|
||||
green: '0x00cd00'
|
||||
yellow: '0xcdcd00'
|
||||
blue: '0x7aa6da'
|
||||
magenta: '0xcd00cd'
|
||||
cyan: '0x3465a4'
|
||||
white: '0xe5e5e5'
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x666666'
|
||||
red: '0xff0000'
|
||||
green: '0x00ff00'
|
||||
yellow: '0xffff00'
|
||||
blue: '0x5c5cff'
|
||||
magenta: '0xff00ff'
|
||||
cyan: '0x00ffff'
|
||||
white: '0xffffff'
|
||||
|
||||
# Dim colors
|
||||
#
|
||||
# If the dim colors are not set, they will be calculated automatically based
|
||||
# on the `normal` colors.
|
||||
dim:
|
||||
black: '0x333333'
|
||||
red: '0xf2777a'
|
||||
green: '0x99cc99'
|
||||
yellow: '0xffcc66'
|
||||
blue: '0x6699cc'
|
||||
magenta: '0xcc99cc'
|
||||
cyan: '0x66cccc'
|
||||
white: '0xdddddd'
|
||||
|
||||
# # Colors (Tomorrow Night Bright)
|
||||
# colors:
|
||||
# # Default colors
|
||||
# primary:
|
||||
# background: '0xffffff'
|
||||
# foreground: '0x000000'
|
||||
#
|
||||
# # Bright and dim foreground colors
|
||||
# #
|
||||
# # The dimmed foreground color is calculated automatically if it is not present.
|
||||
# # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors`
|
||||
# # is `false`, the normal foreground color will be used.
|
||||
# #dim_foreground: '0x9a9a9a'
|
||||
# #bright_foreground: '0xffffff'
|
||||
#
|
||||
# # Cursor colors
|
||||
# #
|
||||
# # Colors which should be used to draw the terminal cursor. If these are unset,
|
||||
# # the cursor color will be the inverse of the cell color.
|
||||
# #cursor:
|
||||
# # text: '0x000000'
|
||||
# # cursor: '0xffffff'
|
||||
#
|
||||
# # Normal colors
|
||||
# normal:
|
||||
#
|
||||
# black: '0x000000'
|
||||
# red: '0xcd0000'
|
||||
# green: '0x00cd00'
|
||||
# yellow: '0xcdcd00'
|
||||
# blue: '0x0000cd'
|
||||
# magenta: '0xcd00cd'
|
||||
# cyan: '0x00cdcd'
|
||||
# white: '0xfaebd7'
|
||||
#
|
||||
# # Bright colors
|
||||
# bright:
|
||||
# black: '0x000000'
|
||||
# red: '0xcd0000'
|
||||
# green: '0x00cd00'
|
||||
# yellow: '0xcdcd00'
|
||||
# blue: '0x0000cd'
|
||||
# magenta: '0xcd00cd'
|
||||
# cyan: '0x00cdcd'
|
||||
# white: '0xfaebd7'
|
||||
#
|
||||
# # Dim colors
|
||||
# #
|
||||
# # If the dim colors are not set, they will be calculated automatically based
|
||||
# # on the `normal` colors.
|
||||
# dim:
|
||||
# black: '0x333333'
|
||||
# red: '0xf2777a'
|
||||
# green: '0x99cc99'
|
||||
# yellow: '0xffcc66'
|
||||
# blue: '0x6699cc'
|
||||
# magenta: '0xcc99cc'
|
||||
# cyan: '0x66cccc'
|
||||
# white: '0xdddddd'
|
||||
#
|
||||
# background_opacity: 1.0
|
||||
|
||||
# Visual Bell
|
||||
#
|
||||
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once
|
||||
# rung, the terminal background will be set to white and transition back to the
|
||||
# default background color. You can control the rate of this transition by
|
||||
# setting the `duration` property (represented in milliseconds). You can also
|
||||
# configure the transition function by setting the `animation` property.
|
||||
#
|
||||
# Values for `animation`:
|
||||
# - Ease
|
||||
# - EaseOut
|
||||
# - EaseOutSine
|
||||
# - EaseOutQuad
|
||||
# - EaseOutCubic
|
||||
# - EaseOutQuart
|
||||
# - EaseOutQuint
|
||||
# - EaseOutExpo
|
||||
# - EaseOutCirc
|
||||
# - Linear
|
||||
#
|
||||
# Specifying a `duration` of `0` will disable the visual bell.
|
||||
bell:
|
||||
animation: EaseOutExpo
|
||||
duration: 0
|
||||
|
||||
# Mouse bindings
|
||||
#
|
||||
# Available fields:
|
||||
# - mouse
|
||||
# - action
|
||||
# - mods (optional)
|
||||
#
|
||||
# Values for `mouse`:
|
||||
# - Middle
|
||||
# - Left
|
||||
# - Right
|
||||
# - Numeric identifier such as `5`
|
||||
#
|
||||
# All available `mods` and `action` values are documented in the key binding
|
||||
# section.
|
||||
mouse_bindings:
|
||||
- { mouse: Middle, action: PasteSelection }
|
||||
|
||||
mouse:
|
||||
# Click settings
|
||||
#
|
||||
# The `double_click` and `triple_click` settings control the time
|
||||
# alacritty should wait for accepting multiple clicks as one double
|
||||
# or triple click.
|
||||
double_click: { threshold: 300 }
|
||||
triple_click: { threshold: 300 }
|
||||
|
||||
# If this is `true`, the cursor is temporarily hidden when typing.
|
||||
hide_when_typing: false
|
||||
|
||||
selection:
|
||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
||||
|
||||
# When set to `true`, selected text will be copied to both the primary and
|
||||
# the selection clipboard. Otherwise, it will only be copied to the selection
|
||||
# clipboard.
|
||||
save_to_clipboard: false
|
||||
|
||||
cursor:
|
||||
# Cursor style
|
||||
#
|
||||
# Values for 'style':
|
||||
# - ▇ Block
|
||||
# - _ Underline
|
||||
# - | Beam
|
||||
style: Block
|
||||
|
||||
# If this is `true`, the cursor will be rendered as a hollow box when the
|
||||
# window is not focused.
|
||||
unfocused_hollow: true
|
||||
|
||||
# Live config reload (changes require restart)
|
||||
live_config_reload: true
|
||||
|
||||
# Shell
|
||||
#
|
||||
# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
|
||||
# Entries in `shell.args` are passed unmodified as arguments to the shell.
|
||||
#shell:
|
||||
# program: /bin/bash
|
||||
# args:
|
||||
# - --login
|
||||
|
||||
# Key bindings
|
||||
#
|
||||
# Key bindings are specified as a list of objects. Each binding will specify
|
||||
# a key and modifiers required to trigger it, terminal modes where the binding
|
||||
# is applicable, and what should be done when the key binding fires. It can
|
||||
# either send a byte sequnce to the running application (`chars`), execute
|
||||
# a predefined action (`action`) or fork and execute a specified command plus
|
||||
# arguments (`command`).
|
||||
#
|
||||
# Example:
|
||||
# `- { key: V, mods: Command, action: Paste }`
|
||||
#
|
||||
# Available fields:
|
||||
# - key
|
||||
# - mods (optional)
|
||||
# - chars | action | command (exactly one required)
|
||||
# - mode (optional)
|
||||
#
|
||||
# Values for `key`:
|
||||
# - `A` -> `Z`
|
||||
# - `F1` -> `F12`
|
||||
# - `Key1` -> `Key0`
|
||||
#
|
||||
# A full list with available key codes can be found here:
|
||||
# https://docs.rs/glutin/*/glutin/enum.VirtualKeyCode.html#variants
|
||||
#
|
||||
# Instead of using the name of the keys, the `key` field also supports using
|
||||
# the scancode of the desired key. Scancodes have to be specified as a
|
||||
# decimal number.
|
||||
# This command will allow you to display the hex scancodes for certain keys:
|
||||
# `showkey --scancodes`
|
||||
#
|
||||
# Values for `mods`:
|
||||
# - Command
|
||||
# - Control
|
||||
# - Shift
|
||||
# - Alt
|
||||
#
|
||||
# Multiple `mods` can be combined using `|` like this: `mods: Control|Shift`.
|
||||
# Whitespace and capitalization is relevant and must match the example.
|
||||
#
|
||||
# Values for `chars`:
|
||||
# The `chars` field writes the specified string to the terminal. This makes
|
||||
# it possible to pass escape sequences.
|
||||
# To find escape codes for bindings like `PageUp` ("\x1b[5~"), you can run
|
||||
# the command `showkey -a` outside of tmux.
|
||||
# Note that applications use terminfo to map escape sequences back to
|
||||
# keys. It is therefore required to update the terminfo when
|
||||
# changing an escape sequence.
|
||||
#
|
||||
# Values for `action`:
|
||||
# - Paste
|
||||
# - PasteSelection
|
||||
# - Copy
|
||||
# - IncreaseFontSize
|
||||
# - DecreaseFontSize
|
||||
# - ResetFontSize
|
||||
# - ScrollPageUp
|
||||
# - ScrollPageDown
|
||||
# - ScrollToTop
|
||||
# - ScrollToBottom
|
||||
# - ClearHistory
|
||||
# - Hide
|
||||
# - Quit
|
||||
#
|
||||
# Values for `command`:
|
||||
# The `command` field must be a map containing a `program` string and
|
||||
# an `args` array of command line parameter strings.
|
||||
#
|
||||
# Example:
|
||||
# `command: { program: "alacritty", args: ["-e", "vttest"] }`
|
||||
#
|
||||
# Values for `mode`:
|
||||
# - ~AppCursor
|
||||
# - AppCursor
|
||||
# - ~AppKeypad
|
||||
# - AppKeypad
|
||||
key_bindings:
|
||||
# Custom
|
||||
- { key: E, mods: Control|Shift, action: SpawnNewInstance }
|
||||
# Already present
|
||||
- { key: V, mods: Control|Shift, action: Paste }
|
||||
- { key: C, mods: Control|Shift, action: Copy }
|
||||
- { key: Paste, action: Paste }
|
||||
- { key: Copy, action: Copy }
|
||||
- { key: Insert, mods: Shift, action: PasteSelection }
|
||||
- { key: Key0, mods: Control, action: ResetFontSize }
|
||||
- { key: Equals, mods: Control, action: IncreaseFontSize }
|
||||
- { key: Home, chars: "\x1bOH", mode: AppCursor }
|
||||
- { key: Home, chars: "\x1b[H", mode: ~AppCursor }
|
||||
- { key: End, chars: "\x1bOF", mode: AppCursor }
|
||||
- { key: End, chars: "\x1b[F", mode: ~AppCursor }
|
||||
- { key: PageUp, mods: Shift, chars: "\x1b[5;2~" }
|
||||
- { key: PageUp, mods: Control, chars: "\x1b[5;5~" }
|
||||
- { key: PageUp, chars: "\x1b[5~" }
|
||||
- { key: PageDown, mods: Shift, chars: "\x1b[6;2~" }
|
||||
- { key: PageDown, mods: Control, chars: "\x1b[6;5~" }
|
||||
- { key: PageDown, chars: "\x1b[6~" }
|
||||
- { key: Tab, mods: Shift, chars: "\x1b[Z" }
|
||||
- { key: Back, chars: "\x7f" }
|
||||
- { key: Back, mods: Alt, chars: "\x1b\x7f" }
|
||||
- { key: Insert, chars: "\x1b[2~" }
|
||||
- { key: Delete, chars: "\x1b[3~" }
|
||||
- { key: Left, mods: Shift, chars: "\x1b[1;2D" }
|
||||
- { key: Left, mods: Control, chars: "\x1b[1;5D" }
|
||||
- { key: Left, mods: Alt, chars: "\x1b[1;3D" }
|
||||
- { key: Left, chars: "\x1b[D", mode: ~AppCursor }
|
||||
- { key: Left, chars: "\x1bOD", mode: AppCursor }
|
||||
- { key: Right, mods: Shift, chars: "\x1b[1;2C" }
|
||||
- { key: Right, mods: Control, chars: "\x1b[1;5C" }
|
||||
- { key: Right, mods: Alt, chars: "\x1b[1;3C" }
|
||||
- { key: Right, chars: "\x1b[C", mode: ~AppCursor }
|
||||
- { key: Right, chars: "\x1bOC", mode: AppCursor }
|
||||
- { key: Up, mods: Shift, chars: "\x1b[1;2A" }
|
||||
- { key: Up, mods: Control, chars: "\x1b[1;5A" }
|
||||
- { key: Up, mods: Alt, chars: "\x1b[1;3A" }
|
||||
- { key: Up, chars: "\x1b[A", mode: ~AppCursor }
|
||||
- { key: Up, chars: "\x1bOA", mode: AppCursor }
|
||||
- { key: Down, mods: Shift, chars: "\x1b[1;2B" }
|
||||
- { key: Down, mods: Control, chars: "\x1b[1;5B" }
|
||||
- { key: Down, mods: Alt, chars: "\x1b[1;3B" }
|
||||
- { key: Down, chars: "\x1b[B", mode: ~AppCursor }
|
||||
- { key: Down, chars: "\x1bOB", mode: AppCursor }
|
||||
- { key: F1, chars: "\x1bOP" }
|
||||
- { key: F2, chars: "\x1bOQ" }
|
||||
- { key: F3, chars: "\x1bOR" }
|
||||
- { key: F4, chars: "\x1bOS" }
|
||||
- { key: F5, chars: "\x1b[15~" }
|
||||
- { key: F6, chars: "\x1b[17~" }
|
||||
- { key: F7, chars: "\x1b[18~" }
|
||||
- { key: F8, chars: "\x1b[19~" }
|
||||
- { key: F9, chars: "\x1b[20~" }
|
||||
- { key: F10, chars: "\x1b[21~" }
|
||||
- { key: F11, chars: "\x1b[23~" }
|
||||
- { key: F12, chars: "\x1b[24~" }
|
||||
- { key: F1, mods: Shift, chars: "\x1b[1;2P" }
|
||||
- { key: F2, mods: Shift, chars: "\x1b[1;2Q" }
|
||||
- { key: F3, mods: Shift, chars: "\x1b[1;2R" }
|
||||
- { key: F4, mods: Shift, chars: "\x1b[1;2S" }
|
||||
- { key: F5, mods: Shift, chars: "\x1b[15;2~" }
|
||||
- { key: F6, mods: Shift, chars: "\x1b[17;2~" }
|
||||
- { key: F7, mods: Shift, chars: "\x1b[18;2~" }
|
||||
- { key: F8, mods: Shift, chars: "\x1b[19;2~" }
|
||||
- { key: F9, mods: Shift, chars: "\x1b[20;2~" }
|
||||
- { key: F10, mods: Shift, chars: "\x1b[21;2~" }
|
||||
- { key: F11, mods: Shift, chars: "\x1b[23;2~" }
|
||||
- { key: F12, mods: Shift, chars: "\x1b[24;2~" }
|
||||
- { key: F1, mods: Control, chars: "\x1b[1;5P" }
|
||||
- { key: F2, mods: Control, chars: "\x1b[1;5Q" }
|
||||
- { key: F3, mods: Control, chars: "\x1b[1;5R" }
|
||||
- { key: F4, mods: Control, chars: "\x1b[1;5S" }
|
||||
- { key: F5, mods: Control, chars: "\x1b[15;5~" }
|
||||
- { key: F6, mods: Control, chars: "\x1b[17;5~" }
|
||||
- { key: F7, mods: Control, chars: "\x1b[18;5~" }
|
||||
- { key: F8, mods: Control, chars: "\x1b[19;5~" }
|
||||
- { key: F9, mods: Control, chars: "\x1b[20;5~" }
|
||||
- { key: F10, mods: Control, chars: "\x1b[21;5~" }
|
||||
- { key: F11, mods: Control, chars: "\x1b[23;5~" }
|
||||
- { key: F12, mods: Control, chars: "\x1b[24;5~" }
|
||||
- { key: F1, mods: Alt, chars: "\x1b[1;6P" }
|
||||
- { key: F2, mods: Alt, chars: "\x1b[1;6Q" }
|
||||
- { key: F3, mods: Alt, chars: "\x1b[1;6R" }
|
||||
- { key: F4, mods: Alt, chars: "\x1b[1;6S" }
|
||||
- { key: F5, mods: Alt, chars: "\x1b[15;6~" }
|
||||
- { key: F6, mods: Alt, chars: "\x1b[17;6~" }
|
||||
- { key: F7, mods: Alt, chars: "\x1b[18;6~" }
|
||||
- { key: F8, mods: Alt, chars: "\x1b[19;6~" }
|
||||
- { key: F9, mods: Alt, chars: "\x1b[20;6~" }
|
||||
- { key: F10, mods: Alt, chars: "\x1b[21;6~" }
|
||||
- { key: F11, mods: Alt, chars: "\x1b[23;6~" }
|
||||
- { key: F12, mods: Alt, chars: "\x1b[24;6~" }
|
||||
- { key: F1, mods: Super, chars: "\x1b[1;3P" }
|
||||
- { key: F2, mods: Super, chars: "\x1b[1;3Q" }
|
||||
- { key: F3, mods: Super, chars: "\x1b[1;3R" }
|
||||
- { key: F4, mods: Super, chars: "\x1b[1;3S" }
|
||||
- { key: F5, mods: Super, chars: "\x1b[15;3~" }
|
||||
- { key: F6, mods: Super, chars: "\x1b[17;3~" }
|
||||
- { key: F7, mods: Super, chars: "\x1b[18;3~" }
|
||||
- { key: F8, mods: Super, chars: "\x1b[19;3~" }
|
||||
- { key: F9, mods: Super, chars: "\x1b[20;3~" }
|
||||
- { key: F10, mods: Super, chars: "\x1b[21;3~" }
|
||||
- { key: F11, mods: Super, chars: "\x1b[23;3~" }
|
||||
- { key: F12, mods: Super, chars: "\x1b[24;3~" }
|
||||
4
bashrc
4
bashrc
@@ -62,9 +62,9 @@ if [ "$color_prompt" = yes ]; then
|
||||
else
|
||||
color="\033[1;35m"
|
||||
fi
|
||||
PS1="${color}┌── \u\033[33m::\033[34m\w\033[0m\n${color}└▷ \033[0m"
|
||||
PS1="${color}┌── \u\033[33m@\033[32m\H\033[33m::\033[34m\w\033[0m\n${color}└▷ \033[0m"
|
||||
else
|
||||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||
PS1='${debian_chroot:+($debian_chroot)}\u@\H:\w\$ '
|
||||
fi
|
||||
unset color_prompt force_color_prompt color
|
||||
|
||||
|
||||
262
bin/server
Executable file
262
bin/server
Executable file
@@ -0,0 +1,262 @@
|
||||
#! /usr/bin/env python
|
||||
|
||||
# Shamefully copied from this gist :
|
||||
# https://gist.github.com/pankajp/280596a5dabaeeceaaaa/
|
||||
|
||||
# Standard library imports.
|
||||
import sys
|
||||
|
||||
if sys.version_info[0] < 3:
|
||||
from SocketServer import ThreadingMixIn
|
||||
import BaseHTTPServer
|
||||
from SimpleHTTPServer import SimpleHTTPRequestHandler
|
||||
from urllib import quote, unquote
|
||||
from cStringIO import StringIO
|
||||
else:
|
||||
import http.server as BaseHTTPServer
|
||||
from http.server import SimpleHTTPRequestHandler
|
||||
from socketserver import ThreadingMixIn
|
||||
from urllib.parse import quote, unquote
|
||||
from io import BytesIO as cStringIO
|
||||
|
||||
import os
|
||||
from os.path import (join, exists, abspath, split, splitdrive, isdir)
|
||||
from os import makedirs, unlink, getcwd, chdir, curdir, pardir, rename, fstat
|
||||
from shutil import copyfileobj, copytree
|
||||
import glob
|
||||
from zipfile import ZipFile
|
||||
from posixpath import normpath
|
||||
import re
|
||||
import cgi
|
||||
import threading
|
||||
import socket
|
||||
import errno
|
||||
|
||||
DATA_DIR = getcwd()
|
||||
|
||||
|
||||
class ThreadingHTTPServer(ThreadingMixIn, BaseHTTPServer.HTTPServer):
|
||||
pass
|
||||
|
||||
|
||||
class RequestHandler(SimpleHTTPRequestHandler):
|
||||
""" Handler to handle POST requests for actions.
|
||||
"""
|
||||
|
||||
serve_path = DATA_DIR
|
||||
|
||||
def do_GET(self):
|
||||
""" Overridden to handle HTTP Range requests. """
|
||||
self.range_from, self.range_to = self._get_range_header()
|
||||
if self.range_from is None:
|
||||
# nothing to do here
|
||||
return SimpleHTTPRequestHandler.do_GET(self)
|
||||
f = self.send_range_head()
|
||||
if f:
|
||||
self.copy_file_range(f, self.wfile)
|
||||
f.close()
|
||||
|
||||
def copy_file_range(self, in_file, out_file):
|
||||
""" Copy only the range in self.range_from/to. """
|
||||
in_file.seek(self.range_from)
|
||||
# Add 1 because the range is inclusive
|
||||
left_to_copy = 1 + self.range_to - self.range_from
|
||||
buf_length = 64 * 1024
|
||||
bytes_copied = 0
|
||||
while bytes_copied < left_to_copy:
|
||||
read_buf = in_file.read(min(buf_length, left_to_copy - bytes_copied))
|
||||
if len(read_buf) == 0:
|
||||
break
|
||||
out_file.write(read_buf)
|
||||
bytes_copied += len(read_buf)
|
||||
return bytes_copied
|
||||
|
||||
def send_range_head(self):
|
||||
"""Common code for GET and HEAD commands.
|
||||
|
||||
This sends the response code and MIME headers.
|
||||
|
||||
Return value is either a file object (which has to be copied
|
||||
to the outputfile by the caller unless the command was HEAD,
|
||||
and must be closed by the caller under all circumstances), or
|
||||
None, in which case the caller has nothing further to do.
|
||||
|
||||
"""
|
||||
path = self.translate_path(self.path)
|
||||
f = None
|
||||
if isdir(path):
|
||||
if not self.path.endswith('/'):
|
||||
# redirect browser - doing basically what apache does
|
||||
self.send_response(301)
|
||||
self.send_header("Location", self.path + "/")
|
||||
self.end_headers()
|
||||
return None
|
||||
for index in "index.html", "index.htm":
|
||||
index = join(path, index)
|
||||
if exists(index):
|
||||
path = index
|
||||
break
|
||||
else:
|
||||
return self.list_directory(path)
|
||||
|
||||
if not exists(path) and path.endswith('/data'):
|
||||
# FIXME: Handle grits-like query with /data appended to path
|
||||
# stupid grits
|
||||
if exists(path[:-5]):
|
||||
path = path[:-5]
|
||||
|
||||
ctype = self.guess_type(path)
|
||||
try:
|
||||
# Always read in binary mode. Opening files in text mode may cause
|
||||
# newline translations, making the actual size of the content
|
||||
# transmitted *less* than the content-length!
|
||||
f = open(path, 'rb')
|
||||
except IOError:
|
||||
self.send_error(404, "File not found")
|
||||
return None
|
||||
|
||||
if self.range_from is None:
|
||||
self.send_response(200)
|
||||
else:
|
||||
self.send_response(206)
|
||||
|
||||
self.send_header("Content-type", ctype)
|
||||
fs = fstat(f.fileno())
|
||||
file_size = fs.st_size
|
||||
if self.range_from is not None:
|
||||
if self.range_to is None or self.range_to >= file_size:
|
||||
self.range_to = file_size - 1
|
||||
self.send_header("Content-Range",
|
||||
"bytes %d-%d/%d" % (self.range_from,
|
||||
self.range_to,
|
||||
file_size))
|
||||
# Add 1 because ranges are inclusive
|
||||
self.send_header("Content-Length",
|
||||
(1 + self.range_to - self.range_from))
|
||||
else:
|
||||
self.send_header("Content-Length", str(file_size))
|
||||
self.send_header("Last-Modified", self.date_time_string(fs.st_mtime))
|
||||
self.end_headers()
|
||||
return f
|
||||
|
||||
def list_directory(self, path):
|
||||
"""Helper to produce a directory listing (absent index.html).
|
||||
|
||||
Return value is either a file object, or None (indicating an
|
||||
error). In either case, the headers are sent, making the
|
||||
interface the same as for send_head().
|
||||
|
||||
"""
|
||||
try:
|
||||
list = os.listdir(path)
|
||||
except os.error:
|
||||
self.send_error(404, "No permission to list directory")
|
||||
return None
|
||||
list.sort(key=lambda a: a.lower())
|
||||
f = StringIO()
|
||||
displaypath = cgi.escape(unquote(self.path))
|
||||
f.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">')
|
||||
f.write("<html>\n<title>Directory listing for %s</title>\n" % displaypath)
|
||||
f.write("<body>\n<h2>Directory listing for %s</h2>\n" % displaypath)
|
||||
f.write("<hr>\n<ul>\n")
|
||||
for name in list:
|
||||
fullname = os.path.join(path, name)
|
||||
displayname = linkname = name
|
||||
# Append / for directories or @ for symbolic links
|
||||
if os.path.isdir(fullname):
|
||||
displayname = name + "/"
|
||||
linkname = name + "/"
|
||||
if os.path.islink(fullname):
|
||||
displayname = name + "@"
|
||||
# Note: a link to a directory displays with @ and links with /
|
||||
f.write('<li><a href="%s">%s</a>\n'
|
||||
% (quote(linkname), cgi.escape(displayname)))
|
||||
f.write("</ul>\n<hr>\n</body>\n</html>\n")
|
||||
length = f.tell()
|
||||
f.seek(0)
|
||||
self.send_response(200)
|
||||
encoding = sys.getfilesystemencoding()
|
||||
self.send_header("Content-type", "text/html; charset=%s" % encoding)
|
||||
self.send_header("Content-Length", str(length))
|
||||
self.end_headers()
|
||||
return f
|
||||
|
||||
def translate_path(self, path):
|
||||
""" Override to handle redirects.
|
||||
"""
|
||||
path = path.split('?', 1)[0]
|
||||
path = path.split('#', 1)[0]
|
||||
path = normpath(unquote(path))
|
||||
words = path.split('/')
|
||||
words = filter(None, words)
|
||||
path = self.serve_path
|
||||
for word in words:
|
||||
drive, word = splitdrive(word)
|
||||
head, word = split(word)
|
||||
if word in (curdir, pardir): continue
|
||||
path = join(path, word)
|
||||
return path
|
||||
|
||||
# Private interface ######################################################
|
||||
|
||||
def _get_range_header(self):
|
||||
""" Returns request Range start and end if specified.
|
||||
If Range header is not specified returns (None, None)
|
||||
"""
|
||||
|
||||
if sys.version_info[0] < 3:
|
||||
range_header = self.headers.getheader("Range")
|
||||
else:
|
||||
range_header = self.headers.get("Range")
|
||||
|
||||
if range_header is None:
|
||||
return (None, None)
|
||||
if not range_header.startswith("bytes="):
|
||||
return (None, None)
|
||||
regex = re.compile(r"^bytes=(\d+)\-(\d+)?")
|
||||
rangething = regex.search(range_header)
|
||||
if rangething:
|
||||
from_val = int(rangething.group(1))
|
||||
if rangething.group(2) is not None:
|
||||
return (from_val, int(rangething.group(2)))
|
||||
else:
|
||||
return (from_val, None)
|
||||
else:
|
||||
return (None, None)
|
||||
|
||||
|
||||
def get_server(port=8000, next_attempts=0, serve_path=None):
|
||||
Handler = RequestHandler
|
||||
if serve_path:
|
||||
Handler.serve_path = serve_path
|
||||
while next_attempts >= 0:
|
||||
try:
|
||||
httpd = ThreadingHTTPServer(("", port), Handler)
|
||||
return httpd
|
||||
except socket.error as e:
|
||||
if e.errno == errno.EADDRINUSE:
|
||||
next_attempts -= 1
|
||||
port += 1
|
||||
else:
|
||||
raise
|
||||
|
||||
|
||||
def main(args=None):
|
||||
if args is None:
|
||||
args = sys.argv[1:]
|
||||
|
||||
PORT = 8000
|
||||
if len(args) > 0:
|
||||
PORT = int(args[-1])
|
||||
serve_path = DATA_DIR
|
||||
if len(args) > 1:
|
||||
serve_path = abspath(args[-2])
|
||||
|
||||
httpd = get_server(port=PORT, serve_path=serve_path)
|
||||
|
||||
print("serving at port " + str(PORT))
|
||||
httpd.serve_forever()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
25
bin/update
25
bin/update
@@ -162,8 +162,13 @@ update-system() {
|
||||
return
|
||||
fi
|
||||
|
||||
if [ -z "$password" ]; then
|
||||
echo -e "\033[32;1m=== Starting system update, please enter your password ===\033[0m"
|
||||
sudo true
|
||||
read -sep "Password: " password
|
||||
fi
|
||||
|
||||
echo $password | sudo -Sp "" true > /dev/null 2>&1
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Could not get sudo..."
|
||||
return 1
|
||||
@@ -175,11 +180,11 @@ update-system() {
|
||||
# Debian based systems
|
||||
command -v apt > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
sudo apt update -y
|
||||
echo $password | sudo -Sp "" apt update -y
|
||||
if [ $? -eq 0 ]; then
|
||||
sudo apt upgrade -y
|
||||
echo $password | sudo -Sp "" apt upgrade -y
|
||||
if [ $? -eq 0 ]; then
|
||||
sudo apt autoremove -y
|
||||
echo $password | sudo -Sp "" apt autoremove -y
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
@@ -191,17 +196,19 @@ update-system() {
|
||||
yay -Syu --noconfirm
|
||||
yay -Syua --noconfirm
|
||||
else
|
||||
|
||||
command -v pacman > /dev/null 2>&1
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
sudo pacman -Syu --noconfirm
|
||||
echo $password | sudo -Sp "" pacman -Syu --noconfirm
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# Fedora based systems
|
||||
command -v dnf > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
sudo dnf upgrade
|
||||
echo $password | sudo -Sp "" dnf upgrade
|
||||
fi
|
||||
|
||||
local seconds=$((`date +%s` - $start))
|
||||
@@ -463,6 +470,12 @@ partial-update() {
|
||||
|
||||
main() {
|
||||
|
||||
if [ "$1" == "--pass" ]; then
|
||||
shift
|
||||
password=$1
|
||||
shift
|
||||
fi
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
_lock_or_error_message
|
||||
local error_code=$?
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
"languageserver": {
|
||||
"rust": {
|
||||
"command": "rustup",
|
||||
"args": ["run", "nightly", "rust-analyzer"],
|
||||
"args": ["run", "stable", "rust-analyzer"],
|
||||
"filetypes": ["rust"],
|
||||
"rootPatterns": ["Cargo.toml"]
|
||||
},
|
||||
"elm": {
|
||||
"elmLS": {
|
||||
"command": "elm-language-server",
|
||||
"filetypes": ["elm"],
|
||||
"rootPatterns": ["elm.json"]
|
||||
|
||||
76
init.vim
76
init.vim
@@ -4,6 +4,9 @@ set nocompatible
|
||||
" PLUGNIS ###########################################################{{{
|
||||
call plug#begin()
|
||||
|
||||
" Conquer of Completion
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
|
||||
" General plugins
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
@@ -13,7 +16,6 @@ Plug 'tpope/vim-abolish'
|
||||
|
||||
" Language specific plugins
|
||||
|
||||
|
||||
" Rust
|
||||
Plug 'rust-lang/rust.vim'
|
||||
|
||||
@@ -26,6 +28,9 @@ Plug 'cespare/vim-toml'
|
||||
" Pug
|
||||
Plug 'digitaltoad/vim-pug'
|
||||
|
||||
" Spandex
|
||||
Plug 'rust-spandex/spandex.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
" Line numbers and syntaxic coloration
|
||||
@@ -40,6 +45,7 @@ set expandtab
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set autoindent
|
||||
set tw=120
|
||||
" }}}
|
||||
|
||||
" UI CONFIG #########################################################{{{
|
||||
@@ -141,22 +147,68 @@ let g:markdown_composer_browser = 'firefox'
|
||||
let g:instant_markdown_autostart = 0
|
||||
" }}}
|
||||
|
||||
" COC CONFIG ########################################################{{{
|
||||
|
||||
" Use `[g` and `]g` to navigate diagnostics
|
||||
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list.
|
||||
nmap <silent> gp <Plug>(coc-diagnostic-prev)
|
||||
nmap <silent> gn <Plug>(coc-diagnostic-next)
|
||||
|
||||
" GoTo code navigation.
|
||||
nmap <silent> gd <Plug>(coc-definition)
|
||||
nmap <silent> gy <Plug>(coc-type-definition)
|
||||
nmap <silent> gi <Plug>(coc-implementation)
|
||||
nmap <silent> gr <Plug>(coc-references)
|
||||
|
||||
" Add `:Format` command to format current buffer.
|
||||
command! -nargs=0 Format :call CocAction('format')
|
||||
|
||||
" Use K to show documentation in preview window.
|
||||
nnoremap <silent> K :call <SID>show_documentation()<CR>
|
||||
|
||||
|
||||
function! s:show_documentation()
|
||||
if (index(['vim','help'], &filetype) >= 0)
|
||||
execute 'h '.expand('<cword>')
|
||||
elseif (coc#rpc#ready())
|
||||
call CocActionAsync('doHover')
|
||||
else
|
||||
execute '!' . &keywordprg . " " . expand('<cword>')
|
||||
endif
|
||||
endfunction
|
||||
|
||||
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
|
||||
" delays and poor user experience.
|
||||
set updatetime=300
|
||||
|
||||
" Highlight the symbol and its references when holding the cursor.
|
||||
autocmd CursorHold * silent call CocActionAsync('highlight')
|
||||
|
||||
" Symbol renaming.
|
||||
nmap <leader>rn <Plug>(coc-rename)
|
||||
|
||||
" Formatting selected code.
|
||||
xmap <leader>f <Plug>(coc-format-selected)
|
||||
nmap <leader>f <Plug>(coc-format-selected)
|
||||
|
||||
" Autoclose preview
|
||||
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
|
||||
autocmd InsertLeave * if pumvisible() == 0|pclose|endif
|
||||
|
||||
" Complete on tab
|
||||
" inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
|
||||
function! s:check_back_space() abort
|
||||
let col = col('.') - 1
|
||||
return !col || getline('.')[col - 1] =~ '\s'
|
||||
endfunction
|
||||
|
||||
" Insert <tab> when previous text is space, refresh completion if not.
|
||||
inoremap <silent><expr> <TAB>
|
||||
\ coc#pum#visible() ? coc#pum#next(1):
|
||||
\ <SID>check_back_space() ? "\<Tab>" :
|
||||
\ coc#refresh()
|
||||
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||
" }}}
|
||||
|
||||
" CUSTOM THINGS DEPENDING ON ENV ####################################{{{
|
||||
let g:rustfmt_autosave = 1
|
||||
let g:ale_linters = {}
|
||||
let g:ale_c_parse_compile_commands=1
|
||||
let g:ale_elm_ls_use_global = 1
|
||||
let g:ale_linters_ignore = { 'elm': ['make'] }
|
||||
let g:ale_lint_on_text_changed = 0
|
||||
if $NVIM_DISABLE_PYTHON_LINTER == '1'
|
||||
let g:ale_linters.python = []
|
||||
endif
|
||||
if $NVIM_DISABLE_JAVA_LINTER == '1'
|
||||
let g:ale_linters.java = []
|
||||
endif
|
||||
|
||||
@@ -76,6 +76,72 @@ if [ $? -eq 0 ]; then
|
||||
eval $(thefuck --alias)
|
||||
fi
|
||||
|
||||
# Docker and kubernetes aliases
|
||||
command -v k9s > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
kns() {
|
||||
local kube_config
|
||||
if [ -z $KUBECONFIG ]; then
|
||||
kube_config=$HOME/.kube/config
|
||||
else
|
||||
kube_config=$KUBECONFIG
|
||||
fi
|
||||
if [ -f $kube_config ]; then
|
||||
k9s
|
||||
else
|
||||
echo >&2 error: $kube_config does not exist
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
fi
|
||||
|
||||
command -v lazydocker > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
alias ld="lazydocker"
|
||||
fi
|
||||
|
||||
command -v docker-compose > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
alias dc="docker-compose"
|
||||
alias dcu="docker-compose up -d --build --remove-orphans"
|
||||
alias dcd="docker-compose down"
|
||||
fi
|
||||
|
||||
command -v kubectl > /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
|
||||
# Sets the kube config
|
||||
kube() {
|
||||
local kube_config=$HOME/.kubes/$1/config
|
||||
if [ $# -ne 1 ]; then
|
||||
echo >&2 error: kube expects a single argument
|
||||
return 1
|
||||
elif [ ! -f $kube_config ]; then
|
||||
echo >&2 error: no such kube config: $kube_config
|
||||
return 1
|
||||
else
|
||||
export KUBECONFIG=$kube_config
|
||||
fi
|
||||
}
|
||||
|
||||
# Shortcut for kubectl
|
||||
kctl() {
|
||||
local kube_config
|
||||
if [ -z $KUBECONFIG ]; then
|
||||
kube_config=$HOME/.kube/config
|
||||
else
|
||||
kube_config=$KUBECONFIG
|
||||
fi
|
||||
if [ -f $kube_config ]; then
|
||||
kubectl $@
|
||||
else
|
||||
echo >&2 error: $kube_config does not exist
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
fi
|
||||
|
||||
# change to git directory
|
||||
cdg() {
|
||||
local newdir
|
||||
|
||||
@@ -20,7 +20,7 @@ DISABLE_AUTO_TITLE="true"
|
||||
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||||
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/me
|
||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||
plugins=(git myjump pass)
|
||||
plugins=(git myjump pass $ZSH_EXTRA_PLUGINS)
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
|
||||
@@ -17,13 +17,13 @@ eval PR_BOLD="%{$terminfo[bold]%}"
|
||||
if [[ $UID -ge 1000 ]]; then # normal user
|
||||
# If ssh
|
||||
if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then
|
||||
eval PR_USER='${PR_GREEN}%n@%M${PR_NO_COLOR}'
|
||||
eval PR_USER='${PR_GREEN}%n${PR_YELLOW}@${PR_GREEN}%M${PR_NO_COLOR}'
|
||||
eval PR_USER_OP='${PR_GREEN}%#${PR_NO_COLOR}'
|
||||
local PR_ARROW_UP='${PR_GREEN}┌── ${PR_NO_COLOR}'
|
||||
local PR_ARROW_DOWN='${PR_GREEN}└${PR_NO_COLOR}'
|
||||
local PR_PROMPT='$PR_GREEN▷$PR_NO_COLOR'
|
||||
else
|
||||
eval PR_USER='${PR_MAGENTA}%n@%M${PR_NO_COLOR}'
|
||||
eval PR_USER='${PR_MAGENTA}%n${PR_YELLOW}@${PR_GREEN}%M${PR_NO_COLOR}'
|
||||
eval PR_USER_OP='${PR_BLUE}%#${PR_NO_COLOR}'
|
||||
local PR_PROMPT='$PR_MAGENTA▷$PR_NO_COLOR'
|
||||
local PR_ARROW_UP='$PR_MAGENTA┌── ${PR_NO_COLOR}'
|
||||
@@ -79,17 +79,21 @@ fi
|
||||
local return_code=""
|
||||
local git_branch=' $(git_prompt_info)'
|
||||
|
||||
local PR_TEMP=""
|
||||
|
||||
command -v vcgencmd > /dev/null && PR_TEMP=' ${PR_GREEN}‹$(vcgencmd measure_temp | cut -d = -f 2)›${PR_NO_COLOR}'
|
||||
|
||||
local PR_DATE='${PR_BOLD}${PR_MAGENTA}[%D{%H:%M}]${PR_NO_COLOR}'
|
||||
|
||||
extract_kube() {
|
||||
if [ ! -z $KUBECONFIG ]; then
|
||||
echo " ${PR_BOLD}${PR_CYAN}‹$(echo $KUBECONFIG | rev | cut -d '/' -f 2 | rev)›${PR_NO_COLOR}"
|
||||
fi
|
||||
}
|
||||
|
||||
local kube='$(extract_kube)'
|
||||
|
||||
#PROMPT="${user_host} ${current_dir} ${rvm_ruby}${git_branch}$PR_PROMPT "
|
||||
separator='${PR_YELLOW}::${PR_NO_COLOR}'
|
||||
tty | read tty_value
|
||||
if [[ $tty_value == *pts* ]]; then # if in a tty
|
||||
PROMPT="$PR_ARROW_UP${PR_DATE} ${user_host}${separator}${PR_NO_COLOR}${current_dir} ${rvm_ruby}${git_branch}${PR_TEMP}
|
||||
PROMPT="$PR_ARROW_UP${PR_DATE} ${user_host}${separator}${PR_NO_COLOR}${current_dir}${rvm_ruby}${git_branch}${kube}
|
||||
$PR_ARROW_DOWN$PR_PROMPT ${PR_NO_COLOR}"
|
||||
return_code="%(?.%{$PR_GREEN%}%? ↵%{$PR_NO_COLOR%}.%{$PR_RED%}%? ↵%{$PR_NO_COLOR%})"
|
||||
else
|
||||
|
||||
@@ -79,17 +79,13 @@ fi
|
||||
local return_code=""
|
||||
local git_branch='$(git_prompt_info)'
|
||||
|
||||
local PR_TEMP=""
|
||||
|
||||
command -v vcgencmd > /dev/null && PR_TEMP=' ${PR_GREEN}‹$(vcgencmd measure_temp | cut -d = -f 2)›${PR_NO_COLOR}'
|
||||
|
||||
local PR_DATE='${PR_BOLD}${PR_MAGENTA}[%D{%H:%M}]${PR_NO_COLOR}'
|
||||
|
||||
#PROMPT="${user_host} ${current_dir} ${rvm_ruby}${git_branch}$PR_PROMPT "
|
||||
separator='${PR_YELLOW}::${PR_NO_COLOR}'
|
||||
tty | read tty_value
|
||||
if [[ $tty_value == *pts* ]]; then # if in a tty
|
||||
PROMPT="$PR_ARROW_UP${PR_DATE} ${user_host}${separator}${PR_NO_COLOR}${current_dir} ${rvm_ruby}${git_branch}${PR_TEMP}
|
||||
PROMPT="$PR_ARROW_UP${PR_DATE} ${user_host}${separator}${PR_NO_COLOR}${current_dir} ${rvm_ruby}${git_branch}
|
||||
$PR_ARROW_DOWN$PR_PROMPT ${PR_NO_COLOR}"
|
||||
return_code="%(?.%{$PR_GREEN%}%? ↵%{$PR_NO_COLOR%}.%{$PR_RED%}%? ↵%{$PR_NO_COLOR%})"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user