remove unused old configs
This commit is contained in:
parent
b49f66533a
commit
41db19cad8
79 changed files with 0 additions and 43237 deletions
563
.alacritty.yml
563
.alacritty.yml
|
@ -1,563 +0,0 @@
|
|||
# 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 position (changes require restart)
|
||||
#
|
||||
# Specified in number of pixels.
|
||||
# If the position is not set, the window manager will handle the placement.
|
||||
#position:
|
||||
# x: 0
|
||||
# y: 0
|
||||
|
||||
# Window padding (changes require restart)
|
||||
#
|
||||
# Blank space added around the window in pixels. This padding is scaled
|
||||
# by DPI and the specified value is always added at both opposing sides.
|
||||
padding:
|
||||
x: 2
|
||||
y: 2
|
||||
|
||||
# Spread additional padding evenly around the terminal content.
|
||||
dynamic_padding: false
|
||||
|
||||
# Window decorations
|
||||
#
|
||||
# Values for `decorations`:
|
||||
# - full: Borders and title bar
|
||||
# - none: Neither borders nor title bar
|
||||
#
|
||||
# Values for `decorations` (macOS only):
|
||||
# - transparent: Title bar, transparent background and title bar buttons
|
||||
# - buttonless: Title bar, transparent background, but no title bar buttons
|
||||
decorations: none
|
||||
|
||||
# Startup Mode (changes require restart)
|
||||
#
|
||||
# Values for `startup_mode`:
|
||||
# - Windowed
|
||||
# - Maximized
|
||||
# - Fullscreen
|
||||
#
|
||||
# Values for `startup_mode` (macOS only):
|
||||
# - SimpleFullscreen
|
||||
startup_mode: Maximized
|
||||
|
||||
scrolling:
|
||||
# Maximum number of lines in the scrollback buffer.
|
||||
# Specifying '0' will disable scrolling.
|
||||
history: 32000
|
||||
|
||||
# Number of lines the viewport will move for every line scrolled when
|
||||
# scrollback is enabled (history > 0).
|
||||
multiplier: 3
|
||||
|
||||
# Faux Scrolling
|
||||
#
|
||||
# The `faux_multiplier` setting controls the number of lines the terminal
|
||||
# should scroll when the alternate screen buffer is active. This is used
|
||||
# to allow mouse scrolling for applications like `man`.
|
||||
#
|
||||
# Specifying `0` will disable faux scrolling.
|
||||
faux_multiplier: 3
|
||||
|
||||
# Scroll to the bottom when new text is written to the terminal.
|
||||
auto_scroll: false
|
||||
|
||||
# Spaces per Tab (changes require restart)
|
||||
#
|
||||
# This setting defines the width of a tab in cells.
|
||||
#
|
||||
# Some applications, like Emacs, rely on knowing about the width of a tab.
|
||||
# To prevent unexpected behavior in these applications, it's also required to
|
||||
# change the `it` value in terminfo when altering this setting.
|
||||
tabspaces: 4
|
||||
|
||||
# Font configuration (changes require restart)
|
||||
font:
|
||||
family: DejaVu Sans Mono for Powerline
|
||||
# Normal (roman) font face
|
||||
#normal:
|
||||
# Font family
|
||||
#
|
||||
# Default:
|
||||
# - (macOS) Menlo
|
||||
# - (Linux) monospace
|
||||
# - (Windows) Consolas
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Regular
|
||||
|
||||
# Bold font face
|
||||
#bold:
|
||||
# Font family
|
||||
#
|
||||
# If the bold family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Bold
|
||||
|
||||
# Italic font face
|
||||
#italic:
|
||||
# Font family
|
||||
#
|
||||
# If the italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
#style: Italic
|
||||
|
||||
# Point size
|
||||
size: 12.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
|
||||
|
||||
# Thin stroke font rendering (macOS only)
|
||||
#
|
||||
# Thin strokes are suitable for retina displays, but for non-retina screens
|
||||
# it is recommended to set `use_thin_strokes` to `false`
|
||||
#
|
||||
# macOS >= 10.14.x:
|
||||
#
|
||||
# If the font quality on non-retina display looks bad then set
|
||||
# `use_thin_strokes` to `true` and enable font smoothing by running the
|
||||
# following command:
|
||||
# `defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO`
|
||||
#
|
||||
# This is a global setting and will require a log out or restart to take
|
||||
# effect.
|
||||
use_thin_strokes: true
|
||||
|
||||
# If `true`, bold text is drawn using the bright color variants.
|
||||
draw_bold_text_with_bright_colors: true
|
||||
|
||||
# Colors (Solarized Dark)
|
||||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '0x002b36' # base03
|
||||
foreground: '0x839496' # base0
|
||||
|
||||
# Normal colors
|
||||
normal:
|
||||
black: '0x073642' # base02
|
||||
red: '0xdc322f' # red
|
||||
green: '0x859900' # green
|
||||
yellow: '0xb58900' # yellow
|
||||
blue: '0x268bd2' # blue
|
||||
magenta: '0xd33682' # magenta
|
||||
cyan: '0x2aa198' # cyan
|
||||
white: '0xeee8d5' # base2
|
||||
|
||||
# Bright colors
|
||||
bright:
|
||||
black: '0x002b36' # base03
|
||||
red: '0xcb4b16' # orange
|
||||
green: '0x586e75' # base01
|
||||
yellow: '0x657b83' # base00
|
||||
blue: '0x839496' # base0
|
||||
magenta: '0x6c71c4' # violet
|
||||
cyan: '0x93a1a1' # base1
|
||||
white: '0xfdf6e3' # base3
|
||||
|
||||
# Indexed Colors
|
||||
#
|
||||
# The indexed colors include all colors from 16 to 256.
|
||||
# When these are not set, they're filled with sensible defaults.
|
||||
#
|
||||
# Example:
|
||||
# `- { index: 16, color: '0xff00ff' }`
|
||||
#
|
||||
indexed_colors: []
|
||||
|
||||
# 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.
|
||||
visual_bell:
|
||||
animation: EaseOutExpo
|
||||
duration: 0
|
||||
color: '0xffffff'
|
||||
|
||||
# Background opacity
|
||||
#
|
||||
# Window opacity as a floating point number from `0.0` to `1.0`.
|
||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||
background_opacity: 1.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
|
||||
|
||||
url:
|
||||
# URL launcher
|
||||
#
|
||||
# This program is executed when clicking on a text which is recognized as a URL.
|
||||
# The URL is always added to the command as the last parameter.
|
||||
#
|
||||
# When set to `None`, URL launching will be disabled completely.
|
||||
#
|
||||
# Default:
|
||||
# - (macOS) open
|
||||
# - (Linux) xdg-open
|
||||
# - (Windows) explorer
|
||||
#launcher:
|
||||
# program: xdg-open
|
||||
# args: []
|
||||
|
||||
# URL modifiers
|
||||
#
|
||||
# These are the modifiers that need to be held down for opening URLs when clicking
|
||||
# on them. The available modifiers are documented in the key binding section.
|
||||
modifiers: None
|
||||
|
||||
selection:
|
||||
semantic_escape_chars: ",│`|:\"' ()[]{}<>"
|
||||
|
||||
# When set to `true`, selected text will be copied to the primary clipboard.
|
||||
save_to_clipboard: false
|
||||
|
||||
# Allow terminal applications to change Alacritty's window title.
|
||||
dynamic_title: true
|
||||
|
||||
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.
|
||||
#
|
||||
# Default:
|
||||
# - (Linux/macOS) /bin/bash --login
|
||||
# - (Windows) powershell
|
||||
#shell:
|
||||
# program: /bin/bash
|
||||
# args:
|
||||
# - --login
|
||||
|
||||
# Windows 10 ConPTY backend (Windows only)
|
||||
#
|
||||
# This will enable better color support and may resolve other issues,
|
||||
# however this API and its implementation is still young and so is
|
||||
# disabled by default, as stability may not be as good as the winpty
|
||||
# backend.
|
||||
#
|
||||
# Alacritty will fall back to the WinPTY automatically if the ConPTY
|
||||
# backend cannot be initialized.
|
||||
enable_experimental_conpty_backend: false
|
||||
|
||||
# Send ESC (\x1b) before characters when alt is pressed.
|
||||
alt_send_esc: true
|
||||
|
||||
# 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 sequence to the running application (`chars`), execute a
|
||||
# predefined action (`action`) or fork and execute a specified command plus
|
||||
# arguments (`command`).
|
||||
#
|
||||
# Bindings are always filled by default, but will be replaced when a new binding
|
||||
# with the same triggers is defined. To unset a default binding, it can be
|
||||
# mapped to the `None` action.
|
||||
#
|
||||
# Example:
|
||||
# `- { key: V, mods: Control|Shift, 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
|
||||
# - Super
|
||||
# - 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
|
||||
# - ScrollLineUp
|
||||
# - ScrollLineDown
|
||||
# - ScrollToTop
|
||||
# - ScrollToBottom
|
||||
# - ClearHistory
|
||||
# - Hide
|
||||
# - Quit
|
||||
# - ClearLogNotice
|
||||
# - SpawnNewInstance
|
||||
# - ToggleFullscreen
|
||||
# - None
|
||||
#
|
||||
# Values for `action` (macOS only):
|
||||
# - ToggleSimpleFullscreen: Enters fullscreen without occupying another space
|
||||
#
|
||||
# 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:
|
||||
# (Windows/Linux only)
|
||||
#- { key: V, mods: Control|Shift, action: Paste }
|
||||
#- { key: C, mods: Control|Shift, action: Copy }
|
||||
#- { key: Insert, mods: Shift, action: PasteSelection }
|
||||
#- { key: Key0, mods: Control, action: ResetFontSize }
|
||||
#- { key: Equals, mods: Control, action: IncreaseFontSize }
|
||||
#- { key: Add, mods: Control, action: IncreaseFontSize }
|
||||
#- { key: Subtract, mods: Control, action: DecreaseFontSize }
|
||||
#- { key: Minus, mods: Control, action: DecreaseFontSize }
|
||||
|
||||
# (macOS only)
|
||||
#- { key: Key0, mods: Command, action: ResetFontSize }
|
||||
#- { key: Equals, mods: Command, action: IncreaseFontSize }
|
||||
#- { key: Add, mods: Command, action: IncreaseFontSize }
|
||||
#- { key: Minus, mods: Command, action: DecreaseFontSize }
|
||||
#- { key: K, mods: Command, action: ClearHistory }
|
||||
#- { key: K, mods: Command, chars: "\x0c" }
|
||||
#- { key: V, mods: Command, action: Paste }
|
||||
#- { key: C, mods: Command, action: Copy }
|
||||
#- { key: H, mods: Command, action: Hide }
|
||||
#- { key: Q, mods: Command, action: Quit }
|
||||
#- { key: W, mods: Command, action: Quit }
|
||||
|
||||
- { key: Paste, action: Paste }
|
||||
- { key: Copy, action: Copy }
|
||||
- { key: L, mods: Control, action: ClearLogNotice }
|
||||
- { key: L, mods: Control, chars: "\x0c" }
|
||||
- { key: Home, mods: Alt, chars: "\x1b[1;3H" }
|
||||
- { key: Home, chars: "\x1bOH", mode: AppCursor }
|
||||
- { key: Home, chars: "\x1b[H", mode: ~AppCursor }
|
||||
- { key: End, mods: Alt, chars: "\x1b[1;3F" }
|
||||
- { key: End, chars: "\x1bOF", mode: AppCursor }
|
||||
- { key: End, chars: "\x1b[F", mode: ~AppCursor }
|
||||
- { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt }
|
||||
- { key: PageUp, mods: Shift, chars: "\x1b[5;2~", mode: Alt }
|
||||
- { key: PageUp, mods: Control, chars: "\x1b[5;5~" }
|
||||
- { key: PageUp, mods: Alt, chars: "\x1b[5;3~" }
|
||||
- { key: PageUp, chars: "\x1b[5~" }
|
||||
- { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
|
||||
- { key: PageDown, mods: Shift, chars: "\x1b[6;2~", mode: Alt }
|
||||
- { key: PageDown, mods: Control, chars: "\x1b[6;5~" }
|
||||
- { key: PageDown, mods: Alt, chars: "\x1b[6;3~" }
|
||||
- { 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~" }
|
||||
- { key: NumpadEnter, chars: "\n" }
|
|
@ -1,4 +0,0 @@
|
|||
default-themes-1.1.cmtp.7z
|
||||
default-themes-1.2.cmtp.7z
|
||||
default-themes-2.0.cmtp.7z
|
||||
default-themes-2.0.cmtp.7z
|
|
@ -1,44 +0,0 @@
|
|||
use_xft yes
|
||||
xftfont 123:size=8
|
||||
xftalpha 0.1
|
||||
update_interval 1
|
||||
total_run_times 0
|
||||
|
||||
own_window yes
|
||||
own_window_type normal
|
||||
own_window_transparent yes
|
||||
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
|
||||
own_window_colour 000000
|
||||
own_window_argb_visual yes
|
||||
own_window_argb_value 0
|
||||
|
||||
double_buffer yes
|
||||
#minimum_size 250 5
|
||||
#maximum_width 500
|
||||
draw_shades no
|
||||
draw_outline no
|
||||
draw_borders no
|
||||
draw_graph_borders no
|
||||
default_color white
|
||||
default_shade_color red
|
||||
default_outline_color green
|
||||
alignment bottom_right
|
||||
gap_x 275
|
||||
gap_y 15
|
||||
no_buffers yes
|
||||
uppercase no
|
||||
cpu_avg_samples 2
|
||||
net_avg_samples 1
|
||||
override_utf8_locale yes
|
||||
use_spacer yes
|
||||
|
||||
|
||||
minimum_size 0 0
|
||||
TEXT
|
||||
${voffset 10}${color EAEAEA}${font GE Inspira:pixelsize=120}${time %H:%M}${font}${voffset -84}${offset 00}${color FFA300}${font GE Inspira:pixelsize=42}${time %d} ${voffset -15}${color EAEAEA}${font GE Inspira:pixelsize=22}${time %B} ${time %Y}${font}${voffset 24}${font GE Inspira:pixelsize=58}${offset -148}${time %A}${font}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
|
@ -1,4 +0,0 @@
|
|||
~/.conky/Green Apple Desktop/conky_seamod
|
||||
~/.conky/Green Apple Desktop/Gotham
|
||||
~/.conky/Green Apple Desktop/wallpaper.jpg
|
||||
wallpaper-scaling:stretched
|
Binary file not shown.
Before Width: | Height: | Size: 40 KiB |
|
@ -1,115 +0,0 @@
|
|||
#==============================================================================
|
||||
# conkyrc_seamod
|
||||
# Date : 05/02/2012
|
||||
# Author : SeaJey
|
||||
# Version : v0.1
|
||||
# License : Distributed under the terms of GNU GPL version 2 or later
|
||||
#
|
||||
# This version is a modification of conkyrc_lunatico wich is modification of conkyrc_orange
|
||||
#
|
||||
# conkyrc_orange: http://gnome-look.org/content/show.php?content=137503&forumpage=0
|
||||
# conkyrc_lunatico: http://gnome-look.org/content/show.php?content=142884
|
||||
#==============================================================================
|
||||
|
||||
background yes
|
||||
update_interval 10
|
||||
|
||||
cpu_avg_samples 3
|
||||
net_avg_samples 5
|
||||
temperature_unit celsius
|
||||
|
||||
double_buffer yes
|
||||
no_buffers yes
|
||||
text_buffer_size 2048
|
||||
override_utf8_locale yes
|
||||
use_xft yes
|
||||
xftfont caviar dreams:size=10
|
||||
xftalpha 0.5
|
||||
uppercase no
|
||||
|
||||
gap_x 100
|
||||
gap_y 70
|
||||
minimum_size 500 600
|
||||
maximum_width 350
|
||||
|
||||
own_window yes
|
||||
own_window_type normal
|
||||
own_window_transparent yes
|
||||
own_window_argb_visual yes
|
||||
own_window_argb_visual yes
|
||||
own_window_colour 000000
|
||||
own_window_argb_value 0
|
||||
own_window_hints undecorate,sticky,skip_taskbar,skip_pager,below
|
||||
|
||||
border_inner_margin 0
|
||||
border_outer_margin 0
|
||||
alignment top_right
|
||||
|
||||
draw_shades no
|
||||
draw_outline no
|
||||
draw_borders no
|
||||
draw_graph_borders no
|
||||
|
||||
# Defining colors
|
||||
default_color FFFFFF
|
||||
# Shades of Gray
|
||||
color1 DDDDDD
|
||||
color2 AAAAAA
|
||||
color3 888888
|
||||
# Orange
|
||||
color4 EF5A29
|
||||
# Green
|
||||
color5 77B753
|
||||
|
||||
# Loading lua script for drawning rings
|
||||
lua_load ./seamod_rings.lua
|
||||
lua_draw_hook_post main
|
||||
|
||||
## System information using conky capabilities
|
||||
|
||||
TEXT
|
||||
${font Ubuntu:size=10,weight:bold}${color4}SYSTEM ${hr 2}
|
||||
${offset 15}${font Ubuntu:size=10,weight:normal}${color1}$sysname $kernel
|
||||
${offset 15}${font Ubuntu:size=10,weight:normal}${color1}Uptime: $uptime
|
||||
|
||||
# Showing CPU Graph
|
||||
${voffset 20}
|
||||
${offset 120}${cpugraph 40,183 666666 666666}${voffset -25}
|
||||
${offset 90}${font Ubuntu:size=10,weight:bold}${color5}CPU
|
||||
# Showing TOP 5 CPU-consumers
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color4}${top name 1}${alignr}${top cpu 1}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color1}${top name 2}${alignr}${top cpu 2}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color2}${top name 3}${alignr}${top cpu 3}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color3}${top name 4}${alignr}${top cpu 4}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color3}${top name 5}${alignr}${top cpu 5}%
|
||||
|
||||
#Showing memory part with TOP 5
|
||||
${voffset 40}
|
||||
${offset 90}${font Ubuntu:size=10,weight:bold}${color5}MEM
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color4}${top_mem name 1}${alignr}${top_mem mem 1}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color1}${top_mem name 2}${alignr}${top_mem mem 2}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color2}${top_mem name 3}${alignr}${top_mem mem 3}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color3}${top_mem name 4}${alignr}${top_mem mem 4}%
|
||||
${offset 105}${font Ubuntu:size=10,weight:normal}${color3}${top_mem name 4}${alignr}${top_mem mem 5}%
|
||||
|
||||
# Showing disk partitions: root, home and Data
|
||||
${voffset 28}
|
||||
${offset 90}${font Ubuntu:size=10,weight:bold}${color5}DISKS
|
||||
${offset 120}${diskiograph 33,183 666666 666666}${voffset -30}
|
||||
${voffset 30}
|
||||
${offset 185}${font Ubuntu:size=9,weight:bold}${color1}/ free: ${font Ubuntu:size=9,weight:normal}${fs_free /}${alignr}${font Ubuntu:size=9,weight:bold}Used: ${font Ubuntu:size=9,weight:normal}${fs_used /}
|
||||
${offset 150}${font Ubuntu:size=9,weight:bold}${color1}/home free: ${font Ubuntu:size=9,weight:normal}${fs_free /home}${alignr}${font Ubuntu:size=9,weight:bold}Used: ${font Ubuntu:size=9,weight:normal}${fs_used /home}
|
||||
|
||||
${voffset 43}
|
||||
${offset 90}${font Ubuntu:size=10,weight:bold}${color5}NETWORK
|
||||
${voffset 60}
|
||||
${offset 15}${color1}${font Ubuntu:size=9,weight:bold}Up: ${alignr}${font Ubuntu:size=9,weight:normal}$color2${upspeed wlan0}
|
||||
${offset 15}${upspeedgraph wlan0 40,285 4B1B0C FF5C2B 100 -l}
|
||||
${offset 15}${color1}${font Ubuntu:size=9,weight:bold}Down: ${alignr}${font Ubuntu:size=9,weight:normal}$color2${downspeed wlan0}
|
||||
${offset 15}${downspeedgraph wlan0 40,285 324D23 77B753 100 -l}
|
||||
|
||||
${color4}${hr 2}
|
||||
|
||||
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 34 KiB |
|
@ -1,365 +0,0 @@
|
|||
--==============================================================================
|
||||
-- seamod_rings.lua
|
||||
--
|
||||
-- Date : 05/02/2012
|
||||
-- Author : SeaJey
|
||||
-- Version : v0.1
|
||||
-- License : Distributed under the terms of GNU GPL version 2 or later
|
||||
--
|
||||
-- This version is a modification of lunatico_rings.lua wich is modification of conky_orange.lua
|
||||
--
|
||||
-- conky_orange.lua: http://gnome-look.org/content/show.php?content=137503&forumpage=0
|
||||
-- lunatico_rings.lua: http://gnome-look.org/content/show.php?content=142884
|
||||
--==============================================================================
|
||||
|
||||
require 'cairo'
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
-- gauge DATA
|
||||
gauge = {
|
||||
{
|
||||
name='cpu', arg='cpu0', max_value=100,
|
||||
x=70, y=130,
|
||||
graph_radius=54,
|
||||
graph_thickness=5,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=64,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='',
|
||||
caption_weight=1, caption_size=9.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.3,
|
||||
},
|
||||
{
|
||||
name='cpu', arg='cpu1', max_value=100,
|
||||
x=70, y=130,
|
||||
graph_radius=48,
|
||||
graph_thickness=5,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=40,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='',
|
||||
caption_weight=1, caption_size=9.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.3,
|
||||
},
|
||||
{
|
||||
name='cpu', arg='cpu2', max_value=100,
|
||||
x=70, y=130,
|
||||
graph_radius=20,
|
||||
graph_thickness=5,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=30,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='',
|
||||
caption_weight=1, caption_size=9.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.3,
|
||||
},
|
||||
{
|
||||
name='cpu', arg='cpu3', max_value=100,
|
||||
x=70, y=130,
|
||||
graph_radius=14,
|
||||
graph_thickness=5,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=4,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='',
|
||||
caption_weight=1, caption_size=9.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.3,
|
||||
},
|
||||
{
|
||||
name='memperc', arg='', max_value=100,
|
||||
x=70, y=300,
|
||||
graph_radius=54,
|
||||
graph_thickness=10,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=42,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=23,
|
||||
graduation_thickness=0, graduation_mark_thickness=2,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.5,
|
||||
caption='',
|
||||
caption_weight=1, caption_size=10.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.3,
|
||||
},
|
||||
{
|
||||
name='fs_used_perc', arg='/home/', max_value=100,
|
||||
x=70, y=470,
|
||||
graph_radius=42,
|
||||
graph_thickness=7,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=32,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=23,
|
||||
graduation_thickness=0, graduation_mark_thickness=2,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='Home',
|
||||
caption_weight=1, caption_size=12.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.5,
|
||||
},
|
||||
{
|
||||
name='fs_used_perc', arg='/', max_value=100,
|
||||
x=70, y=470,
|
||||
graph_radius=30,
|
||||
graph_thickness=7,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=1.0,
|
||||
txt_radius=22,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=23,
|
||||
graduation_thickness=0, graduation_mark_thickness=2,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='Root',
|
||||
caption_weight=1, caption_size=12.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.5,
|
||||
},
|
||||
{
|
||||
name='downspeedf', arg='wlan0', max_value=100,
|
||||
x=70, y=660,
|
||||
graph_radius=54,
|
||||
graph_thickness=7,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=0,
|
||||
txt_radius=64,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='Down',
|
||||
caption_weight=1, caption_size=12.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.5,
|
||||
},
|
||||
{
|
||||
name='upspeedf', arg='wlan0', max_value=100,
|
||||
x=70, y=660,
|
||||
graph_radius=42,
|
||||
graph_thickness=7,
|
||||
graph_start_angle=180,
|
||||
graph_unit_angle=2.7, graph_unit_thickness=2.7,
|
||||
graph_bg_colour=0xffffff, graph_bg_alpha=0.1,
|
||||
graph_fg_colour=0xFFFFFF, graph_fg_alpha=0.3,
|
||||
hand_fg_colour=0xEF5A29, hand_fg_alpha=0,
|
||||
txt_radius=30,
|
||||
txt_weight=0, txt_size=9.0,
|
||||
txt_fg_colour=0xEF5A29, txt_fg_alpha=1.0,
|
||||
graduation_radius=28,
|
||||
graduation_thickness=0, graduation_mark_thickness=1,
|
||||
graduation_unit_angle=27,
|
||||
graduation_fg_colour=0xFFFFFF, graduation_fg_alpha=0.3,
|
||||
caption='Up',
|
||||
caption_weight=1, caption_size=12.0,
|
||||
caption_fg_colour=0xFFFFFF, caption_fg_alpha=0.5,
|
||||
},
|
||||
}
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- rgb_to_r_g_b
|
||||
-- converts color in hexa to decimal
|
||||
--
|
||||
function rgb_to_r_g_b(colour, alpha)
|
||||
return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
|
||||
end
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- angle_to_position
|
||||
-- convert degree to rad and rotate (0 degree is top/north)
|
||||
--
|
||||
function angle_to_position(start_angle, current_angle)
|
||||
local pos = current_angle + start_angle
|
||||
return ( ( pos * (2 * math.pi / 360) ) - (math.pi / 2) )
|
||||
end
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- draw_gauge_ring
|
||||
-- displays gauges
|
||||
--
|
||||
function draw_gauge_ring(display, data, value)
|
||||
local max_value = data['max_value']
|
||||
local x, y = data['x'], data['y']
|
||||
local graph_radius = data['graph_radius']
|
||||
local graph_thickness, graph_unit_thickness = data['graph_thickness'], data['graph_unit_thickness']
|
||||
local graph_start_angle = data['graph_start_angle']
|
||||
local graph_unit_angle = data['graph_unit_angle']
|
||||
local graph_bg_colour, graph_bg_alpha = data['graph_bg_colour'], data['graph_bg_alpha']
|
||||
local graph_fg_colour, graph_fg_alpha = data['graph_fg_colour'], data['graph_fg_alpha']
|
||||
local hand_fg_colour, hand_fg_alpha = data['hand_fg_colour'], data['hand_fg_alpha']
|
||||
local graph_end_angle = (max_value * graph_unit_angle) % 360
|
||||
|
||||
-- background ring
|
||||
cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, 0), angle_to_position(graph_start_angle, graph_end_angle))
|
||||
cairo_set_source_rgba(display, rgb_to_r_g_b(graph_bg_colour, graph_bg_alpha))
|
||||
cairo_set_line_width(display, graph_thickness)
|
||||
cairo_stroke(display)
|
||||
|
||||
-- arc of value
|
||||
local val = value % (max_value + 1)
|
||||
local start_arc = 0
|
||||
local stop_arc = 0
|
||||
local i = 1
|
||||
while i <= val do
|
||||
start_arc = (graph_unit_angle * i) - graph_unit_thickness
|
||||
stop_arc = (graph_unit_angle * i)
|
||||
cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
|
||||
cairo_set_source_rgba(display, rgb_to_r_g_b(graph_fg_colour, graph_fg_alpha))
|
||||
cairo_stroke(display)
|
||||
i = i + 1
|
||||
end
|
||||
local angle = start_arc
|
||||
|
||||
-- hand
|
||||
start_arc = (graph_unit_angle * val) - (graph_unit_thickness * 2)
|
||||
stop_arc = (graph_unit_angle * val)
|
||||
cairo_arc(display, x, y, graph_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
|
||||
cairo_set_source_rgba(display, rgb_to_r_g_b(hand_fg_colour, hand_fg_alpha))
|
||||
cairo_stroke(display)
|
||||
|
||||
-- graduations marks
|
||||
local graduation_radius = data['graduation_radius']
|
||||
local graduation_thickness, graduation_mark_thickness = data['graduation_thickness'], data['graduation_mark_thickness']
|
||||
local graduation_unit_angle = data['graduation_unit_angle']
|
||||
local graduation_fg_colour, graduation_fg_alpha = data['graduation_fg_colour'], data['graduation_fg_alpha']
|
||||
if graduation_radius > 0 and graduation_thickness > 0 and graduation_unit_angle > 0 then
|
||||
local nb_graduation = graph_end_angle / graduation_unit_angle
|
||||
local i = 0
|
||||
while i < nb_graduation do
|
||||
cairo_set_line_width(display, graduation_thickness)
|
||||
start_arc = (graduation_unit_angle * i) - (graduation_mark_thickness / 2)
|
||||
stop_arc = (graduation_unit_angle * i) + (graduation_mark_thickness / 2)
|
||||
cairo_arc(display, x, y, graduation_radius, angle_to_position(graph_start_angle, start_arc), angle_to_position(graph_start_angle, stop_arc))
|
||||
cairo_set_source_rgba(display,rgb_to_r_g_b(graduation_fg_colour,graduation_fg_alpha))
|
||||
cairo_stroke(display)
|
||||
cairo_set_line_width(display, graph_thickness)
|
||||
i = i + 1
|
||||
end
|
||||
end
|
||||
|
||||
-- text
|
||||
local txt_radius = data['txt_radius']
|
||||
local txt_weight, txt_size = data['txt_weight'], data['txt_size']
|
||||
local txt_fg_colour, txt_fg_alpha = data['txt_fg_colour'], data['txt_fg_alpha']
|
||||
local movex = txt_radius * math.cos(angle_to_position(graph_start_angle, angle))
|
||||
local movey = txt_radius * math.sin(angle_to_position(graph_start_angle, angle))
|
||||
cairo_select_font_face (display, "ubuntu", CAIRO_FONT_SLANT_NORMAL, txt_weight)
|
||||
cairo_set_font_size (display, txt_size)
|
||||
cairo_set_source_rgba (display, rgb_to_r_g_b(txt_fg_colour, txt_fg_alpha))
|
||||
cairo_move_to (display, x + movex - (txt_size / 2), y + movey + 3)
|
||||
cairo_show_text (display, value)
|
||||
cairo_stroke (display)
|
||||
|
||||
-- caption
|
||||
local caption = data['caption']
|
||||
local caption_weight, caption_size = data['caption_weight'], data['caption_size']
|
||||
local caption_fg_colour, caption_fg_alpha = data['caption_fg_colour'], data['caption_fg_alpha']
|
||||
local tox = graph_radius * (math.cos((graph_start_angle * 2 * math.pi / 360)-(math.pi/2)))
|
||||
local toy = graph_radius * (math.sin((graph_start_angle * 2 * math.pi / 360)-(math.pi/2)))
|
||||
cairo_select_font_face (display, "ubuntu", CAIRO_FONT_SLANT_NORMAL, caption_weight);
|
||||
cairo_set_font_size (display, caption_size)
|
||||
cairo_set_source_rgba (display, rgb_to_r_g_b(caption_fg_colour, caption_fg_alpha))
|
||||
cairo_move_to (display, x + tox + 5, y + toy + 1)
|
||||
-- bad hack but not enough time !
|
||||
if graph_start_angle < 105 then
|
||||
cairo_move_to (display, x + tox - 30, y + toy + 1)
|
||||
end
|
||||
cairo_show_text (display, caption)
|
||||
cairo_stroke (display)
|
||||
end
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- go_gauge_rings
|
||||
-- loads data and displays gauges
|
||||
--
|
||||
function go_gauge_rings(display)
|
||||
local function load_gauge_rings(display, data)
|
||||
local str, value = '', 0
|
||||
str = string.format('${%s %s}',data['name'], data['arg'])
|
||||
str = conky_parse(str)
|
||||
value = tonumber(str)
|
||||
draw_gauge_ring(display, data, value)
|
||||
end
|
||||
|
||||
for i in pairs(gauge) do
|
||||
load_gauge_rings(display, gauge[i])
|
||||
end
|
||||
end
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- MAIN
|
||||
function conky_main()
|
||||
if conky_window == nil then
|
||||
return
|
||||
end
|
||||
|
||||
local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
|
||||
local display = cairo_create(cs)
|
||||
|
||||
local updates = conky_parse('${updates}')
|
||||
update_num = tonumber(updates)
|
||||
|
||||
if update_num > 5 then
|
||||
go_gauge_rings(display)
|
||||
end
|
||||
|
||||
cairo_surface_destroy(cs)
|
||||
cairo_destroy(display)
|
||||
|
||||
end
|
||||
|
|
@ -1 +0,0 @@
|
|||
https://plus.google.com/100924874037430325534/posts/WfJVEoyrZhm
|
Binary file not shown.
Before Width: | Height: | Size: 104 KiB |
|
@ -1,6 +0,0 @@
|
|||
sleep 20s
|
||||
killall conky
|
||||
cd "/home/cyryl/.conky/Green Apple Desktop"
|
||||
conky -c "/home/cyryl/.conky/Green Apple Desktop/Gotham" &
|
||||
cd "/home/cyryl/.conky/Green Apple Desktop"
|
||||
conky -c "/home/cyryl/.conky/Green Apple Desktop/conky_seamod" &
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,24 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<gconf>
|
||||
<entry name="font" mtime="1384156912" type="string">
|
||||
<stringvalue>Inconsolata Medium 14</stringvalue>
|
||||
</entry>
|
||||
<entry name="use_system_font" mtime="1384156912" type="bool" value="false"/>
|
||||
<entry name="bold_color_same_as_fg" mtime="1384156912" type="bool" value="false"/>
|
||||
<entry name="use_theme_colors" mtime="1384156912" type="bool" value="false"/>
|
||||
<entry name="palette" mtime="1384156912" type="string">
|
||||
<stringvalue>#070736364242:#DCDC32322F2F:#858599990000:#B5B589890000:#26268B8BD2D2:#D3D336368282:#2A2AA1A19898:#EEEEE8E8D5D5:#00002B2B3636:#CBCB4B4B1616:#58586E6E7575:#65657B7B8383:#838394949696:#6C6C7171C4C4:#9393A1A1A1A1:#FDFDF6F6E3E3</stringvalue>
|
||||
</entry>
|
||||
<entry name="background_color" mtime="1384156912" type="string">
|
||||
<stringvalue>#00002B2B3636</stringvalue>
|
||||
</entry>
|
||||
<entry name="visible_name" mtime="1384156912" type="string">
|
||||
<stringvalue>Default</stringvalue>
|
||||
</entry>
|
||||
<entry name="bold_color" mtime="1384156912" type="string">
|
||||
<stringvalue>#9393A1A1A1A1</stringvalue>
|
||||
</entry>
|
||||
<entry name="foreground_color" mtime="1384156912" type="string">
|
||||
<stringvalue>#838394949696</stringvalue>
|
||||
</entry>
|
||||
</gconf>
|
102
.hyper.js
102
.hyper.js
|
@ -1,102 +0,0 @@
|
|||
module.exports = {
|
||||
config: {
|
||||
// default font size in pixels for all tabs
|
||||
fontSize: 14,
|
||||
|
||||
// font family with optional fallbacks
|
||||
fontFamily: '"DejaVu Sans Mono for Powerline", "DejaVu Sans Mono", Menlo, Consolas, "Lucida Console", monospace',
|
||||
|
||||
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
|
||||
cursorColor: 'rgba(248,28,229,0.8)',
|
||||
|
||||
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
|
||||
cursorShape: 'BLOCK',
|
||||
|
||||
// color of the text
|
||||
foregroundColor: '#fff',
|
||||
|
||||
// terminal background color
|
||||
backgroundColor: '#000',
|
||||
|
||||
// border color (window, tabs)
|
||||
borderColor: '#333',
|
||||
|
||||
// custom css to embed in the main window
|
||||
css: '',
|
||||
|
||||
// custom css to embed in the terminal window
|
||||
termCSS: '',
|
||||
|
||||
// set to `true` if you're using a Linux set up
|
||||
// that doesn't shows native menus
|
||||
// default: `false` on Linux, `true` on Windows (ignored on macOS)
|
||||
showHamburgerMenu: '',
|
||||
|
||||
// set to `false` if you want to hide the minimize, maximize and close buttons
|
||||
// additionally, set to `'left'` if you want them on the left, like in Ubuntu
|
||||
// default: `true` on windows and Linux (ignored on macOS)
|
||||
showWindowControls: '',
|
||||
|
||||
// custom padding (css format, i.e.: `top right bottom left`)
|
||||
padding: '12px 14px',
|
||||
|
||||
// the full list. if you're going to provide the full color palette,
|
||||
// including the 6 x 6 color cubes and the grayscale map, just provide
|
||||
// an array here instead of a color map object
|
||||
colors: {
|
||||
black: '#000000',
|
||||
red: '#ff0000',
|
||||
green: '#33ff00',
|
||||
yellow: '#ffff00',
|
||||
blue: '#0066ff',
|
||||
magenta: '#cc00ff',
|
||||
cyan: '#00ffff',
|
||||
white: '#d0d0d0',
|
||||
lightBlack: '#808080',
|
||||
lightRed: '#ff0000',
|
||||
lightGreen: '#33ff00',
|
||||
lightYellow: '#ffff00',
|
||||
lightBlue: '#0066ff',
|
||||
lightMagenta: '#cc00ff',
|
||||
lightCyan: '#00ffff',
|
||||
lightWhite: '#ffffff'
|
||||
},
|
||||
|
||||
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
|
||||
// if left empty, your system's login shell will be used by default
|
||||
shell: '/usr/local/bin/zsh',
|
||||
|
||||
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
|
||||
// by default ['--login'] will be used
|
||||
shellArgs: ['--login'],
|
||||
|
||||
// for environment variables
|
||||
env: {},
|
||||
|
||||
// set to false for no bell
|
||||
bell: false,
|
||||
|
||||
// if true, selected text will automatically be copied to the clipboard
|
||||
copyOnSelect: false
|
||||
|
||||
// URL to custom bell
|
||||
// bellSoundURL: 'http://example.com/bell.mp3',
|
||||
|
||||
// for advanced config flags please refer to https://hyper.is/#cfg
|
||||
},
|
||||
|
||||
// a list of plugins to fetch and install from npm
|
||||
// format: [@org/]project[#version]
|
||||
// examples:
|
||||
// `hyperpower`
|
||||
// `@company/project`
|
||||
// `project#1.0.1`
|
||||
plugins: [
|
||||
'hyper-solarized-dark'
|
||||
],
|
||||
|
||||
// in development, you can create a directory under
|
||||
// `~/.hyper_plugins/local/` and include it here
|
||||
// to load it and avoid it being `npm install`ed
|
||||
localPlugins: []
|
||||
};
|
|
@ -1 +0,0 @@
|
|||
/home/cyryl/dev/dotfiles/.hyper_plugins
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "hyper-plugins",
|
||||
"description": "Auto-generated from `~/.hyper.js`!",
|
||||
"private": true,
|
||||
"version": "0.0.1",
|
||||
"repository": "zeit/hyper",
|
||||
"license": "MIT",
|
||||
"homepage": "https://hyper.is",
|
||||
"dependencies": {
|
||||
"hyper-solarized-dark": "latest"
|
||||
}
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
set visualbell
|
||||
set noerrorbells
|
105
.kdiff3rc
105
.kdiff3rc
|
@ -1,105 +0,0 @@
|
|||
[KDiff3 Options]
|
||||
AutoAdvance=false
|
||||
AutoAdvanceDelay=500
|
||||
AutoCopySelection=false
|
||||
AutoDetectUnicodeA=true
|
||||
AutoDetectUnicodeB=true
|
||||
AutoDetectUnicodeC=true
|
||||
AutoIndentation=true
|
||||
AutoMergeRegExp=.*\\\\$(Version|Header|Date|Author).*\\\\$.*
|
||||
AutoSaveAndQuitOnMergeWithoutConflicts=false
|
||||
AutoSelectOutEncoding=true
|
||||
BgColor=255,255,255
|
||||
BinaryComparison=false
|
||||
CaseSensitiveFilenameComparison=true
|
||||
ColorA=0,0,200
|
||||
ColorB=0,150,0
|
||||
ColorC=150,0,150
|
||||
ColorForConflict=255,0,0
|
||||
CopyNewer=false
|
||||
CreateBakFiles=false
|
||||
CurrentRangeBgColor=220,220,100
|
||||
CurrentRangeDiffBgColor=255,255,150
|
||||
Diff3AlignBC=true
|
||||
DiffBgColor=224,224,224
|
||||
DirAntiPattern=CVS;.deps;.svn;.hg;.git
|
||||
EncodingForA=UTF-8
|
||||
EncodingForB=UTF-8
|
||||
EncodingForC=UTF-8
|
||||
EncodingForOutput=UTF-8
|
||||
EncodingForPP=UTF-8
|
||||
EscapeKeyQuits=false
|
||||
FgColor=0,0,0
|
||||
FileAntiPattern=*.orig;*.o;*.obj;*.rej;*.bak
|
||||
FilePattern=*
|
||||
FindHidden=true
|
||||
FollowDirLinks=false
|
||||
FollowFileLinks=false
|
||||
Font=Monospace,9,-1,5,50,0,0,0,0,0
|
||||
FullAnalysis=true
|
||||
Geometry=600,400
|
||||
HistoryEntryStartRegExp=\\\\s*\\\\\\\\main\\\\\\\\(\\\\S+)\\\\s+([0-9]+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ([0-9][0-9][0-9][0-9]) ([0-9][0-9]:[0-9][0-9]:[0-9][0-9])\\\\s+(.*)
|
||||
HistoryEntryStartSortKeyOrder=4\\,3\\,2\\,5\\,1\\,6
|
||||
HistoryMergeSorting=false
|
||||
HistoryStartRegExp=.*\\\\$Log.*\\\\$.*
|
||||
HorizDiffWindowSplitting=true
|
||||
IgnorableCmdLineOptions=-u;-query;-html;-abort
|
||||
IgnoreCase=false
|
||||
IgnoreComments=false
|
||||
IgnoreNumbers=false
|
||||
IrrelevantMergeCmd=\\0
|
||||
ItalicForDeltas=false
|
||||
LineEndStyle=2
|
||||
LineMatchingPreProcessorCmd=\\0
|
||||
ManualAlignmentRangeColor=255,208,128
|
||||
MaxNofHistoryEntries=-1
|
||||
MidAgeFileColor=192,192,0
|
||||
MissingFileColor=0,0,0
|
||||
NewestFileColor=0,208,0
|
||||
OldestFileColor=240,0,0
|
||||
Position=0,22
|
||||
PreProcessorCmd=\\0
|
||||
RecentAFiles=
|
||||
RecentBFiles=
|
||||
RecentCFiles=
|
||||
RecentEncodings=
|
||||
RecentOutputFiles=
|
||||
RecursiveDirs=true
|
||||
ReplaceTabs=true
|
||||
RightToLeftLanguage=false
|
||||
RunHistoryAutoMergeOnMergeStart=false
|
||||
RunRegExpAutoMergeOnMergeStart=false
|
||||
SameEncoding=true
|
||||
Show Statusbar=true
|
||||
Show Toolbar=true
|
||||
ShowIdenticalFiles=true
|
||||
ShowInfoDialogs=true
|
||||
ShowLineNumbers=false
|
||||
ShowWhiteSpace=true
|
||||
ShowWhiteSpaceCharacters=true
|
||||
SkipDirStatus=true
|
||||
SyncMode=false
|
||||
TabSize=4
|
||||
TrustDate=false
|
||||
TrustDateFallbackToBinary=false
|
||||
TrustSize=false
|
||||
TryHard=true
|
||||
UnfoldSubdirs=true
|
||||
UseCvsIgnore=false
|
||||
WhiteSpace2FileMergeDefault=0
|
||||
WhiteSpace3FileMergeDefault=0
|
||||
WhiteSpaceEqual=true
|
||||
WindowStateMaximised=true
|
||||
WordWrap=false
|
||||
|
||||
[MainWindow]
|
||||
Height 1080=1081
|
||||
Height 768=769
|
||||
Height 900=901
|
||||
Height 975=976
|
||||
Height 985=986
|
||||
State=AAAA/wAAAAD9AAAAAAAAB4AAAANTAAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgEAAAAA/////wAAAAAAAAAA
|
||||
ToolBarsMovable=Disabled
|
||||
Width 1366=1367
|
||||
Width 1440=1441
|
||||
Width 1920=1921
|
Binary file not shown.
Binary file not shown.
29
.minttyrc
29
.minttyrc
|
@ -1,29 +0,0 @@
|
|||
BoldAsFont=yes
|
||||
Term=xterm-256color
|
||||
Columns=225
|
||||
Rows=70
|
||||
ForegroundColour=131,148,150
|
||||
BackgroundColour=0,43,54
|
||||
CursorColour=220,50,47
|
||||
Black=7,54,66
|
||||
BoldBlack=0,43,54
|
||||
Red=220,50,47
|
||||
BoldRed=203,75,22
|
||||
Green=133,153,0
|
||||
BoldGreen=88,110,117
|
||||
Yellow=181,137,0
|
||||
BoldYellow=101,123,131
|
||||
Blue=38,139,210
|
||||
BoldBlue=131,148,150
|
||||
Magenta=211,54,130
|
||||
BoldMagenta=108,113,196
|
||||
Cyan=42,161,152
|
||||
BoldCyan=147,161,161
|
||||
White=238,232,213
|
||||
BoldWhite=253,246,227
|
||||
Font=Inconsolata for Powerline
|
||||
FontHeight=12
|
||||
FontSmoothing=partial
|
||||
Locale=en_GB
|
||||
Charset=UTF-8
|
||||
FontIsBold=yes
|
25
.setenv.sh
25
.setenv.sh
|
@ -1,25 +0,0 @@
|
|||
export TERM="xterm-256color"
|
||||
|
||||
export PATH="$HOME/programs:$PATH"
|
||||
export PATH="$HOME/tools:$PATH"
|
||||
export PATH="$HOME/bin:$PATH"
|
||||
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
export GOPATH=`realpath "$HOME/go"`
|
||||
export PATH="$GOPATH/bin:$PATH"
|
||||
export PATH="$PATH:$HOME/.rvm/bin"
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||
|
||||
export EDITOR="vim"
|
||||
export KEYTIMEOUT=1
|
||||
export VAGRANT_DEFAULT_PROVIDER=virtualbox
|
||||
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
|
||||
export SDKMAN_DIR="$HOME/.sdkman"
|
||||
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
|
||||
|
||||
eval $(luarocks path --bin)
|
||||
|
169
.zpreztorc
169
.zpreztorc
|
@ -1,169 +0,0 @@
|
|||
#
|
||||
# General
|
||||
#
|
||||
|
||||
# Set case-sensitivity for completion, history lookup, etc.
|
||||
# zstyle ':prezto:*:*' case-sensitive 'yes'
|
||||
|
||||
# Color output (auto set to 'no' on dumb terminals).
|
||||
zstyle ':prezto:*:*' color 'yes'
|
||||
|
||||
# Set the Zsh modules to load (man zshmodules).
|
||||
# zstyle ':prezto:load' zmodule 'attr' 'stat'
|
||||
|
||||
# Set the Zsh functions to load (man zshcontrib).
|
||||
# zstyle ':prezto:load' zfunction 'zargs' 'zmv'
|
||||
|
||||
# Set the Prezto modules to load (browse modules).
|
||||
# The order matters.
|
||||
zstyle ':prezto:load' pmodule \
|
||||
'environment' \
|
||||
'terminal' \
|
||||
'editor' \
|
||||
'history' \
|
||||
'directory' \
|
||||
'spectrum' \
|
||||
'utility' \
|
||||
'completion' \
|
||||
'prompt' \
|
||||
'archive' \
|
||||
'autosuggestions' \
|
||||
'fasd' \
|
||||
'git' \
|
||||
'history-substring-search' \
|
||||
'node' \
|
||||
'python' \
|
||||
'ssh' \
|
||||
'tmux'
|
||||
|
||||
|
||||
#
|
||||
# Autosuggestions
|
||||
#
|
||||
|
||||
# Set the query found color.
|
||||
zstyle ':prezto:module:autosuggestions' color 'yes'
|
||||
zstyle ':prezto:module:autosuggestions:color' found 'fg=240'
|
||||
|
||||
#
|
||||
# Editor
|
||||
#
|
||||
|
||||
# Set the key mapping style to 'emacs' or 'vi'.
|
||||
zstyle ':prezto:module:editor' key-bindings 'vi'
|
||||
|
||||
# Auto convert .... to ../..
|
||||
# zstyle ':prezto:module:editor' dot-expansion 'yes'
|
||||
|
||||
#
|
||||
# Git
|
||||
#
|
||||
|
||||
# Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
|
||||
# zstyle ':prezto:module:git:status:ignore' submodules 'all'
|
||||
|
||||
#
|
||||
# GNU Utility
|
||||
#
|
||||
|
||||
# Set the command prefix on non-GNU systems.
|
||||
# zstyle ':prezto:module:gnu-utility' prefix 'g'
|
||||
|
||||
#
|
||||
# History Substring Search
|
||||
#
|
||||
|
||||
# Set the query found color.
|
||||
# zstyle ':prezto:module:history-substring-search:color' found ''
|
||||
|
||||
# Set the query not found color.
|
||||
# zstyle ':prezto:module:history-substring-search:color' not-found ''
|
||||
|
||||
# Set the search globbing flags.
|
||||
# zstyle ':prezto:module:history-substring-search' globbing-flags ''
|
||||
|
||||
#
|
||||
# Pacman
|
||||
#
|
||||
|
||||
# Set the Pacman frontend.
|
||||
# zstyle ':prezto:module:pacman' frontend 'yaourt'
|
||||
|
||||
#
|
||||
# Prompt
|
||||
#
|
||||
|
||||
# Set the prompt theme to load.
|
||||
# Setting it to 'random' loads a random theme.
|
||||
# Auto set to 'off' on dumb terminals.
|
||||
zstyle ':prezto:module:prompt' theme 'agnoster'
|
||||
|
||||
#
|
||||
# Ruby
|
||||
#
|
||||
|
||||
# Auto switch the Ruby version on directory change.
|
||||
# zstyle ':prezto:module:ruby:chruby' auto-switch 'yes'
|
||||
|
||||
#
|
||||
# Screen
|
||||
#
|
||||
|
||||
# Auto start a session when Zsh is launched in a local terminal.
|
||||
# zstyle ':prezto:module:screen:auto-start' local 'yes'
|
||||
|
||||
# Auto start a session when Zsh is launched in a SSH connection.
|
||||
# zstyle ':prezto:module:screen:auto-start' remote 'yes'
|
||||
|
||||
#
|
||||
# SSH
|
||||
#
|
||||
|
||||
# Set the SSH identities to load into the agent.
|
||||
# zstyle ':prezto:module:ssh:load' identities 'id_rsa' 'id_rsa2' 'id_github'
|
||||
|
||||
#
|
||||
# Syntax Highlighting
|
||||
#
|
||||
|
||||
# Set syntax highlighters.
|
||||
# By default, only the main highlighter is enabled.
|
||||
# zstyle ':prezto:module:syntax-highlighting' highlighters \
|
||||
# 'main' \
|
||||
# 'brackets' \
|
||||
# 'pattern' \
|
||||
# 'line' \
|
||||
# 'cursor' \
|
||||
# 'root'
|
||||
#
|
||||
# Set syntax highlighting styles.
|
||||
# zstyle ':prezto:module:syntax-highlighting' styles \
|
||||
# 'builtin' 'bg=blue' \
|
||||
# 'command' 'bg=blue' \
|
||||
# 'function' 'bg=blue'
|
||||
|
||||
#
|
||||
# Terminal
|
||||
#
|
||||
|
||||
# Auto set the tab and window titles.
|
||||
# zstyle ':prezto:module:terminal' auto-title 'yes'
|
||||
|
||||
# Set the window title format.
|
||||
zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
|
||||
|
||||
# Set the tab title format.
|
||||
# zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
|
||||
|
||||
#
|
||||
# Tmux
|
||||
#
|
||||
|
||||
# Auto start a session when Zsh is launched in a local terminal.
|
||||
zstyle ':prezto:module:tmux:auto-start' local 'yes'
|
||||
|
||||
# Auto start a session when Zsh is launched in a SSH connection.
|
||||
# zstyle ':prezto:module:tmux:auto-start' remote 'yes'
|
||||
|
||||
# Integrate with iTerm2.
|
||||
# zstyle ':prezto:module:tmux:iterm' integrate 'yes'
|
43
.zprofile
43
.zprofile
|
@ -1,43 +0,0 @@
|
|||
if [[ "$OSTYPE" == darwin* ]]; then
|
||||
export BROWSER='open'
|
||||
fi
|
||||
|
||||
export EDITOR='vim'
|
||||
export VISUAL='vim'
|
||||
export PAGER='less'
|
||||
|
||||
if [[ -z "$LANG" ]]; then
|
||||
export LANG='en_GB.UTF-8'
|
||||
fi
|
||||
|
||||
typeset -gU cdpath fpath mailpath path
|
||||
|
||||
# Set the list of directories that Zsh searches for programs.
|
||||
path=(
|
||||
/usr/local/{bin,sbin}
|
||||
$path
|
||||
)
|
||||
export LESS='-F -g -i -M -R -S -w -X -z-4'
|
||||
|
||||
if (( $#commands[(i)lesspipe(|.sh)] )); then
|
||||
export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
|
||||
fi
|
||||
|
||||
if [[ ! -d "$TMPDIR" ]]; then
|
||||
export TMPDIR="/tmp/$LOGNAME"
|
||||
mkdir -p -m 700 "$TMPDIR"
|
||||
fi
|
||||
|
||||
TMPPREFIX="${TMPDIR%/}/zsh"
|
||||
|
||||
source ~/.setenv
|
||||
|
||||
vacuum-repo() {
|
||||
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
|
||||
}
|
||||
|
||||
vacuum-repo-hard() {
|
||||
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D
|
||||
}
|
||||
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
49
.zshrc
49
.zshrc
|
@ -1,49 +0,0 @@
|
|||
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
||||
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
||||
fi
|
||||
|
||||
COMPLETION_WAITING_DOTS="true"
|
||||
|
||||
plugins=(vi-mode svn git python syntax-highlighting history-substring-search spectrum sshi prompt gpg autosuggestions)
|
||||
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=10240
|
||||
SAVEHIST=10240
|
||||
setopt appendhistory autocd extendedglob nomatch notify
|
||||
unsetopt beep
|
||||
|
||||
autoload -U compinit
|
||||
compinit
|
||||
setopt completealiases
|
||||
|
||||
zstyle ':completion::complete:*' use-cache 1
|
||||
|
||||
# bind UP and DOWN arrow keys
|
||||
zmodload zsh/terminfo
|
||||
bindkey "$terminfo[cuu1]" history-substring-search-up
|
||||
bindkey "$terminfo[cud1]" history-substring-search-down
|
||||
bindkey -M vicmd 'k' history-substring-search-up
|
||||
bindkey -M vicmd 'j' history-substring-search-down
|
||||
bindkey "^R" history-incremental-search-backward
|
||||
|
||||
|
||||
prompt_dir() {
|
||||
prompt_segment blue $PRIMARY_FG ' %1~ '
|
||||
}
|
||||
|
||||
if [[ `uname` =~ 'CYGWIN.*' ]]; then
|
||||
export DISPLAY=:0.0
|
||||
fi
|
||||
|
||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||
[ -f /home/cyryl/.travis/travis.sh ] && source /home/cyryl/.travis/travis.sh
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
|
||||
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
|
||||
export PATH="$PATH:$HOME/.rvm/bin"
|
||||
|
||||
alias tmate="tmux detach-client -E 'tmate;tmux'"
|
||||
|
||||
|
||||
|
||||
[ -s "/home/cyryl/.jabba/jabba.sh" ] && source "/home/cyryl/.jabba/jabba.sh"
|
|
@ -1,2 +0,0 @@
|
|||
install: powershell -NoProfile -ExecutionPolicy Bypass -Command "windows\bootstrap.ps1"
|
||||
build_script: windows\build.bat
|
|
@ -1,43 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
cd ~/dev/
|
||||
|
||||
echo "checking out sources..."
|
||||
|
||||
if [[ ! -d kicad ]]; then
|
||||
git clone https://github.com/KiCad/kicad-source-mirror.git kicad --recursive
|
||||
cd kicad
|
||||
else
|
||||
cd kicad
|
||||
git pull
|
||||
git submodule update --init --recursive
|
||||
fi
|
||||
|
||||
mkdir -p build
|
||||
cd build
|
||||
echo "compiling...."
|
||||
cmake -DKICAD_STABLE_VERSION=ON ../
|
||||
make clean
|
||||
benice make -j`nproc`
|
||||
echo "installing..."
|
||||
sudo make install
|
||||
|
||||
# install component libraries
|
||||
cd ~/dev/
|
||||
echo "checking out libraries..."
|
||||
if [[ ! -d kicad-library ]]; then
|
||||
git clone https://github.com/KiCad/kicad-library.git --recursive
|
||||
cd kicad-library
|
||||
else
|
||||
cd kicad-library
|
||||
git pull
|
||||
git submodule update --init --recursive
|
||||
fi
|
||||
mkdir build
|
||||
cd build/
|
||||
echo "installing libraries"
|
||||
cmake ../
|
||||
sudo make install -j`nproc`
|
||||
|
|
@ -1 +0,0 @@
|
|||
sudo pip install markdown livereload webassets phpserialize ghp-import Nikola
|
|
@ -1,39 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
BASEDIR="$HOME/RepRap" # edit this is you don't want it installed in your home directory
|
||||
|
||||
PRINTRUNDIR="$BASEDIR/Printrun" # Defines where the 'Printrun' directory is located. But of course
|
||||
# you can change this to say: "$HOME/Documents/Create/RepRap/Printrun".
|
||||
|
||||
SKEINFORGEDIR="$PRINTRUNDIR/skeinforge" #Defines where the 'skeinforge' directory is located in the
|
||||
# 'Printrun' directory is located.
|
||||
|
||||
SKEINFORGEBASEURL="http://fabmetheus.crsndoo.com/files/"
|
||||
SKEINFORGEFILENAME="50_reprap_python_beanshell.zip"
|
||||
|
||||
set -e
|
||||
|
||||
sudo yum install git pyserial wxPython tkinter python-pyglet python-psutil
|
||||
|
||||
mkdir -p $BASEDIR
|
||||
cd $BASEDIR # Change directory to the executing users home directory.
|
||||
|
||||
echo "Removing existing Printrun directory..." #Script being polite towards the user.
|
||||
rm -rf $PRINTRUNDIR # Removes the defined Printrun directory and _everything_ that resides
|
||||
# in and beneath its directory tree.
|
||||
|
||||
echo "Cloning Printrun..." # Script being polite towards the user.
|
||||
git clone https://github.com/kliment/Printrun.git # See also: http://help.github.com/linux-set-up-git/
|
||||
|
||||
echo "Grabbing skeinforge..." # Script being polite towards the user.
|
||||
wget -P /tmp $SKEINFORGEBASEURL$SKEINFORGEFILENAME # Uses good ol' wget for downloading skeinforge.
|
||||
|
||||
echo "Unzipping skeinforge into Printrun directory..." # Script being polite towards the user.
|
||||
unzip -d $SKEINFORGEDIR /tmp/$SKEINFORGEFILENAME # unzips the grabbed zip to ones defined skeinforge dir.
|
||||
|
||||
echo "Symlinking skeinforge inside Printrun directory..." #Script being polite towards the user.
|
||||
ln -s $SKEINFORGEDIR/* $PRINTRUNDIR/ # Script makes a symbolic link.
|
||||
|
||||
echo "Cleaning up temporary installation files..." #Script being polite towards the user.
|
||||
rm -rf /tmp/$SKEINFORGEFILENAME # Removes tmp files.
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
DIR="$DIR/../"
|
||||
|
||||
# vim
|
||||
if [[ -z $NO_COMPILE_VIM ]]; then
|
||||
VIM_BUILD_DIR=`realpath "$DIR/../"`
|
||||
echo "Vim sources location: $VIM_BUILD_DIR"
|
||||
cd "$VIM_BUILD_DIR"
|
||||
if [[ ! -d vim ]]; then
|
||||
git clone https://github.com/vim/vim.git --recursive
|
||||
else
|
||||
cd vim
|
||||
git pull
|
||||
git submodule update --init --recursive
|
||||
cd ..
|
||||
fi
|
||||
cd vim
|
||||
set +e
|
||||
sudo make uninstall
|
||||
sudo make distclean
|
||||
./configure --with-features=huge \
|
||||
--enable-multibyte \
|
||||
--enable-rubyinterp \
|
||||
--enable-python3interp=yes \
|
||||
--enable-luainterp \
|
||||
--enable-gui=no \
|
||||
--enable-cscope
|
||||
make -j`nproc`
|
||||
sudo make install
|
||||
cd
|
||||
fi
|
218
common/up.sh
218
common/up.sh
|
@ -1,218 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
SUDO=""
|
||||
if [[ -z $NOSUDO ]]; then
|
||||
SUDO="sudo"
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "configuring settings common among OSes"
|
||||
echo "using '$SUDO' as sudo"
|
||||
$SUDO true
|
||||
|
||||
echo "linking and sourcing env"
|
||||
ln -vfs "$DIR/.setenv.sh" ~/.setenv
|
||||
source ~/.setenv
|
||||
|
||||
#zsh
|
||||
if [[ -z $DONT_CHANGE_SHELL ]]; then
|
||||
echo "changing shell to zsh"
|
||||
chsh -s `which zsh` $USER
|
||||
fi
|
||||
|
||||
CURL="curl -sSfL"
|
||||
|
||||
if [[ -z $DIR ]]; then
|
||||
echo "please set DIR"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
DIR=`realpath $DIR`
|
||||
echo "using $DIR as the top level directory"
|
||||
cd $DIR
|
||||
git submodule update --init --recursive
|
||||
|
||||
#configs
|
||||
ln -vfs "$DIR/.vim" ~/.
|
||||
rm -fr ~/.config/sway
|
||||
ln -vfs "$DIR/.config/sway" ~/.config/sway
|
||||
ln -vfs "$DIR/.ideavimrc" ~/.
|
||||
ln -vfs "$DIR/.vimrc" ~/.vimrc
|
||||
ln -vfs "$DIR/.tmux.conf" ~/.
|
||||
ln -vfs "$DIR/.tmux.macosx" ~/.
|
||||
rm -f "~/.zshrc"
|
||||
ln -vfs "$DIR/.zprezto" ~/.
|
||||
ln -vfs "$DIR/.zpreztorc" ~/.zpreztorc
|
||||
ln -vfs "$DIR/.zprofile" ~/.zprofile
|
||||
ln -vfs "$DIR/.zprezto/runcoms/zshenv" ~/.zshenv
|
||||
ln -vfs "$DIR/.zshrc" ~/.zshrc
|
||||
ln -vfs "$DIR/.hyper.js" ~/.hyper.js
|
||||
ln -vfs "$DIR/.hyper_plugins" ~/.hyper_plugins
|
||||
ln -vfs "$DIR/.hyper_plugins" ~/.hyper_plugins
|
||||
|
||||
ln -vfs "$DIR/.Slic3r" ~/.
|
||||
ln -vfs "$DIR/.ghci" ~/.
|
||||
ln -vfs "$DIR/.conkyrc" ~/.
|
||||
mkdir -p ~/.kde/share/config/
|
||||
ln -vfs "$DIR/.kdiff3rc" ~/.kde/share/config/kdiff3rc
|
||||
|
||||
ln -vfs "$DIR/.gitconfig.linux.private" ~/.gitconfig
|
||||
if [[ `hostname` =~ .*FORM3.* ]]; then
|
||||
ln -vfs "$DIR/.gitconfig.linux.form3" ~/.gitconfig
|
||||
fi
|
||||
|
||||
mkdir -p ~/.config/autostart/
|
||||
# autostart apps
|
||||
mkdir -p ~/.config/vdirsyncer/
|
||||
ln -vfs "$DIR/.config/vdirsyncer/config" ~/.config/vdirsyncer/
|
||||
mkdir -p ~/.config/Code/User
|
||||
ln -vfs "$DIR/.config/Code/User/settings.json" ~/.config/Code/User/settings.json
|
||||
ln -vfs "$DIR/.config/Code/User/keybindings.json" ~/.config/Code/User/keybindings.json
|
||||
mkdir -p ~/.local/share/applications
|
||||
cp -v "$DIR/keeweb.desktop" ~/.local/share/applications/
|
||||
ln -vfs "$DIR/tools" ~/
|
||||
mkdir -vp ~/.config/terminator
|
||||
rm -f ~/.config/terminator/config
|
||||
ln "$DIR/.config/terminator/config" ~/.config/terminator/config
|
||||
mkdir -vp "$HOME/.config/alacritty/"
|
||||
ln -vfs "$DIR/.alacritty.yml" "$HOME/.config/alacritty/alacritty.yml"
|
||||
mkdir -p ~/.cargo/
|
||||
echo "all links done"
|
||||
|
||||
echo "adding GDB dashboard"
|
||||
rm -fr ~/.gdbinit*
|
||||
wget -P ~ git.io/.gdbinit
|
||||
|
||||
echo "adding NVM"
|
||||
mkdir -p "$NVM_DIR"
|
||||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
|
||||
|
||||
echo "using NVM"
|
||||
set +e
|
||||
\. "$NVM_DIR/nvm.sh"
|
||||
set -e
|
||||
nvm install node
|
||||
nvm use node
|
||||
|
||||
#install fonts
|
||||
echo "installing fonts"
|
||||
mkdir -p ~/.fonts
|
||||
cp -rv "$DIR/fonts" ~/.fonts
|
||||
set +e
|
||||
fc-cache -rv
|
||||
$SUDO fc-cache -rv
|
||||
set -e
|
||||
|
||||
if [[ -z $NORUST ]]; then
|
||||
#rust
|
||||
echo "installing rust"
|
||||
RUSTUP_TEMP="/tmp/blastoff.sh"
|
||||
$CURL https://sh.rustup.rs > "$RUSTUP_TEMP"
|
||||
chmod a+x "$RUSTUP_TEMP"
|
||||
"$RUSTUP_TEMP" -y
|
||||
rm -f "$RUSTUP_TEMP"
|
||||
|
||||
rustup update
|
||||
rustup install stable
|
||||
rustup install nightly
|
||||
rustup default stable
|
||||
|
||||
rustup component add rls --toolchain stable
|
||||
rustup component add clippy --toolchain stable
|
||||
rustup component add rustfmt --toolchain stable
|
||||
rustup component add rust-analysis --toolchain stable
|
||||
rustup component add rust-src --toolchain stable
|
||||
|
||||
set +e
|
||||
rustup component add rls --toolchain nightly
|
||||
rustup component add clippy --toolchain nightly
|
||||
rustup component add rustfmt --toolchain nightly
|
||||
rustup component add rust-analysis --toolchain nightly
|
||||
rustup component add rust-src --toolchain nightly
|
||||
set -e
|
||||
|
||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
|
||||
|
||||
(test -x "${HOME}/.cargo/bin/cargo-install-update" || cargo install cargo-update)
|
||||
(test -x "${HOME}/.cargo/bin/rg" || cargo install ripgrep)
|
||||
(test -x "${HOME}/.cargo/bin/fd" || cargo install fd-find)
|
||||
(test -x "${HOME}/.cargo/bin/bat" || cargo install bat)
|
||||
(test -x "${HOME}/.cargo/bin/genpass" || cargo install genpass)
|
||||
|
||||
set +e
|
||||
cargo install-update -a
|
||||
rustup run nightly cargo install-update -a
|
||||
set -e
|
||||
fi
|
||||
|
||||
set +e
|
||||
echo "Querying for gpg2 path"
|
||||
gpg2_path=`which gpg2`
|
||||
echo "Got $gpg2_path for gpg2 path"
|
||||
set -e
|
||||
if [[ -x "$gpg2_path" ]]; then
|
||||
echo "Using gpg2"
|
||||
GPG=gpg2
|
||||
else
|
||||
echo "WARNING using gpg instead of gpg2"
|
||||
GPG=gpg
|
||||
fi
|
||||
|
||||
echo "Getting GPG keys.."
|
||||
for key in \
|
||||
409B6B1796C275462A1703113804BB82D39DC0E3 \
|
||||
7D2BAF1CF37B13E2069D6956105BD0E739499BDB
|
||||
do
|
||||
$GPG --keyserver hkp://keys.gnupg.net --recv-keys "$key" || \
|
||||
$GPG --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || \
|
||||
$GPG --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || \
|
||||
$GPG --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" \
|
||||
;
|
||||
done
|
||||
|
||||
# go
|
||||
if [[ -z $NO_GO ]]; then
|
||||
GOPATH="$HOME/go"
|
||||
export GOPATH=`realpath "$GOPATH"`
|
||||
mkdir -p "$GOPATH"
|
||||
|
||||
# excercism
|
||||
go get -u -t github.com/exercism/cli/exercism
|
||||
go get -u -t golang.org/x/tools/cmd/gopls
|
||||
fi
|
||||
|
||||
# lua
|
||||
luarocks install --local --server=http://luarocks.org/dev lua-lsp
|
||||
luarocks install --local luacheck
|
||||
|
||||
if [[ -z $NOVIM ]]; then
|
||||
if [[ ! -d ~/.fzf ]]; then
|
||||
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
|
||||
else
|
||||
cd ~/.fzf
|
||||
git pull
|
||||
git submodule update --init --recursive
|
||||
fi
|
||||
if [[ -z $NO_GO ]]; then
|
||||
echo "Installing fzf"
|
||||
~/.fzf/install --64 --all
|
||||
fi
|
||||
echo "Installing Vim plugins"
|
||||
echo "\n" | vim +PlugUpgrade +qa
|
||||
echo "\n" | vim +PlugUpdate +qa
|
||||
echo "\n" | vim +PlugClean! +qa
|
||||
fi
|
||||
|
||||
nvm use node
|
||||
npx npm install -g yarn
|
||||
npx npm install -g reveal-md
|
||||
npx npm install -g diff-so-fancy
|
||||
npx npm install -g cssnano
|
||||
|
||||
echo
|
||||
echo "now go ahead and restart"
|
||||
echo
|
||||
|
710
conemu.xml
710
conemu.xml
|
@ -1,710 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<key name="Software">
|
||||
<key name="ConEmu">
|
||||
<key name=".Vanilla" modified="2016-11-12 16:10:44" build="161022">
|
||||
<value name="StartType" type="hex" data="02"/>
|
||||
<value name="CmdLine" type="string" data=""/>
|
||||
<value name="StartTasksFile" type="string" data=""/>
|
||||
<value name="StartTasksName" type="string" data="{Shells::cmd}"/>
|
||||
<value name="StartFarFolders" type="hex" data="00"/>
|
||||
<value name="StartFarEditors" type="hex" data="00"/>
|
||||
<value name="ColorTable00" type="dword" data="00423607"/>
|
||||
<value name="ColorTable01" type="dword" data="00d28b26"/>
|
||||
<value name="ColorTable02" type="dword" data="00009985"/>
|
||||
<value name="ColorTable03" type="dword" data="000089b5"/>
|
||||
<value name="ColorTable04" type="dword" data="002f32dc"/>
|
||||
<value name="ColorTable05" type="dword" data="008236d3"/>
|
||||
<value name="ColorTable06" type="dword" data="0098a12a"/>
|
||||
<value name="ColorTable07" type="dword" data="00d5e8ee"/>
|
||||
<value name="ColorTable08" type="dword" data="00362b00"/>
|
||||
<value name="ColorTable09" type="dword" data="00aaa897"/>
|
||||
<value name="ColorTable10" type="dword" data="00756e58"/>
|
||||
<value name="ColorTable11" type="dword" data="00837b65"/>
|
||||
<value name="ColorTable12" type="dword" data="00004ff2"/>
|
||||
<value name="ColorTable13" type="dword" data="00c4716c"/>
|
||||
<value name="ColorTable14" type="dword" data="00a1a193"/>
|
||||
<value name="ColorTable15" type="dword" data="00e3f6fd"/>
|
||||
<value name="ColorTable16" type="dword" data="00000000"/>
|
||||
<value name="ColorTable17" type="dword" data="00800000"/>
|
||||
<value name="ColorTable18" type="dword" data="00008000"/>
|
||||
<value name="ColorTable19" type="dword" data="00808000"/>
|
||||
<value name="ColorTable20" type="dword" data="00000080"/>
|
||||
<value name="ColorTable21" type="dword" data="00800080"/>
|
||||
<value name="ColorTable22" type="dword" data="00008080"/>
|
||||
<value name="ColorTable23" type="dword" data="00c0c0c0"/>
|
||||
<value name="ColorTable24" type="dword" data="00808080"/>
|
||||
<value name="ColorTable25" type="dword" data="00ff0000"/>
|
||||
<value name="ColorTable26" type="dword" data="0000ff00"/>
|
||||
<value name="ColorTable27" type="dword" data="00ffff00"/>
|
||||
<value name="ColorTable28" type="dword" data="000000ff"/>
|
||||
<value name="ColorTable29" type="dword" data="00ff00ff"/>
|
||||
<value name="ColorTable30" type="dword" data="0000ffff"/>
|
||||
<value name="ColorTable31" type="dword" data="00ffffff"/>
|
||||
<value name="ExtendColors" type="hex" data="00"/>
|
||||
<value name="ExtendColorIdx" type="hex" data="0e"/>
|
||||
<value name="TextColorIdx" type="hex" data="10"/>
|
||||
<value name="BackColorIdx" type="hex" data="10"/>
|
||||
<value name="PopTextColorIdx" type="hex" data="10"/>
|
||||
<value name="PopBackColorIdx" type="hex" data="10"/>
|
||||
<value name="SingleInstance" type="hex" data="00"/>
|
||||
<value name="QuakeStyle" type="hex" data="00"/>
|
||||
<value name="KeyboardHooks" type="hex" data="01"/>
|
||||
<value name="UseInjects" type="hex" data="01"/>
|
||||
<value name="Update.CheckOnStartup" type="hex" data="01"/>
|
||||
<value name="Update.CheckHourly" type="hex" data="00"/>
|
||||
<value name="Update.ConfirmDownload" type="hex" data="01"/>
|
||||
<value name="Update.UseBuilds" type="hex" data="01"/>
|
||||
<value name="FontUseDpi" type="hex" data="01"/>
|
||||
<value name="FontUseUnits" type="hex" data="01"/>
|
||||
<value name="FontSize" type="ulong" data="14"/>
|
||||
<value name="StatusFontHeight" type="long" data="12"/>
|
||||
<value name="TabFontHeight" type="long" data="13"/>
|
||||
<key name="HotKeys" modified="2016-11-03 21:51:49" build="161022">
|
||||
<value name="MinimizeRestore" type="dword" data="000011c0"/>
|
||||
<value name="KeyMacroVersion" type="hex" data="02"/>
|
||||
<value name="Multi.Modifier" type="dword" data="0000005b"/>
|
||||
<value name="Multi.ArrowsModifier" type="dword" data="0000005b"/>
|
||||
<value name="MinimizeRestore2" type="dword" data="00000000"/>
|
||||
<value name="GlobalRestore" type="dword" data="00000000"/>
|
||||
<value name="CdExplorerPath" type="dword" data="00000000"/>
|
||||
<value name="ForcedFullScreen" type="dword" data="12115b0d"/>
|
||||
<value name="SwitchGuiFocus" type="dword" data="00005b5a"/>
|
||||
<value name="SetFocusGui" type="dword" data="00000000"/>
|
||||
<value name="SetFocusChild" type="dword" data="00000000"/>
|
||||
<value name="ChildSystemMenu" type="dword" data="00000000"/>
|
||||
<value name="Multi.NewConsole" type="dword" data="00005b57"/>
|
||||
<value name="Multi.NewConsoleShift" type="dword" data="00105b57"/>
|
||||
<value name="Multi.CmdKey" type="dword" data="00005b58"/>
|
||||
<value name="Multi.NewWindow" type="dword" data="00000000"/>
|
||||
<value name="Multi.NewConsolePopup" type="dword" data="00005b4e"/>
|
||||
<value name="Multi.NewConsolePopup2" type="dword" data="00000000"/>
|
||||
<value name="Multi.NewAttach" type="dword" data="00005b47"/>
|
||||
<value name="Multi.NewSplitV" type="dword" data="0010114f"/>
|
||||
<value name="Multi.NewSplitH" type="dword" data="00101145"/>
|
||||
<value name="Multi.SplitMaximize" type="dword" data="00005d0d"/>
|
||||
<value name="Multi.SplitSizeVU" type="dword" data="00105d26"/>
|
||||
<value name="Multi.SplitSizeVD" type="dword" data="00105d28"/>
|
||||
<value name="Multi.SplitSizeHL" type="dword" data="00105d25"/>
|
||||
<value name="Multi.SplitSizeHR" type="dword" data="00105d27"/>
|
||||
<value name="Key.TabPane1" type="dword" data="00005d09"/>
|
||||
<value name="Key.TabPane2" type="dword" data="00105d09"/>
|
||||
<value name="Multi.SplitFocusU" type="dword" data="00005d26"/>
|
||||
<value name="Multi.SplitFocusD" type="dword" data="00005d28"/>
|
||||
<value name="Multi.SplitFocusL" type="dword" data="00005d25"/>
|
||||
<value name="Multi.SplitFocusR" type="dword" data="00005d27"/>
|
||||
<value name="Multi.Next" type="dword" data="00005b51"/>
|
||||
<value name="Multi.NextShift" type="dword" data="00105b51"/>
|
||||
<value name="Multi.Recreate" type="dword" data="00005bc0"/>
|
||||
<value name="Multi.AltCon" type="dword" data="00005b41"/>
|
||||
<value name="Multi.Pause" type="dword" data="80808013"/>
|
||||
<value name="Multi.Scroll" type="dword" data="00000000"/>
|
||||
<value name="Multi.GroupInput" type="dword" data="00005d47"/>
|
||||
<value name="Multi.Detach" type="dword" data="00000000"/>
|
||||
<value name="Multi.Unfasten" type="dword" data="00000000"/>
|
||||
<value name="Multi.Close" type="dword" data="00005b2e"/>
|
||||
<value name="CloseTabKey" type="dword" data="00125b2e"/>
|
||||
<value name="CloseGroupKey" type="dword" data="00115b2e"/>
|
||||
<value name="CloseGroupPrcKey" type="dword" data="00000000"/>
|
||||
<value name="CloseAllConKey" type="dword" data="00000000"/>
|
||||
<value name="CloseZombiesKey" type="dword" data="00000000"/>
|
||||
<value name="CloseExceptConKey" type="dword" data="00000000"/>
|
||||
<value name="KillProcessKey" type="dword" data="00121103"/>
|
||||
<value name="KillAllButShellKey" type="dword" data="00125b13"/>
|
||||
<value name="DuplicateRootKey" type="dword" data="00005b53"/>
|
||||
<value name="CloseConEmuKey" type="dword" data="00005b73"/>
|
||||
<value name="Multi.Rename" type="dword" data="00005d52"/>
|
||||
<value name="AffinityPriorityKey" type="dword" data="00005d41"/>
|
||||
<value name="Multi.MoveLeft" type="dword" data="00125b25"/>
|
||||
<value name="Multi.MoveRight" type="dword" data="00125b27"/>
|
||||
<value name="CTS.VkBlockStart" type="dword" data="00000000"/>
|
||||
<value name="CTS.VkTextStart" type="dword" data="00000000"/>
|
||||
<value name="CTS.VkCopyFmt0" type="dword" data="00001143"/>
|
||||
<value name="CTS.VkCopyFmt1" type="dword" data="00101143"/>
|
||||
<value name="CTS.VkCopyFmt2" type="dword" data="00000000"/>
|
||||
<value name="CTS.VkCopyAll" type="dword" data="00000000"/>
|
||||
<value name="HighlightMouseSwitch" type="dword" data="00005d4c"/>
|
||||
<value name="HighlightMouseSwitchX" type="dword" data="00005d58"/>
|
||||
<value name="Multi.ShowTabsList" type="dword" data="00000000"/>
|
||||
<value name="Multi.ShowTabsList2" type="dword" data="00005d7b"/>
|
||||
<value name="ClipboardVkAllLines" type="dword" data="0000102d"/>
|
||||
<value name="ClipboardVkFirstLine" type="dword" data="00001156"/>
|
||||
<value name="Key.AltNumpad" type="dword" data="00000000"/>
|
||||
<value name="DeleteWordToLeft" type="dword" data="00001108"/>
|
||||
<value name="FindTextKey" type="dword" data="00005d46"/>
|
||||
<value name="ScreenshotKey" type="dword" data="00005b48"/>
|
||||
<value name="ScreenshotFullKey" type="dword" data="00105b48"/>
|
||||
<value name="ShowStatusBarKey" type="dword" data="00005d53"/>
|
||||
<value name="ShowTabBarKey" type="dword" data="00005d54"/>
|
||||
<value name="ShowCaptionKey" type="dword" data="00005d43"/>
|
||||
<value name="AlwaysOnTopKey" type="dword" data="00000000"/>
|
||||
<value name="TransparencyInc" type="dword" data="00000000"/>
|
||||
<value name="TransparencyDec" type="dword" data="00000000"/>
|
||||
<value name="Key.TabMenu" type="dword" data="00005d20"/>
|
||||
<value name="Key.TabMenu2" type="dword" data="00001002"/>
|
||||
<value name="Key.Maximize" type="dword" data="00001278"/>
|
||||
<value name="Key.MaximizeWidth" type="dword" data="00105b28"/>
|
||||
<value name="Key.MaximizeHeight" type="dword" data="00105b26"/>
|
||||
<value name="Key.TileToLeft" type="dword" data="00005b25"/>
|
||||
<value name="Key.TileToRight" type="dword" data="00005b27"/>
|
||||
<value name="Key.JumpActiveMonitor" type="dword" data="00000000"/>
|
||||
<value name="Key.JumpPrevMonitor" type="dword" data="00105b25"/>
|
||||
<value name="Key.JumpNextMonitor" type="dword" data="00105b27"/>
|
||||
<value name="Key.FullScreen" type="dword" data="0000120d"/>
|
||||
<value name="Key.SysMenu" type="dword" data="00001220"/>
|
||||
<value name="Key.SysMenu2" type="dword" data="00001102"/>
|
||||
<value name="Key.DebugProcess" type="dword" data="00105b44"/>
|
||||
<value name="Key.DumpProcess" type="dword" data="00000000"/>
|
||||
<value name="Key.DumpTree" type="dword" data="00000000"/>
|
||||
<value name="Key.BufUp" type="dword" data="00001126"/>
|
||||
<value name="Key.BufDn" type="dword" data="00001128"/>
|
||||
<value name="Key.BufPgUp" type="dword" data="00001121"/>
|
||||
<value name="Key.BufPgDn" type="dword" data="00001122"/>
|
||||
<value name="Key.BufHfPgUp" type="dword" data="00005d21"/>
|
||||
<value name="Key.BufHfPgDn" type="dword" data="00005d22"/>
|
||||
<value name="Key.BufTop" type="dword" data="00005d24"/>
|
||||
<value name="Key.BufBottom" type="dword" data="00005d23"/>
|
||||
<value name="Key.BufCursor" type="dword" data="00005d08"/>
|
||||
<value name="Key.ResetTerm" type="dword" data="00000000"/>
|
||||
<value name="FontLargerKey" type="dword" data="000011d0"/>
|
||||
<value name="FontSmallerKey" type="dword" data="000011d1"/>
|
||||
<value name="FontOriginalKey" type="dword" data="00001104"/>
|
||||
<value name="PasteFileKey" type="dword" data="00101146"/>
|
||||
<value name="PastePathKey" type="dword" data="00101144"/>
|
||||
<value name="PasteCygwinKey" type="dword" data="00005d2d"/>
|
||||
<value name="KeyMacro01" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro01.Text" type="string" data=""/>
|
||||
<value name="KeyMacro02" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro02.Text" type="string" data=""/>
|
||||
<value name="KeyMacro03" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro03.Text" type="string" data=""/>
|
||||
<value name="KeyMacro04" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro04.Text" type="string" data=""/>
|
||||
<value name="KeyMacro05" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro05.Text" type="string" data=""/>
|
||||
<value name="KeyMacro06" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro06.Text" type="string" data=""/>
|
||||
<value name="KeyMacro07" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro07.Text" type="string" data=""/>
|
||||
<value name="KeyMacro08" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro08.Text" type="string" data=""/>
|
||||
<value name="KeyMacro09" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro09.Text" type="string" data=""/>
|
||||
<value name="KeyMacro10" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro10.Text" type="string" data=""/>
|
||||
<value name="KeyMacro11" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro11.Text" type="string" data=""/>
|
||||
<value name="KeyMacro12" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro12.Text" type="string" data=""/>
|
||||
<value name="KeyMacro13" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro13.Text" type="string" data=""/>
|
||||
<value name="KeyMacro14" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro14.Text" type="string" data=""/>
|
||||
<value name="KeyMacro15" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro15.Text" type="string" data=""/>
|
||||
<value name="KeyMacro16" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro16.Text" type="string" data=""/>
|
||||
<value name="KeyMacro17" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro17.Text" type="string" data=""/>
|
||||
<value name="KeyMacro18" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro18.Text" type="string" data=""/>
|
||||
<value name="KeyMacro19" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro19.Text" type="string" data=""/>
|
||||
<value name="KeyMacro20" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro20.Text" type="string" data=""/>
|
||||
<value name="KeyMacro21" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro21.Text" type="string" data=""/>
|
||||
<value name="KeyMacro22" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro22.Text" type="string" data=""/>
|
||||
<value name="KeyMacro23" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro23.Text" type="string" data=""/>
|
||||
<value name="KeyMacro24" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro24.Text" type="string" data=""/>
|
||||
<value name="KeyMacro25" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro25.Text" type="string" data=""/>
|
||||
<value name="KeyMacro26" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro26.Text" type="string" data=""/>
|
||||
<value name="KeyMacro27" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro27.Text" type="string" data=""/>
|
||||
<value name="KeyMacro28" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro28.Text" type="string" data=""/>
|
||||
<value name="KeyMacro29" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro29.Text" type="string" data=""/>
|
||||
<value name="KeyMacro30" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro30.Text" type="string" data=""/>
|
||||
<value name="KeyMacro31" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro31.Text" type="string" data=""/>
|
||||
<value name="KeyMacro32" type="dword" data="00000000"/>
|
||||
<value name="KeyMacro32.Text" type="string" data=""/>
|
||||
<value name="CTS.VkBlock" type="hex" data="a4"/>
|
||||
<value name="CTS.VkText" type="hex" data="a0"/>
|
||||
<value name="CTS.VkAct" type="hex" data="00"/>
|
||||
<value name="CTS.VkPrompt" type="hex" data="00"/>
|
||||
<value name="FarGotoEditorVk" type="hex" data="a2"/>
|
||||
<value name="DndLKey" type="hex" data="00"/>
|
||||
<value name="DndRKey" type="hex" data="a2"/>
|
||||
<value name="WndDragKey" type="dword" data="00121101"/>
|
||||
</key>
|
||||
<value name="CmdLineHistory" type="multi">
|
||||
<line data="{Zsh::CygWin zsh}"/>
|
||||
<line data="{Bash::CygWin bash}"/>
|
||||
</value>
|
||||
<value name="StartCreateDelay" type="ulong" data="100"/>
|
||||
<value name="ExtendFonts" type="hex" data="01"/>
|
||||
<value name="ExtendFontNormalIdx" type="hex" data="01"/>
|
||||
<value name="ExtendFontBoldIdx" type="hex" data="0c"/>
|
||||
<value name="ExtendFontItalicIdx" type="hex" data="0d"/>
|
||||
<value name="CursorTypeActive" type="dword" data="000232c1"/>
|
||||
<value name="CursorTypeInactive" type="dword" data="00823283"/>
|
||||
<value name="ClipboardDetectLineEnd" type="hex" data="01"/>
|
||||
<value name="ClipboardBashMargin" type="hex" data="00"/>
|
||||
<value name="ClipboardTrimTrailing" type="hex" data="02"/>
|
||||
<value name="ClipboardEOL" type="hex" data="00"/>
|
||||
<value name="ClipboardArrowStart" type="hex" data="01"/>
|
||||
<value name="ClipboardAllLines" type="hex" data="01"/>
|
||||
<value name="ClipboardFirstLine" type="hex" data="01"/>
|
||||
<value name="ClipboardClickPromptPosition" type="hex" data="02"/>
|
||||
<value name="ClipboardDeleteLeftWord" type="hex" data="02"/>
|
||||
<value name="TrueColorerSupport" type="hex" data="01"/>
|
||||
<value name="VividColors" type="hex" data="01"/>
|
||||
<value name="FadeInactive" type="hex" data="01"/>
|
||||
<value name="FadeInactiveLow" type="hex" data="00"/>
|
||||
<value name="FadeInactiveHigh" type="hex" data="d0"/>
|
||||
<value name="ConVisible" type="hex" data="00"/>
|
||||
<value name="SetDefaultTerminal" type="hex" data="00"/>
|
||||
<value name="SetDefaultTerminalStartup" type="hex" data="00"/>
|
||||
<value name="SetDefaultTerminalStartupTSA" type="hex" data="00"/>
|
||||
<value name="DefaultTerminalAgressive" type="hex" data="01"/>
|
||||
<value name="DefaultTerminalNoInjects" type="hex" data="00"/>
|
||||
<value name="DefaultTerminalNewWindow" type="hex" data="00"/>
|
||||
<value name="DefaultTerminalDebugLog" type="hex" data="00"/>
|
||||
<value name="DefaultTerminalConfirm" type="hex" data="01"/>
|
||||
<value name="DefaultTerminalApps" type="string" data="explorer.exe"/>
|
||||
<value name="ProcessAnsi" type="hex" data="01"/>
|
||||
<value name="AnsiExecution" type="hex" data="01"/>
|
||||
<value name="AnsiAllowedCommands" type="multi">
|
||||
<line data="cmd -cur_console:R /cGitShowBranch.cmd"/>
|
||||
</value>
|
||||
<value name="AnsiLog" type="hex" data="00"/>
|
||||
<value name="AnsiLogPath" type="string" data="%UserProfile%\ConEmu\Logs\"/>
|
||||
<value name="KillSshAgent" type="hex" data="01"/>
|
||||
<value name="ProcessNewConArg" type="hex" data="01"/>
|
||||
<value name="ProcessCmdStart" type="hex" data="00"/>
|
||||
<value name="ProcessCtrlZ" type="hex" data="00"/>
|
||||
<value name="SuppressBells" type="hex" data="01"/>
|
||||
<value name="ConsoleExceptionHandler" type="hex" data="00"/>
|
||||
<value name="UseClink" type="hex" data="01"/>
|
||||
<value name="StoreTaskbarkTasks" type="hex" data="01"/>
|
||||
<value name="StoreTaskbarCommands" type="hex" data="00"/>
|
||||
<value name="JumpListAutoUpdate" type="hex" data="01"/>
|
||||
<value name="SaveCmdHistory" type="hex" data="01"/>
|
||||
<value name="ShowHelpTooltips" type="hex" data="01"/>
|
||||
<value name="Multi" type="hex" data="01"/>
|
||||
<value name="Multi.ShowButtons" type="hex" data="01"/>
|
||||
<value name="Multi.ShowSearch" type="hex" data="01"/>
|
||||
<value name="Multi.NumberInCaption" type="hex" data="00"/>
|
||||
<value name="Multi.CloseConfirmFlags" type="hex" data="04"/>
|
||||
<value name="Multi.NewConfirm" type="hex" data="00"/>
|
||||
<value name="Multi.DupConfirm" type="hex" data="01"/>
|
||||
<value name="Multi.DetachConfirm" type="hex" data="01"/>
|
||||
<value name="Multi.UseArrows" type="hex" data="00"/>
|
||||
<value name="Multi.UseNumbers" type="hex" data="01"/>
|
||||
<value name="Multi.UseWinTab" type="hex" data="00"/>
|
||||
<value name="Multi.AutoCreate" type="hex" data="00"/>
|
||||
<value name="Multi.LeaveOnClose" type="hex" data="00"/>
|
||||
<value name="Multi.HideOnClose" type="hex" data="00"/>
|
||||
<value name="Multi.MinByEsc" type="hex" data="02"/>
|
||||
<value name="MapShiftEscToEsc" type="hex" data="01"/>
|
||||
<value name="Multi.Iterate" type="hex" data="01"/>
|
||||
<value name="Multi.SplitWidth" type="hex" data="04"/>
|
||||
<value name="Multi.SplitHeight" type="hex" data="04"/>
|
||||
<value name="FontName" type="string" data="DejaVu Sans Mono for Powerline"/>
|
||||
<value name="FontName2" type="string" data="DejaVu Sans Mono"/>
|
||||
<value name="FontAutoSize" type="hex" data="00"/>
|
||||
<value name="FontSizeX" type="ulong" data="0"/>
|
||||
<value name="FontSizeX2" type="ulong" data="0"/>
|
||||
<value name="FontSizeX3" type="ulong" data="0"/>
|
||||
<value name="FontCharSet" type="hex" data="01"/>
|
||||
<value name="Anti-aliasing" type="ulong" data="6"/>
|
||||
<value name="FontBold" type="hex" data="00"/>
|
||||
<value name="FontItalic" type="hex" data="00"/>
|
||||
<value name="Monospace" type="hex" data="01"/>
|
||||
<value name="CompressLongStrings" type="hex" data="01"/>
|
||||
<value name="BackGround Image show" type="hex" data="00"/>
|
||||
<value name="BackGround Image" type="string" data="c:\back.bmp"/>
|
||||
<value name="bgImageDarker" type="hex" data="ff"/>
|
||||
<value name="bgImageColors" type="dword" data="ffffffff"/>
|
||||
<value name="bgOperation" type="hex" data="00"/>
|
||||
<value name="bgPluginAllowed" type="hex" data="01"/>
|
||||
<value name="AlphaValue" type="hex" data="ff"/>
|
||||
<value name="AlphaValueSeparate" type="hex" data="00"/>
|
||||
<value name="AlphaValueInactive" type="hex" data="ff"/>
|
||||
<value name="UserScreenTransparent" type="hex" data="00"/>
|
||||
<value name="ColorKeyTransparent" type="hex" data="00"/>
|
||||
<value name="ColorKeyValue" type="dword" data="00010101"/>
|
||||
<value name="UseCurrentSizePos" type="hex" data="01"/>
|
||||
<value name="AutoSaveSizePos" type="hex" data="01"/>
|
||||
<value name="Cascaded" type="hex" data="01"/>
|
||||
<value name="IntegralSize" type="hex" data="00"/>
|
||||
<value name="WindowMode" type="dword" data="00000520"/>
|
||||
<value name="ConWnd X" type="long" data="0"/>
|
||||
<value name="ConWnd Y" type="long" data="0"/>
|
||||
<value name="LastMonitor" type="string" data="0,0,1920,1040"/>
|
||||
<value name="ConWnd Width" type="dword" data="00000050"/>
|
||||
<value name="ConWnd Height" type="dword" data="00000019"/>
|
||||
<value name="16bit Height" type="ulong" data="0"/>
|
||||
<value name="Restore2ActiveMon" type="hex" data="00"/>
|
||||
<value name="QuakeAnimation" type="ulong" data="300"/>
|
||||
<value name="HideCaption" type="hex" data="00"/>
|
||||
<value name="HideChildCaption" type="hex" data="01"/>
|
||||
<value name="FocusInChildWindows" type="hex" data="01"/>
|
||||
<value name="HideCaptionAlways" type="hex" data="00"/>
|
||||
<value name="HideCaptionAlwaysFrame" type="hex" data="ff"/>
|
||||
<value name="HideCaptionAlwaysDelay" type="ulong" data="2000"/>
|
||||
<value name="HideCaptionAlwaysDisappear" type="ulong" data="2000"/>
|
||||
<value name="DownShowHiddenMessage" type="hex" data="00"/>
|
||||
<value name="DownShowExOnTopMessage" type="hex" data="00"/>
|
||||
<value name="ConsoleFontName" type="string" data="Lucida Console"/>
|
||||
<value name="ConsoleFontWidth" type="long" data="3"/>
|
||||
<value name="ConsoleFontHeight" type="long" data="5"/>
|
||||
<value name="DefaultBufferHeight" type="long" data="1000"/>
|
||||
<value name="AutoBufferHeight" type="hex" data="01"/>
|
||||
<value name="UseScrollLock" type="hex" data="01"/>
|
||||
<value name="CmdOutputCP" type="long" data="0"/>
|
||||
<value name="ComSpec.Type" type="hex" data="00"/>
|
||||
<value name="ComSpec.Bits" type="hex" data="00"/>
|
||||
<value name="ComSpec.UpdateEnv" type="hex" data="00"/>
|
||||
<value name="ComSpec.EnvAddPath" type="hex" data="01"/>
|
||||
<value name="ComSpec.EnvAddExePath" type="hex" data="01"/>
|
||||
<value name="ComSpec.UncPaths" type="hex" data="00"/>
|
||||
<value name="ComSpec.Path" type="string" data=""/>
|
||||
<value name="EnvironmentSet" type="multi">
|
||||
<line data="set PATH=%ConEmuBaseDir%\Scripts;%PATH%"/>
|
||||
</value>
|
||||
<value name="CTS.Intelligent" type="hex" data="01"/>
|
||||
<value name="CTS.IntelligentExceptions" type="string" data="far|vim"/>
|
||||
<value name="CTS.AutoCopy" type="hex" data="01"/>
|
||||
<value name="CTS.ResetOnRelease" type="hex" data="00"/>
|
||||
<value name="CTS.IBeam" type="hex" data="01"/>
|
||||
<value name="CTS.EndOnTyping" type="hex" data="00"/>
|
||||
<value name="CTS.EndOnKeyPress" type="hex" data="00"/>
|
||||
<value name="CTS.EraseBeforeReset" type="hex" data="01"/>
|
||||
<value name="CTS.Freeze" type="hex" data="00"/>
|
||||
<value name="CTS.SelectBlock" type="hex" data="01"/>
|
||||
<value name="CTS.SelectText" type="hex" data="01"/>
|
||||
<value name="CTS.HtmlFormat" type="hex" data="00"/>
|
||||
<value name="CTS.ForceLocale" type="dword" data="00000000"/>
|
||||
<value name="CTS.RBtnAction" type="hex" data="03"/>
|
||||
<value name="CTS.MBtnAction" type="hex" data="00"/>
|
||||
<value name="CTS.ColorIndex" type="hex" data="e0"/>
|
||||
<value name="ClipboardConfirmEnter" type="hex" data="01"/>
|
||||
<value name="ClipboardConfirmLonger" type="ulong" data="200"/>
|
||||
<value name="FarGotoEditorOpt" type="hex" data="01"/>
|
||||
<value name="FarGotoEditorPath" type="string" data="far.exe /e%1:%2 "%3""/>
|
||||
<value name="HighlightMouseRow" type="hex" data="00"/>
|
||||
<value name="HighlightMouseCol" type="hex" data="00"/>
|
||||
<value name="FixFarBorders" type="hex" data="01"/>
|
||||
<value name="Anti-aliasing2" type="hex" data="01"/>
|
||||
<value name="FixFarBordersRanges" type="string" data="2013-25C4;"/>
|
||||
<value name="ExtendUCharMap" type="hex" data="01"/>
|
||||
<value name="EnhanceGraphics" type="hex" data="01"/>
|
||||
<value name="EnhanceButtons" type="hex" data="00"/>
|
||||
<value name="PartBrush75" type="hex" data="c8"/>
|
||||
<value name="PartBrush50" type="hex" data="96"/>
|
||||
<value name="PartBrush25" type="hex" data="5a"/>
|
||||
<value name="PartBrushBlack" type="hex" data="20"/>
|
||||
<value name="RightClick opens context menu" type="hex" data="02"/>
|
||||
<value name="RightClickMacro2" type="string" data=""/>
|
||||
<value name="SendAltTab" type="hex" data="00"/>
|
||||
<value name="SendAltEsc" type="hex" data="00"/>
|
||||
<value name="SendAltPrintScrn" type="hex" data="00"/>
|
||||
<value name="SendPrintScrn" type="hex" data="00"/>
|
||||
<value name="SendCtrlEsc" type="hex" data="00"/>
|
||||
<value name="Min2Tray" type="hex" data="00"/>
|
||||
<value name="AlwaysShowTrayIcon" type="hex" data="00"/>
|
||||
<value name="SafeFarClose" type="hex" data="01"/>
|
||||
<value name="SafeFarCloseMacro" type="string" data=""/>
|
||||
<value name="FARuseASCIIsort" type="hex" data="00"/>
|
||||
<value name="ShellNoZoneCheck" type="hex" data="00"/>
|
||||
<value name="FixAltOnAltTab" type="hex" data="00"/>
|
||||
<value name="UseAltGrayPlus" type="hex" data="01"/>
|
||||
<value name="DisableMouse" type="hex" data="00"/>
|
||||
<value name="RSelectionFix" type="hex" data="01"/>
|
||||
<value name="MouseSkipActivation" type="hex" data="01"/>
|
||||
<value name="MouseSkipMoving" type="hex" data="01"/>
|
||||
<value name="MouseDragWindow" type="hex" data="01"/>
|
||||
<value name="FarHourglass" type="hex" data="01"/>
|
||||
<value name="FarHourglassDelay" type="ulong" data="500"/>
|
||||
<value name="Dnd" type="hex" data="01"/>
|
||||
<value name="DndDrop" type="hex" data="01"/>
|
||||
<value name="DefCopy" type="hex" data="01"/>
|
||||
<value name="DropUseMenu" type="hex" data="02"/>
|
||||
<value name="DragOverlay" type="hex" data="01"/>
|
||||
<value name="DragShowIcons" type="hex" data="01"/>
|
||||
<value name="DebugSteps" type="hex" data="00"/>
|
||||
<value name="DebugLog" type="hex" data="00"/>
|
||||
<value name="DragPanel" type="hex" data="02"/>
|
||||
<value name="DragPanelBothEdges" type="hex" data="00"/>
|
||||
<value name="KeyBarRClick" type="hex" data="01"/>
|
||||
<value name="StatusBar.Show" type="hex" data="01"/>
|
||||
<value name="StatusBar.Flags" type="dword" data="00000002"/>
|
||||
<value name="StatusFontFace" type="string" data="Segoe UI"/>
|
||||
<value name="StatusFontCharSet" type="ulong" data="0"/>
|
||||
<value name="StatusBar.Color.Back" type="dword" data="00423607"/>
|
||||
<value name="StatusBar.Color.Light" type="dword" data="00e3f6fd"/>
|
||||
<value name="StatusBar.Color.Dark" type="dword" data="00a1a193"/>
|
||||
<value name="StatusBar.Hide.VCon" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.CapsL" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.NumL" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.ScrL" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.VisL" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Lang" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.KeyHooks" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.TMode" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.RMode" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WPos" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WSize" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WClient" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WWork" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WVBack" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.WVDC" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Style" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.StyleEx" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.hFore" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.hFocus" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Zoom" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Dpi" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.ABuf" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.CPos" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.CSize" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.BSize" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.CurX" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.CurY" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.CurS" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.CurI" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.ConEmuPID" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.ConEmuHWND" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.ConEmuView" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Srv" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.SrvHWND" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Transparency" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.New" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.Sync" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.Proc" type="hex" data="00"/>
|
||||
<value name="StatusBar.Hide.Title" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Time" type="hex" data="01"/>
|
||||
<value name="StatusBar.Hide.Resize" type="hex" data="00"/>
|
||||
<value name="Tabs" type="hex" data="01"/>
|
||||
<value name="TabsLocation" type="hex" data="00"/>
|
||||
<value name="TabIcons" type="hex" data="01"/>
|
||||
<value name="OneTabPerGroup" type="hex" data="00"/>
|
||||
<value name="ActivateSplitMouseOver" type="hex" data="01"/>
|
||||
<value name="TabSelf" type="hex" data="01"/>
|
||||
<value name="TabLazy" type="hex" data="01"/>
|
||||
<value name="TabFlashChanged" type="long" data="8"/>
|
||||
<value name="TabRecent" type="hex" data="01"/>
|
||||
<value name="TabDblClick" type="ulong" data="1"/>
|
||||
<value name="TabBtnDblClick" type="ulong" data="0"/>
|
||||
<value name="TabsOnTaskBar" type="hex" data="02"/>
|
||||
<value name="TaskBarOverlay" type="hex" data="01"/>
|
||||
<value name="TaskbarProgress" type="hex" data="01"/>
|
||||
<value name="TabCloseMacro" type="string" data=""/>
|
||||
<value name="TabFontFace" type="string" data="Segoe UI"/>
|
||||
<value name="TabFontCharSet" type="ulong" data="0"/>
|
||||
<value name="SaveAllEditors" type="string" data=""/>
|
||||
<value name="ToolbarAddSpace" type="long" data="0"/>
|
||||
<value name="TabConsole" type="string" data="<%c> %s"/>
|
||||
<value name="TabModifiedSuffix" type="string" data="[*]"/>
|
||||
<value name="TabSkipWords" type="string" data="Administrator:|Администратор:"/>
|
||||
<value name="TabPanels" type="string" data="<%c> %s"/>
|
||||
<value name="TabEditor" type="string" data="<%c.%i>{%s}"/>
|
||||
<value name="TabEditorModified" type="string" data="<%c.%i>[%s] *"/>
|
||||
<value name="TabViewer" type="string" data="<%c.%i>[%s]"/>
|
||||
<value name="TabLenMax" type="ulong" data="20"/>
|
||||
<value name="AdminTitleSuffix" type="string" data=" (Admin)"/>
|
||||
<value name="AdminShowShield" type="hex" data="01"/>
|
||||
<value name="HideInactiveConsoleTabs" type="hex" data="00"/>
|
||||
<value name="ShowFarWindows" type="hex" data="01"/>
|
||||
<value name="TryToCenter" type="hex" data="00"/>
|
||||
<value name="CenterConsolePad" type="ulong" data="0"/>
|
||||
<value name="ShowScrollbar" type="hex" data="02"/>
|
||||
<value name="ScrollBarAppearDelay" type="ulong" data="100"/>
|
||||
<value name="ScrollBarDisappearDelay" type="ulong" data="1000"/>
|
||||
<value name="IconID" type="ulong" data="1"/>
|
||||
<value name="MainTimerElapse" type="ulong" data="10"/>
|
||||
<value name="MainTimerInactiveElapse" type="ulong" data="1000"/>
|
||||
<value name="AffinityMask" type="dword" data="00000000"/>
|
||||
<value name="SkipFocusEvents" type="hex" data="00"/>
|
||||
<value name="MonitorConsoleLang" type="hex" data="03"/>
|
||||
<value name="SnapToDesktopEdges" type="hex" data="00"/>
|
||||
<value name="AlwaysOnTop" type="hex" data="00"/>
|
||||
<value name="SleepInBackground" type="hex" data="00"/>
|
||||
<value name="RetardInactivePanes" type="hex" data="00"/>
|
||||
<value name="MinimizeOnLoseFocus" type="hex" data="00"/>
|
||||
<value name="DisableFarFlashing" type="hex" data="00"/>
|
||||
<value name="DisableAllFlashing" type="hex" data="00"/>
|
||||
<value name="FindText" type="string" data=""/>
|
||||
<value name="FindMatchCase" type="hex" data="00"/>
|
||||
<value name="FindMatchWholeWords" type="hex" data="00"/>
|
||||
<value name="FindTransparent" type="hex" data="01"/>
|
||||
<value name="PanView.BackColor" type="dword" data="30ffffff"/>
|
||||
<value name="PanView.PFrame" type="long" data="1"/>
|
||||
<value name="PanView.PFrameColor" type="dword" data="28808080"/>
|
||||
<value name="PanView.SFrame" type="long" data="1"/>
|
||||
<value name="PanView.SFrameColor" type="dword" data="07c0c0c0"/>
|
||||
<value name="PanView.Thumbs.ImgSize" type="long" data="96"/>
|
||||
<value name="PanView.Thumbs.SpaceX1" type="long" data="1"/>
|
||||
<value name="PanView.Thumbs.SpaceY1" type="long" data="1"/>
|
||||
<value name="PanView.Thumbs.SpaceX2" type="long" data="5"/>
|
||||
<value name="PanView.Thumbs.SpaceY2" type="long" data="20"/>
|
||||
<value name="PanView.Thumbs.LabelSpacing" type="long" data="2"/>
|
||||
<value name="PanView.Thumbs.LabelPadding" type="long" data="0"/>
|
||||
<value name="PanView.Thumbs.FontName" type="string" data="Segoe UI"/>
|
||||
<value name="PanView.Thumbs.FontHeight" type="long" data="14"/>
|
||||
<value name="PanView.Tiles.ImgSize" type="long" data="48"/>
|
||||
<value name="PanView.Tiles.SpaceX1" type="long" data="4"/>
|
||||
<value name="PanView.Tiles.SpaceY1" type="long" data="4"/>
|
||||
<value name="PanView.Tiles.SpaceX2" type="long" data="172"/>
|
||||
<value name="PanView.Tiles.SpaceY2" type="long" data="4"/>
|
||||
<value name="PanView.Tiles.LabelSpacing" type="long" data="4"/>
|
||||
<value name="PanView.Tiles.LabelPadding" type="long" data="1"/>
|
||||
<value name="PanView.Tiles.FontName" type="string" data="Segoe UI"/>
|
||||
<value name="PanView.Tiles.FontHeight" type="long" data="14"/>
|
||||
<value name="PanView.LoadPreviews" type="hex" data="03"/>
|
||||
<value name="PanView.LoadFolders" type="hex" data="01"/>
|
||||
<value name="PanView.LoadTimeout" type="ulong" data="15"/>
|
||||
<value name="PanView.MaxZoom" type="ulong" data="600"/>
|
||||
<value name="PanView.UsePicView2" type="hex" data="01"/>
|
||||
<value name="PanView.RestoreOnStartup" type="hex" data="00"/>
|
||||
<value name="Update.VerLocation" type="string" data=""/>
|
||||
<value name="Update.InetTool" type="hex" data="00"/>
|
||||
<value name="Update.InetToolCmd" type="string" data=""/>
|
||||
<value name="Update.UseProxy" type="hex" data="00"/>
|
||||
<value name="Update.Proxy" type="string" data=""/>
|
||||
<value name="Update.ProxyUser" type="string" data=""/>
|
||||
<value name="Update.ProxyPassword" type="string" data=""/>
|
||||
<value name="Update.ExeCmdLine" type="string" data=""/>
|
||||
<value name="Update.ArcCmdLine" type="string" data=""/>
|
||||
<value name="Update.DownloadPath" type="string" data="%TEMP%\ConEmu"/>
|
||||
<value name="Update.LeavePackages" type="hex" data="00"/>
|
||||
<value name="Update.PostUpdateCmd" type="string" data="echo Last successful update>ConEmuUpdate.info && date /t>>ConEmuUpdate.info && time /t>>ConEmuUpdate.info"/>
|
||||
<key name="Tasks" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Count" type="long" data="11"/>
|
||||
<key name="Task1" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::cmd}"/>
|
||||
<value name="Flags" type="dword" data="00000002"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="cmd.exe /k "%ConEmuBaseDir%\CmdInit.cmd""/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task2" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::cmd (Admin)}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="cmd.exe /k "%ConEmuBaseDir%\CmdInit.cmd" -new_console:a"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task3" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::cmd-32}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data=""%windir%\syswow64\cmd.exe" /k "%ConEmuBaseDir%\CmdInit.cmd""/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task4" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::cmd 64/32}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="> "%windir%\system32\cmd.exe" /k ""%ConEmuBaseDir%\CmdInit.cmd" & echo This is Native cmd.exe""/>
|
||||
<value name="Cmd2" type="string" data=""%windir%\syswow64\cmd.exe" /k ""%ConEmuBaseDir%\CmdInit.cmd" & echo This is 32 bit cmd.exe -new_console:s50V""/>
|
||||
<value name="Active" type="long" data="1"/>
|
||||
<value name="Count" type="long" data="2"/>
|
||||
</key>
|
||||
<key name="Task5" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::PowerShell}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="powershell.exe"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task6" modified="2016-11-12 16:06:06" build="161022">
|
||||
<value name="Name" type="string" data="{Shells::PowerShell (Admin)}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="powershell.exe -new_console:a"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task7" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Name" type="string" data="{Zsh::CygWin zsh}"/>
|
||||
<value name="Flags" type="dword" data="00000005"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="set CHERE_INVOKING=1 & %ConEmuDrive%\cygwin64\bin\zsh.exe --login -i -new_console:C:"%ConEmuDrive%\cygwin64\Cygwin.ico""/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task8" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Name" type="string" data="{Bash::Git bash}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data=""%ConEmuDir%\..\Git\git-cmd.exe" --no-cd --command=usr/bin/bash.exe -l -i"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task9" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Name" type="string" data="{Helper::Show ANSI colors}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="cmd.exe /k type "%ConEmuBaseDir%\Addons\AnsiColors16t.ans" -cur_console:n"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task10" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Name" type="string" data="{SDK::VS 14.0 x86 tools prompt}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="cmd /k ""C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"" x86 -new_console:t:"VS 14.0" -new_console:C:"%CommonProgramFiles(x86)%\microsoft shared\MSEnv\VSFileHandler.dll,33""/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task11" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Name" type="string" data="{Tools::Chocolatey (Admin)}"/>
|
||||
<value name="Flags" type="dword" data="00000004"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="*cmd.exe /k Title Chocolatey & "%ConEmuBaseDir%\Addons\ChocolateyAbout.cmd""/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
<key name="Task12" modified="2016-11-12 16:04:30" build="161022">
|
||||
<value name="Name" type="string" data="{Zsh::CygWin zsh}"/>
|
||||
<value name="Flags" type="dword" data="00000005"/>
|
||||
<value name="Hotkey" type="dword" data="00000000"/>
|
||||
<value name="GuiArgs" type="string" data=""/>
|
||||
<value name="Cmd1" type="string" data="C:\cygwin64\bin\mintty.exe -i /Cygwin-Terminal.ico /usr/bin/zsh --login"/>
|
||||
<value name="Active" type="long" data="0"/>
|
||||
<value name="Count" type="long" data="1"/>
|
||||
</key>
|
||||
</key>
|
||||
<key name="Apps" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Count" type="long" data="0"/>
|
||||
</key>
|
||||
<key name="Colors" modified="2016-11-12 16:10:40" build="161022">
|
||||
<value name="Count" type="long" data="0"/>
|
||||
</key>
|
||||
</key>
|
||||
</key>
|
||||
</key>
|
|
@ -1 +0,0 @@
|
|||
led=t|0 event=both device=nvme0n1
|
|
@ -1,34 +0,0 @@
|
|||
FROM fedora:30
|
||||
|
||||
ENV LC_ALL en_GB.UTF-8
|
||||
ENV LANG en_GB.UTF-8
|
||||
|
||||
RUN dnf -y groupinstall "C Development Tools and Libraries"
|
||||
RUN dnf -y groupinstall "Development Tools"
|
||||
|
||||
RUN dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||
|
||||
RUN dnf -y copr enable jdoss/wireguard
|
||||
|
||||
RUN dnf -y groupupdate core
|
||||
RUN dnf -y upgrade --best --allowerasing
|
||||
|
||||
RUN dnf -y groupinstall gnome
|
||||
|
||||
# requirements for early packages and crates
|
||||
RUN dnf -y --best --allowerasing install openssl-devel ncurses-devel
|
||||
|
||||
# basic packages
|
||||
RUN dnf -y --best --allowerasing install tmux atop zsh aria2 lm_sensors python3-pip whois curl pv terminator gsmartcontrol python-pip mercurial cmake glances dkms git xz util-linux-user dnf-automatic yum-utils util-linux-user archivemount redhat-rpm-config grub2 grub2-efi dracut dracut-tools fail2ban syncthing wget wireguard-dkms wireguard-tools parted lsscsi ksh dnf-plugins-core restic duply
|
||||
|
||||
# printing
|
||||
RUN dnf -y --best --allowerasing install splix gutenprint-cups cups-bjnp
|
||||
|
||||
# gui tools
|
||||
RUN dnf -y --best --allowerasing install firefox gajim freecad gparted glances gimp kdiff3 qt5-linguist keepass yubico-piv-tool yubikey-personalization-gui xloadimage gnome-tweaks xclip kdbg
|
||||
|
||||
# development
|
||||
RUN dnf -y --best --allowerasing install mercurial cmake intltool dkms git xz dnf-automatic golang redhat-rpm-config pcsc-tools pcsc-lite xloadimage yp-tools closure-compiler optipng jpegoptim ansible lldb python-lldb
|
||||
|
||||
# devel versions of packages
|
||||
RUN dnf -y --best --allowerasing install qt5-qtbase-devel qt5-qtwebkit-devel python3-devel libxslt-devel libjpeg-turbo-devel gtk2-devel kernel-devel qtkeychain-qt5-devel pcsc-lite-devel openssl-devel zlib-devel libuuid-devel libattr-devel libblkid-devel libselinux-devel libudev-devel openssl-devel elfutils-libelf-devel libtirpc-devel ffmpeg-libs dnf-plugins-core
|
|
@ -1,46 +0,0 @@
|
|||
[commands]
|
||||
# What kind of upgrade to perform:
|
||||
# default = all available upgrades
|
||||
# security = only the security upgrades
|
||||
upgrade_type = security
|
||||
random_sleep = 300
|
||||
|
||||
# Whether updates should be downloaded when they are available.
|
||||
download_updates = yes
|
||||
|
||||
# Whether updates should be applied when they are available.
|
||||
# Note that if this is set to no, downloaded packages will be left in the
|
||||
# cache regardless of the keepcache setting.
|
||||
apply_updates = yes
|
||||
|
||||
|
||||
[emitters]
|
||||
# Name to use for this system in messages that are emitted. Default is the
|
||||
# hostname.
|
||||
# system_name = my-host
|
||||
|
||||
# How to send messages. Valid options are stdio, email and motd. If
|
||||
# emit_via includes stdio, messages will be sent to stdout; this is useful
|
||||
# to have cron send the messages. If emit_via includes email, this
|
||||
# program will send email itself according to the configured options.
|
||||
# If emit_via includes motd, /etc/motd file will have the messages.
|
||||
# Default is email,stdio.
|
||||
emit_via = stdio,email
|
||||
|
||||
|
||||
[email]
|
||||
# The address to send email messages from.
|
||||
email_from = root
|
||||
|
||||
# List of addresses to send messages to.
|
||||
email_to = admin@cyplo.net
|
||||
|
||||
# Name of the host to connect to to send email messages.
|
||||
email_host = localhost
|
||||
|
||||
|
||||
[base]
|
||||
# This section overrides dnf.conf
|
||||
|
||||
# Use this to filter DNF core messages
|
||||
debuglevel = 1
|
|
@ -1,2 +0,0 @@
|
|||
[sshd]
|
||||
enabled = true
|
|
@ -1,2 +0,0 @@
|
|||
/usr/local/lib64
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
vm.swappiness = 90
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
fs.inotify.max_user_watches = 524288
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/bash
|
||||
sudo dnf install cmake doxygen swig gettext dos2unix desktop-file-utils libXmu-devel freeimage-devel mesa-libGLU-devel OCE-devel python python-devel python-pyside-devel pyside-tools boost-devel tbb-devel eigen3-devel qt-devel qt-webkit-devel ode-devel xerces-c xerces-c-devel opencv-devel smesh-devel freetype freetype-devel boost-devel Coin3-devel vtk-devel med-devel
|
|
@ -1,12 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
set +e
|
||||
sudo dnf -y remove kicad
|
||||
set -e
|
||||
|
||||
sudo dnf -y groupinstall "C Development Tools and Libraries"
|
||||
sudo dnf -y install bzr bzrtools cmake GLC_lib-devel glew-devel cairo-devel bzip2-devel wxGTK3-devel wxGTK-devel openssl-devel doxygen patch glm-devel
|
||||
$DIR/../common/install_kicad_from_sources
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
FEDORA_VERSION=`rpm -E %fedora`
|
||||
sudo dnf install -y libbsd-devel libbsd glibc-devel libX11-devel help2man autoconf git tar glib2 glib2-devel kernel-devel kernel-headers automake gcc gtk2-devel
|
||||
sudo dnf install -y VirtualGL VirtualGL.i686 --best --allowerasing
|
||||
sudo dnf install -y http://install.linux.ncsu.edu/pub/yum/itecs/public/bumblebee/fedora$FEDORA_VERSION/noarch/bumblebee-release-1.2-1.noarch.rpm
|
||||
sudo dnf install -y http://install.linux.ncsu.edu/pub/yum/itecs/public/bumblebee-nonfree/fedora$FEDORA_VERSION/noarch/bumblebee-nonfree-release-1.2-1.noarch.rpm
|
||||
sudo dnf install -y bumblebee-nvidia bbswitch-dkms primus primus.i686 --best --allowerasing
|
||||
sudo systemctl enable bumblebeed.service
|
||||
sudo systemctl start bumblebeed.service
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
export DONT_CHANGE_SHELL=true
|
||||
export NO_SYSTEMCTL=true
|
||||
|
||||
dnf -y install sudo
|
||||
|
||||
cd $HOME
|
||||
|
||||
mkdir -p dev/
|
||||
cp -rv temp/dotfiles dev/
|
||||
|
||||
./dev/dotfiles/fedora/up.sh
|
||||
|
104
fedora/up.sh
104
fedora/up.sh
|
@ -1,104 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
sudo dnf -y groupinstall "C Development Tools and Libraries"
|
||||
sudo dnf -y groupinstall "Development Tools"
|
||||
|
||||
sudo dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||
|
||||
sudo dnf -y copr enable jdoss/wireguard
|
||||
|
||||
if [[ -z $NOUPGRADE ]]; then
|
||||
sudo dnf -y groupupdate core
|
||||
sudo dnf -y upgrade --best --allowerasing
|
||||
fi
|
||||
|
||||
sudo dnf -y --best --allowerasing install tmux atop zsh firefox aria2 gajim lm_sensors freecad python3-pip qt5-qtbase-devel qt5-qtwebkit-devel whois curl pv gsmartcontrol python-pip mercurial python3-devel libxslt-devel libjpeg-turbo-devel cmake gtk2-devel intltool gparted glances dkms kernel-devel gimp git xz util-linux-user dnf-automatic kdiff3 yum-utils util-linux-user ncurses-devel qt5-linguist qtkeychain-qt5-devel archivemount keepass splix gutenprint-cups cups-bjnp golang redhat-rpm-config pcsc-lite-devel pcsc-tools pcsc-lite yubico-piv-tool yubikey-personalization-gui xloadimage yp-tools closure-compiler optipng jpegoptim grub2 grub2-efi dracut dracut-tools openssl-devel fail2ban syncthing ansible gnome-tweaks xclip wget wireguard-dkms wireguard-tools lldb python-lldb kdbg zlib-devel libuuid-devel libattr-devel libblkid-devel libselinux-devel libudev-devel parted lsscsi ksh openssl-devel elfutils-libelf-devel libtirpc-devel kernel-devel ffmpeg-libs dnf-plugins-core restic duply docker steam clang llvm-devel clang-devel libsodium-devel chromium vim tlp tlp-rdw lua lua-devel luarocks snapd
|
||||
|
||||
# enable snap classic
|
||||
sudo ln -vfs /var/lib/snapd/snap /snap
|
||||
|
||||
sudo cp -v /etc/dnf/automatic.conf /etc/dnf/automatic.conf.bak
|
||||
sudo cp -v $DIR/etc/dnf/automatic.conf /etc/dnf/automatic.conf
|
||||
sudo cp -v $DIR/etc/sysctl.d/90_swapiness.conf /etc/sysctl.d/
|
||||
sudo cp -v $DIR/etc/sysctl.d/91_inotify_limit.conf /etc/sysctl.d/
|
||||
sudo cp -v $DIR/etc/fail2ban/jail.d/01-sshd.conf /etc/fail2ban/jail.d/
|
||||
sudo ldconfig
|
||||
|
||||
set +e
|
||||
sudo diff /etc/dnf/automatic.conf.bak /etc/dnf/automatic.conf
|
||||
set -e
|
||||
|
||||
# SSD TRIM
|
||||
if [[ -f /etc/crypttab ]]; then
|
||||
sudo cp -v /etc/crypttab /etc/crypttab.bak
|
||||
sudo sed -i 's/none.*$/none luks,discard/g' /etc/crypttab
|
||||
echo "crypttab:"
|
||||
set +e
|
||||
sudo cat /etc/crypttab
|
||||
sudo diff /etc/crypttab.bak /etc/crypttab
|
||||
set -e
|
||||
else
|
||||
echo "No crypttab..."
|
||||
fi
|
||||
|
||||
if sudo test -f /boot/efi/EFI/fedora/grub.cfg; then
|
||||
echo "generating grub config..."
|
||||
sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
|
||||
echo "generating initramfs..."
|
||||
sudo dracut -f
|
||||
else
|
||||
echo "No grub.cfg ..."
|
||||
fi
|
||||
|
||||
mkdir -p "$HOME/.config/systemd/"
|
||||
rm -frv "$HOME/.config/systemd/user"
|
||||
|
||||
DIR=`realpath "$DIR/../"`
|
||||
ln -vfs "$DIR/.config/systemd/user" "$HOME/.config/systemd/"
|
||||
|
||||
if [[ -z $NO_SYSTEMCTL ]]; then
|
||||
sudo systemctl enable docker
|
||||
sudo systemctl restart docker
|
||||
sudo systemctl enable fail2ban
|
||||
sudo systemctl restart fail2ban
|
||||
sudo systemctl enable dnf-automatic-install.timer
|
||||
sudo systemctl restart dnf-automatic-install.timer
|
||||
sudo systemctl enable fstrim.timer
|
||||
sudo systemctl restart fstrim.timer
|
||||
sudo systemctl enable tlp
|
||||
sudo systemctl restart tlp
|
||||
sudo systemctl enable tlp-sleep
|
||||
sudo systemctl restart tlp-sleep
|
||||
sudo systemctl mask systemd-rfkill.socket
|
||||
sudo systemctl enable --now syncthing@cyryl.service
|
||||
systemctl --user daemon-reload
|
||||
systemctl --user enable restic-backup.timer
|
||||
systemctl --user enable restic-backup.service
|
||||
systemctl --user list-timers
|
||||
sudo systemctl list-timers
|
||||
fi
|
||||
|
||||
# docker
|
||||
if [[ -z $USER ]]; then
|
||||
USER=`whoami`
|
||||
fi
|
||||
|
||||
getent group docker || sudo groupadd docker
|
||||
sudo usermod -aG docker $USER
|
||||
|
||||
# vscode
|
||||
mkdir -p ~/Downloads
|
||||
cd ~/Downloads
|
||||
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
|
||||
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
|
||||
sudo dnf -y install --best --allowerasing code
|
||||
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
code --install-extension vscodevim.vim
|
||||
fi
|
||||
|
||||
DIR="$DIR" "$DIR/common/up.sh"
|
|
@ -1,27 +0,0 @@
|
|||
/*
|
||||
How To:
|
||||
1. Find your firefox profile folder : https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data
|
||||
2. create a "chrome" folder if it doesn't exist
|
||||
3. Paste content of this gist in a "userChrome.css" file
|
||||
4. Restart Firefox
|
||||
Don't hesitate to say if there are bugs, I only tested this for my workflow : I don't use tabs
|
||||
at all but I want to see the bar if I open a tab by mistake (otherwise I sometimes lose a tab)
|
||||
*/
|
||||
#tabbrowser-tabs, #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
|
||||
min-height: 0 !important;
|
||||
}
|
||||
|
||||
/* Thanks to @Speravir for making it work again in the latest versions. */
|
||||
#tabbrowser-tabs tab[first-visible-tab="true"][last-visible-tab="true"] {
|
||||
visibility: collapse;
|
||||
}
|
||||
|
||||
/* I don't use tabs so I just hide the new tab button. You should be able to use a similar trick as the rule above with
|
||||
css siblings selectors if you want to keep it when the tab bar is visible. */
|
||||
#tabbrowser-tabs .tabs-newtab-button {
|
||||
visibility: collapse !important;
|
||||
}
|
||||
|
||||
#tabbrowser-tabs tab {
|
||||
min-height: var(--tab-min-height)
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
foureighty.qcow2
BIN
foureighty.qcow2
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=KeeWeb
|
||||
Icon=/home/cyryl/programs/keeweb/128x128.png
|
||||
Exec=/home/cyryl/programs/keeweb/KeeWeb
|
||||
Terminal=false
|
File diff suppressed because it is too large
Load diff
|
@ -1,2 +0,0 @@
|
|||
#!/bin/bash
|
||||
xcode-select --install
|
123
macosx/up.sh
123
macosx/up.sh
|
@ -1,123 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" </dev/null
|
||||
export PATH="/usr/local/bin:$PATH"
|
||||
|
||||
set +e
|
||||
brew unlink gnupg
|
||||
brew unlink gnupg2
|
||||
brew uninstall gnupg
|
||||
brew uninstall gnupg2
|
||||
brew unlink dirmngr
|
||||
brew uninstall dirmngr
|
||||
brew unlink gpg-agent
|
||||
brew uninstall gpg-agent
|
||||
brew unlink mercurial
|
||||
brew uninstall --force mercurial
|
||||
brew unlink numpy
|
||||
brew uninstall --ignore-dependencies numpy
|
||||
brew unlink python
|
||||
brew uninstall --ignore-dependencies python
|
||||
brew unlink python@2
|
||||
brew uninstall --ignore-dependencies python@2
|
||||
brew install numpy
|
||||
brew link --overwrite numpy
|
||||
brew link --overwrite gcc
|
||||
brew install --force dirmngr
|
||||
set -e
|
||||
|
||||
brew update
|
||||
brew install --force gnupg2
|
||||
brew install python3
|
||||
brew install mercurial
|
||||
brew upgrade
|
||||
brew cask upgrade
|
||||
|
||||
brew install reattach-to-user-namespace
|
||||
|
||||
brew install aria2
|
||||
brew install \
|
||||
autojump \
|
||||
bash \
|
||||
mobile-shell \
|
||||
the_silver_searcher \
|
||||
tmux \
|
||||
tree \
|
||||
watch \
|
||||
zsh
|
||||
|
||||
brew install \
|
||||
coreutils \
|
||||
curl \
|
||||
dos2unix \
|
||||
findutils \
|
||||
gawk \
|
||||
gnu-sed \
|
||||
httpie \
|
||||
httping \
|
||||
jq \
|
||||
moreutils \
|
||||
pinentry \
|
||||
pinentry-mac \
|
||||
socat \
|
||||
unrar \
|
||||
wget \
|
||||
fontconfig \
|
||||
syncthing
|
||||
|
||||
brew install \
|
||||
carthage \
|
||||
cmake \
|
||||
elm \
|
||||
git \
|
||||
haskell-stack \
|
||||
mercurial \
|
||||
python \
|
||||
python3 \
|
||||
ruby \
|
||||
sqlite \
|
||||
tidy-html5 \
|
||||
doxygen \
|
||||
go \
|
||||
optipng \
|
||||
jpegoptim
|
||||
|
||||
brew cask install gimp
|
||||
brew cask install iterm2
|
||||
brew cask install docker
|
||||
brew cask install appcode
|
||||
brew cask install adium
|
||||
brew cask install kdiff3
|
||||
brew cask install istat-menus
|
||||
|
||||
echo "finsihed installing"
|
||||
|
||||
echo "restart syncthing"
|
||||
reattach-to-user-namespace brew services restart syncthing
|
||||
|
||||
if ! fgrep /usr/local/bin/zsh /etc/shells; then
|
||||
echo "add shell"
|
||||
sudo bash -c "echo /usr/local/bin/zsh >> /etc/shells"
|
||||
fi
|
||||
|
||||
echo "cleanup"
|
||||
brew cleanup
|
||||
|
||||
echo "Configuring NVRAM"
|
||||
sudo nvram SystemAudioVolume=%80
|
||||
defaults write com.google.Keystone.Agent checkInterval 4233600
|
||||
|
||||
DIR="$DIR/../"
|
||||
DIR=`realpath "$DIR"`
|
||||
|
||||
if [[ -z $CONTINUOUS_INTEGRATION ]]; then
|
||||
echo "Invoking common configuration scripts"
|
||||
DIR="$DIR" $DIR/common/up.sh
|
||||
fi
|
||||
|
||||
ln -vfs "$DIR/.gitconfig.mac" $HOME/.gitconfig
|
||||
mkdir -p "$HOME/Library/Application Support/Code/User/"
|
||||
ln -vfs "$DIR/.config/Code/User/settings.json.mac" "$HOME/Library/Application Support/Code/User/settings.json"
|
||||
ln -vfs "$DIR/.config/Code/User/keybindings.json.mac" "$HOME/Library/Application Support/Code/User/keybindings.json"
|
1
rvmrc
1
rvmrc
|
@ -1 +0,0 @@
|
|||
rvm_autoupdate_flag=2
|
40
test.sh
40
test.sh
|
@ -1,40 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
|
||||
export DONT_CHANGE_SHELL=true
|
||||
./macosx/up.sh
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [[ -z $DETECTED_OS ]]; then
|
||||
echo "cannot detect OS, please set DETECTED_OS manually"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $DETECTED_OS =~ .*:.* ]]; then
|
||||
SYSTEM_NAME=`echo $DETECTED_OS | cut -d':' -f1`
|
||||
SYSTEM_VERSION=`echo $DETECTED_OS | cut -d':' -f2`
|
||||
else
|
||||
echo "please set DETECTED_OS to system:version"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
INSIDER_ROOT_DIR=/root/temp/dotfiles/
|
||||
CURRENT_DIR=`pwd`
|
||||
|
||||
SYSTEM_DIR="$SYSTEM_NAME/"
|
||||
SYSTEM_VERSION_DIR="$SYSTEM_NAME/$SYSTEM_VERSION/"
|
||||
|
||||
if [[ -d "$CURRENT_DIR/$SYSTEM_VERSION_DIR" ]]; then
|
||||
DIR=$SYSTEM_VERSION_DIR
|
||||
else
|
||||
DIR=$SYSTEM_DIR
|
||||
fi
|
||||
|
||||
if [[ -z $DOCKER_IMAGE ]]; then
|
||||
DOCKER_IMAGE="$DETECTED_OS"
|
||||
fi
|
||||
|
||||
docker run -v $CURRENT_DIR:$INSIDER_ROOT_DIR:Z $DOCKER_IMAGE $INSIDER_ROOT_DIR/$DIR/test_insider
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
FROM ubuntu:disco
|
||||
|
||||
ENV LC_ALL en_GB.UTF-8
|
||||
ENV LANG en_GB.UTF-8
|
||||
ENV LANGUAGE en_GB.UTF-8
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN echo "APT::Acquire::Retries=16;" >> /etc/apt/apt.conf.d/99_retries
|
||||
RUN echo '\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco main restricted \n\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco-updates main restricted \n\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco-security main restricted \n\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco universe \n\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco-updates universe\n\
|
||||
deb mirror://mirrors.ubuntu.com/NL.txt disco-security universe\n\
|
||||
' > /etc/apt/sources.list
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y --fix-missing sudo apt-utils aptitude dirmngr locales nullmailer
|
||||
RUN apt-get -y --fix-missing upgrade
|
||||
|
||||
RUN sudo locale-gen en_GB.UTF-8
|
||||
RUN dpkg-reconfigure locales
|
||||
|
||||
RUN apt-get -y install whois zsh tmux atop aria2 curl pv python-dev ruby-dev dkms linux-kernel-headers golang
|
||||
RUN apt-get -y --fix-missing install lm-sensors mercurial git
|
||||
RUN apt-get -y --fix-missing install build-essential cmake intltool
|
||||
RUN apt-get -y --fix-missing install xorg
|
||||
RUN apt-get -y --fix-missing install meld
|
||||
RUN apt-get -y --fix-missing install gajim
|
||||
RUN apt-get -y --fix-missing install lm-sensors
|
||||
RUN apt-get -y --fix-missing install terminator
|
||||
RUN apt-get -y --fix-missing install python3-pip python-pip
|
||||
RUN apt-get -y --fix-missing install keepass2
|
||||
RUN apt-get -y --fix-missing install libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev
|
||||
RUN apt-get -y --fix-missing install gsmartcontrol redshift gtk-redshift gparted solaar glances silversearcher-ag retext kdiff3
|
||||
|
||||
RUN mkdir -p /root/dev/
|
||||
# vim
|
||||
RUN git clone https://github.com/vim/vim.git --recursive /root/dev/vim
|
||||
RUN cd /root/dev/vim && ./configure --with-features=huge \
|
||||
--enable-multibyte \
|
||||
--enable-rubyinterp \
|
||||
--enable-python3interp=yes \
|
||||
--enable-luainterp \
|
||||
--enable-gui=no \
|
||||
--enable-cscope
|
||||
RUN cd /root/dev/vim && make -j`nproc`
|
||||
RUN cd /root/dev/vim && make install
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
# Configuration file for Bumblebee. Values should **not** be put between quotes
|
||||
|
||||
## Server options. Any change made in this section will need a server restart
|
||||
# to take effect.
|
||||
[bumblebeed]
|
||||
# The secondary Xorg server DISPLAY number
|
||||
VirtualDisplay=:8
|
||||
# Should the unused Xorg server be kept running? Set this to true if waiting
|
||||
# for X to be ready is too long and don't need power management at all.
|
||||
KeepUnusedXServer=false
|
||||
# The name of the Bumbleblee server group name (GID name)
|
||||
ServerGroup=bumblebee
|
||||
# Card power state at exit. Set to false if the card shoud be ON when Bumblebee
|
||||
# server exits.
|
||||
TurnCardOffAtExit=true
|
||||
# The default behavior of '-f' option on optirun. If set to "true", '-f' will
|
||||
# be ignored.
|
||||
NoEcoModeOverride=false
|
||||
# The Driver used by Bumblebee server. If this value is not set (or empty),
|
||||
# auto-detection is performed. The available drivers are nvidia and nouveau
|
||||
# (See also the driver-specific sections below)
|
||||
Driver=nvidia
|
||||
# Directory with a dummy config file to pass as a -configdir to secondary X
|
||||
XorgConfDir=/etc/bumblebee/xorg.conf.d
|
||||
|
||||
## Client options. Will take effect on the next optirun executed.
|
||||
[optirun]
|
||||
# Acceleration/ rendering bridge, possible values are auto, virtualgl and
|
||||
# primus.
|
||||
Bridge=primus
|
||||
# The method used for VirtualGL to transport frames between X servers.
|
||||
# Possible values are proxy, jpeg, rgb, xv and yuv.
|
||||
VGLTransport=proxy
|
||||
# List of paths which are searched for the primus libGL.so.1 when using
|
||||
# the primus bridge
|
||||
PrimusLibraryPath=/usr/lib/x86_64-linux-gnu/primus:/usr/lib/i386-linux-gnu/primus
|
||||
# Should the program run under optirun even if Bumblebee server or nvidia card
|
||||
# is not available?
|
||||
AllowFallbackToIGC=false
|
||||
|
||||
|
||||
# Driver-specific settings are grouped under [driver-NAME]. The sections are
|
||||
# parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
|
||||
# detection resolves to NAME).
|
||||
# PMMethod: method to use for saving power by disabling the nvidia card, valid
|
||||
# values are: auto - automatically detect which PM method to use
|
||||
# bbswitch - new in BB 3, recommended if available
|
||||
# switcheroo - vga_switcheroo method, use at your own risk
|
||||
# none - disable PM completely
|
||||
# https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
|
||||
|
||||
## Section with nvidia driver specific options, only parsed if Driver=nvidia
|
||||
[driver-nvidia]
|
||||
# Module name to load, defaults to Driver if empty or unset
|
||||
KernelDriver=nvidia_346
|
||||
PMMethod=auto
|
||||
# colon-separated path to the nvidia libraries
|
||||
LibraryPath=/usr/lib/nvidia-346:/usr/lib32/nvidia-346
|
||||
# comma-separated path of the directory containing nvidia_drv.so and the
|
||||
# default Xorg modules path
|
||||
XorgModulePath=/usr/lib/nvidia-346/xorg,/usr/lib/xorg/modules
|
||||
XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
[Re-enable hibernate by default in upower]
|
||||
Identity=unix-user:*
|
||||
Action=org.freedesktop.upower.hibernate
|
||||
ResultActive=yes
|
||||
|
||||
[Re-enable hibernate by default in logind]
|
||||
Identity=unix-user:*
|
||||
Action=org.freedesktop.login1.hibernate
|
||||
ResultActive=yes
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh
|
||||
sudo cp -v com.ubuntu.enable-hibernate.pkla /var/lib/polkit-1/localauthority/50-local.d/
|
||||
echo "Don't forget to install Hibernate Status Button"
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
set -v
|
||||
sudo add-apt-repository ppa:freecad-maintainers/freecad-daily
|
||||
sudo apt-get update
|
||||
sudo aptitude install freecad
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash
|
||||
sudo add-apt-repository ppa:js-reynaud/ppa-kicad
|
||||
sudo aptitude update
|
||||
sudo aptitude install kicad
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
set -v
|
||||
sudo aptitude install -y nvidia-346
|
||||
sudo aptitude install -y bumblebee bumblebee-nvidia primus
|
||||
sudo cp -v bumblebee.conf /etc/bumblebee/bumblebee.conf
|
||||
sudo cp -v nouveau.conf /etc/modprobe.d/nouveau.conf
|
|
@ -1,13 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
set -v
|
||||
|
||||
#ReText
|
||||
sudo aptitude -y install python3-pyqt5 python3-pip python3-pyqt5.qtwebkit
|
||||
aria2c -c http://sourceforge.net/projects/pyqt/files/sip/sip-4.16.2/sip-4.16.2.tar.gz -d /tmp
|
||||
tar -C /tmp -xf /tmp/sip-4.16.2.tar.gz
|
||||
cd /tmp/sip-4.16.2
|
||||
python3 configure.py
|
||||
make
|
||||
sudo make install
|
||||
sudo pip3 install retext
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
sudo aptitude install thinkfan
|
||||
echo "options thinkpad_acpi fan_control=1" | sudo tee /etc/modprobe.d/thinkfan.conf
|
|
@ -1,2 +0,0 @@
|
|||
blacklist nouveau
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
export DONT_CHANGE_SHELL=true
|
||||
export NO_SYSTEMCTL=true
|
||||
|
||||
echo "APT::Acquire::Retries=16;" >> /etc/apt/apt.conf.d/99_retries
|
||||
|
||||
echo "Europe/London" > /etc/timezone
|
||||
|
||||
apt-get update
|
||||
apt-get install -y sudo nullmailer tzdata
|
||||
dpkg-reconfigure -f noninteractive tzdata
|
||||
|
||||
cd $HOME
|
||||
|
||||
mkdir -p dev/
|
||||
cp -rv temp/dotfiles dev/
|
||||
|
||||
./dev/dotfiles/ubuntu/up.sh
|
||||
|
27
ubuntu/up.sh
27
ubuntu/up.sh
|
@ -1,27 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
set -v
|
||||
|
||||
sudo apt update
|
||||
sudo apt -y upgrade
|
||||
sudo apt -y --fix-missing install apt-file aptitude git curl flatpak i3 fonts-font-awesome
|
||||
|
||||
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||
|
||||
curl https://nixos.org/nix/install | sh
|
||||
|
||||
source /home/cyryl/.nix-profile/etc/profile.d/nix.sh
|
||||
export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH
|
||||
|
||||
nix-channel --add https://github.com/rycee/home-manager/archive/release-20.03.tar.gz home-manager
|
||||
nix-channel --update
|
||||
|
||||
nix-shell '<home-manager>' -A install
|
||||
|
||||
ln -vfs $HOME/dev/dotfiles/nixos/home-other-os.nix $HOME/.config/nixpkgs/home.nix
|
||||
|
||||
home-manager switch
|
||||
sudo chsh -s /home/cyryl/.nix-profile/bin/zsh cyryl
|
||||
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
BoldAsFont=-1
|
||||
Font=DejaVu Sans Mono for Powerline
|
||||
FontHeight=12
|
||||
FontWeight=700
|
||||
FontIsBold=yes
|
||||
Locale=en_GB
|
||||
Charset=UTF-8
|
||||
ForegroundColour=131,148,150
|
||||
BackgroundColour=0,43,54
|
||||
CursorColour=220,50,47
|
||||
Black=7,54,66
|
||||
BoldBlack=0,43,54
|
||||
Red=220,50,47
|
||||
BoldRed=203,75,22
|
||||
Green=133,153,0
|
||||
BoldGreen=88,110,117
|
||||
Yellow=181,137,0
|
||||
BoldYellow=101,123,131
|
||||
Blue=38,139,210
|
||||
BoldBlue=131,148,150
|
||||
Magenta=211,54,130
|
||||
BoldMagenta=108,113,196
|
||||
Cyan=42,161,152
|
||||
BoldCyan=147,161,161
|
||||
White=238,232,213
|
||||
BoldWhite=253,246,227
|
||||
BellType=0
|
|
@ -1,19 +0,0 @@
|
|||
Bootstrap from cmd.exe running as Administrator:
|
||||
|
||||
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/cyplo/dotfiles/master/windows/bootstrap.ps1'))"
|
||||
|
||||
launch a normal user's cmd.exe and:
|
||||
|
||||
refreshenv
|
||||
ssh-keygen -b 8192
|
||||
type .ssh\id_rsa.pub
|
||||
# add this key to github
|
||||
mkdir dev
|
||||
cd dev
|
||||
git clone git@github.com:cyplo/dotfiles.git
|
||||
|
||||
launch new cmd.exe as Administrator and:
|
||||
|
||||
cd %HOMEPATH%\dev\dotfiles
|
||||
windows\build.bat
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
|
||||
choco install -y git win32-openssh
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
@echo on
|
||||
choco install -y --allowEmptyChecksum firefox googlechrome wget notepadplusplus sublimetext3 mono monodevelop gtksharp visualstudiocode p4merge dotnet4.5 nodejs.install conemu dejavufonts ag golang wireshark procexp procmon drmemory.install WinPcap keepass.install nextcloud-client f.lux
|
||||
choco upgrade -y all
|
||||
call refreshenv
|
||||
|
||||
wget -c https://cygwin.com/setup-x86_64.exe
|
||||
setup-x86_64.exe -R "C:\cygwin64" -s http://mirror.switch.ch/ftp/mirror/cygwin/ -q -g -P curl,zsh,git,vim,wget,xz,tar,gawk,bzip2,subversion,zlib,fontconfig,clang,cmake,clang,gcc,gcc-g++,lua,perl,the_silver_searcher,gnupg,patch,zlib-devel,openssl-devel,libyaml-devel,libyaml0_2,sqlite3,make,libtool,autoconf,automake,bison,m4,mingw64-i686-gcc-core,mingw64-x86_64-gcc-core,patch,cygwin32-readline,libcrypt-devel,libcrypt0,ncurses,libncurses-devel,python-devel,libxslt,libxslt-devel,libjpeg-devel,python
|
||||
|
||||
set script_path=%~dp0
|
||||
set repo_path=%script_path%\..\
|
||||
pushd %repo_path%
|
||||
set repo_path=%CD%
|
||||
popd
|
||||
|
||||
set bash=c:\cygwin64\bin\bash.exe --login -c
|
||||
|
||||
for /f "delims=" %%A in ('%bash% "cd `cygpath $HOMEPATH`/dev/dotfiles && git rev-parse --abbrev-ref HEAD"') do set "branch=%%A"
|
||||
%bash% 'echo "branch is $branch"'
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
%bash% "cp -vr `cygpath $HOMEPATH`/.ssh $HOME/"
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
%bash% "export OUTER_CLONE=`cygpath $repo_path` && $script_path/build_insider.sh"
|
||||
if %errorlevel% neq 0 exit /b %errorlevel%
|
||||
|
||||
echo Configuring Windows-specific settings
|
||||
echo %repo_path% is repo path
|
||||
|
||||
if not exist "%appdata%\Roaming\" mkdir "%appdata%\Roaming\"
|
||||
IF EXIST "%appdata%\Roaming\ConEmu.xml" del /F "%appdata%\Roaming\ConEmu.xml"
|
||||
mklink /h "%appdata%\Roaming\ConEmu.xml" "%repo_path%\conemu.xml"
|
||||
|
||||
IF EXIST "%HOMEPATH%\.gitconfig" del /F "%HOMEPATH%\.gitconfig"
|
||||
mklink /h "%HOMEPATH%\.gitconfig" "%repo_path%\.gitconfig.windows
|
|
@ -1,50 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set +e
|
||||
|
||||
chmod ao-rwx ~/.ssh/id_rsa
|
||||
|
||||
set -e
|
||||
|
||||
DOTFILES_PATH="$HOME/dev/dotfiles"
|
||||
mkdir -pv $HOME/dev/
|
||||
ln -vfs "$OUTER_CLONE/.gitconfig.cygwin" $HOME/.gitconfig
|
||||
if [[ ! -d $DOTFILES_PATH ]]; then
|
||||
git clone "$OUTER_CLONE" "$DOTFILES_PATH"
|
||||
fi
|
||||
|
||||
cd "$DOTFILES_PATH"
|
||||
git remote set-url origin https://github.com/cyplo/dotfiles.git
|
||||
git fetch -p
|
||||
git checkout $branch
|
||||
set +e
|
||||
git pull
|
||||
set -e
|
||||
git remote set-url origin git@github.com:cyplo/dotfiles.git
|
||||
# might fail on CI where there are no secret keys
|
||||
set +e
|
||||
git pull
|
||||
set -e
|
||||
unset branch
|
||||
|
||||
export NOSUDO=true
|
||||
export DONT_CHANGE_SHELL=true
|
||||
export NORUST=true
|
||||
export NO_GO=true
|
||||
export DIR=$DOTFILES_PATH
|
||||
export NOYCM=true
|
||||
|
||||
curl https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py
|
||||
python /tmp/get-pip.py
|
||||
|
||||
# expose all the binaries fetched during the outer build
|
||||
export PATH="$OUTER_CLONE:$PATH"
|
||||
|
||||
echo "Invoking common configuration script"
|
||||
$DIR/common/up.sh
|
||||
|
||||
echo "Making symlinks"
|
||||
ln -vfs $DIR/windows_cygwin/.minttyrc $HOME/
|
||||
ln -vfs "$DOTFILES_PATH/.gitconfig.cygwin" $HOME/.gitconfig
|
||||
ln -vfs $DIR/.vimrc.cygwin $HOME/.vimrc
|
||||
|
Loading…
Reference in a new issue