updated comments, removed unused stuff.

This commit is contained in:
pim-wtf
2022-04-20 19:46:17 +02:00
parent 19d84f3367
commit 05a7404466
13 changed files with 326 additions and 1041 deletions

View File

@ -2,861 +2,46 @@
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
#
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files # Alacritty config.
# # Comments and examples have been removed for the sake of brevity. Please consult the alacritty GitHub for detailed example config.
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
#import:
# - /path/to/alacritty.yml
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
env: 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 TERM: xterm-256color
window: window:
# Window dimensions (changes require restart)
#
# Number of lines/columns (not pixels) in the terminal. The number of columns
# must be at least `2`, while using a value of `0` for columns and lines will
# fall back to the window manager's recommended size.
#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: padding:
x: 4 x: 4
y: 4 y: 4
# 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 and no title bar buttons
#decorations: full
# Startup Mode (changes require restart)
#
# Values for `startup_mode`:
# - Windowed
# - Maximized
# - Fullscreen
#
# Values for `startup_mode` (macOS only):
# - SimpleFullscreen
#startup_mode: Windowed
# Window title
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
# Window class (Linux/BSD only):
#class:
# Application instance name
#instance: Alacritty
# General application class
#general: Alacritty
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark`
# and `light`. Set this to `None` to use the default theme variant.
#gtk_theme_variant: None
#
# opacity: 0.85
#scrolling:
# Maximum number of lines in the scrollback buffer.
# Specifying '0' will disable scrolling.
#history: 10000
# Scrolling distance multiplier.
#multiplier: 3
# Font configuration # Font configuration
font: font:
# Normal (roman) font face
normal: normal:
# Font family
#
# Default:
# - (macOS) Menlo
# - (Linux/BSD) monospace
# - (Windows) Consolas
family: RobotoMono family: RobotoMono
# The `style` can be specified to pick a specific face.
#style: Regular
# Bold font face # Bold font face
bold: bold:
# Font family
#
# If the bold family is not specified, it will fall back to the
# value specified for the normal font.
family: RobotoMono family: RobotoMono
# The `style` can be specified to pick a specific face.
style: Bold style: Bold
# Italic font face # Italic font face
italic: italic:
# Font family
#
# If the italic family is not specified, it will fall back to the
# value specified for the normal font.
family: RobotoMono family: RobotoMono
# The `style` can be specified to pick a specific face.
style: Italic style: Italic
# Bold italic font face
#bold_italic:
# Font family
#
# If the bold 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: Bold Italic
# Point size # Point size
size: 12.0 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 upward.
#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`.
#use_thin_strokes: true
# If `true`, bold text is drawn using the bright color variants.
#draw_bold_text_with_bright_colors: false
# Colors (Tomorrow Night)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '#191919' background: '#191919'
# foreground: '#c5c8c6' # foreground: '#c5c8c6'
# Bright and dim foreground colors
#
# The dimmed foreground color is calculated automatically if it is not
# present. If the bright foreground color is not set, or
# `draw_bold_text_with_bright_colors` is `false`, the normal foreground
# color will be used.
#dim_foreground: '#828482'
#bright_foreground: '#eaeaea'
# Cursor colors
#
# Colors which should be used to draw the terminal cursor.
#
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#cursor:
# text: CellBackground
# cursor: CellForeground
# Vi mode cursor colors # Vi mode cursor colors
# vi_mode_cursor:
# Colors for the cursor when the vi mode is active. text: CellBackground
# cursor: CellForeground
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#vi_mode_cursor:
# text: CellBackground
# cursor: CellForeground
# Search colors
#
# Colors used for the search bar and match highlighting.
#search:
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#matches:
# foreground: '#000000'
# background: '#ffffff'
#focused_match:
# foreground: '#ffffff'
# background: '#000000'
#bar:
# background: '#c5c8c6'
# foreground: '#1d1f21'
# Keyboard regex hints
#hints:
# First character in the hint label
#
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#start:
# foreground: '#1d1f21'
# background: '#e9ff5e'
# All characters after the first one in the hint label
#
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#end:
# foreground: '#e9ff5e'
# background: '#1d1f21'
# Line indicator
#
# Color used for the indicator displaying the position in history during
# search and vi mode.
#
# By default, these will use the opposing primary color.
#line_indicator:
# foreground: None
# background: None
# Selection colors
#
# Colors which should be used to draw the selection area.
#
# Allowed values are CellForeground/CellBackground, which reference the
# affected cell, or hexadecimal colors like #ff00ff.
#selection:
# text: CellBackground
# background: CellForeground
# Normal colors
#normal:
# black: '#1d1f21'
# red: '#cc6666'
# green: '#b5bd68'
# yellow: '#f0c674'
# blue: '#81a2be'
# magenta: '#b294bb'
# cyan: '#8abeb7'
# white: '#c5c8c6'
# Bright colors
#bright:
# black: '#666666'
# red: '#d54e53'
# green: '#b9ca4a'
# yellow: '#e7c547'
# blue: '#7aa6da'
# magenta: '#c397d8'
# cyan: '#70c0b1'
# white: '#eaeaea'
# Dim colors
#
# If the dim colors are not set, they will be calculated automatically based
# on the `normal` colors.
#dim:
# black: '#131415'
# red: '#864343'
# green: '#777c44'
# yellow: '#9e824c'
# blue: '#556a7d'
# magenta: '#75617b'
# cyan: '#5b7d78'
# white: '#828482'
# 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: '#ff00ff' }`
#
#indexed_colors: []
# Bell
#
# The bell is rung every time the BEL control character is received.
#bell:
# Visual Bell Animation
#
# Animation effect for flashing the screen when the visual bell is rung.
#
# Values for `animation`:
# - Ease
# - EaseOut
# - EaseOutSine
# - EaseOutQuad
# - EaseOutCubic
# - EaseOutQuart
# - EaseOutQuint
# - EaseOutExpo
# - EaseOutCirc
# - Linear
#animation: EaseOutExpo
# Duration o--sink-nicknames-from "alsa.card_name"f the visual bell flash in milliseconds. A `duration` of `0` will
# disable the visual bell animation.
#duration: 0
# Visual bell animation color.
#color: '#ffffff'
# Bell Command
#
# This program is executed whenever the bell is rung.
#
# When set to `command: None`, no command will be executed.
#
# Example:
# command:
# program: notify-send
# args: ["Hello, World!"]
#
#command: None
# 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: 0.75
#selection:
# This string contains all characters that are used as separators for
# "semantic words" in Alacritty.
#semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
# When set to `true`, selected text will be copied to the primary clipboard.
#save_to_clipboard: false
#cursor:
# Cursor style
#style:
# Cursor shape
#
# Values for `shape`:
# - ▇ Block
# - _ Underline
# - | Beam
#shape: Block
# Cursor blinking state
#
# Values for `blinking`:
# - Never: Prevent the cursor from ever blinking
# - Off: Disable blinking by default
# - On: Enable blinking by default
# - Always: Force the cursor to always blink
#blinking: Off
# Vi mode cursor style
#
# If the vi mode cursor style is `None` or not specified, it will fall back to
# the style of the active value of the normal cursor.
#
# See `cursor.style` for available options.
#vi_mode_style: None
# Cursor blinking interval in milliseconds.
#blink_interval: 750
# If this is `true`, the cursor will be rendered as a hollow box when the
# window is not focused.
#unfocused_hollow: true
# Thickness of the cursor relative to the cell width as floating point number
# from `0.0` to `1.0`.
#thickness: 0.15
# 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:
# - (macOS) /bin/bash --login
# - (Linux/BSD) user login shell
# - (Windows) powershell
#shell:
# program: /bin/bash
# args:
# - --login
# Startup directory
#
# Directory the shell is started in. If this is unset, or `None`, the working
# directory of the parent process will be used.
#working_directory: None
# Send ESC (\x1b) before characters when alt is pressed.
#alt_send_esc: true
#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
# Regex hints
#
# Terminal hints can be used to find text in the visible part of the terminal
# and pipe it to other applications.
#hints:
# Keys used for the hint labels.
#alphabet: "jfkdls;ahgurieowpq"
# List with all available hints
#
# Each hint must have a `regex` and either an `action` or a `command` field.
# The fields `mouse`, `binding` and `post_processing` are optional.
#
# The fields `command`, `binding.key`, `binding.mods`, `binding.mode` and
# `mouse.mods` accept the same values as they do in the `key_bindings` section.
#
# The `mouse.enabled` field controls if the hint should be underlined while
# the mouse with all `mouse.mods` keys held or the vi mode cursor is above it.
#
# If the `post_processing` field is set to `true`, heuristics will be used to
# shorten the match if there are characters likely not to be part of the hint
# (e.g. a trailing `.`). This is most useful for URIs.
#
# Values for `action`:
# - Copy
# Copy the hint's text to the clipboard.
# - Paste
# Paste the hint's text to the terminal or search.
# - Select
# Select the hint's text.
# - MoveViModeCursor
# Move the vi mode cursor to the beginning of the hint.
#enabled:
# - regex: "(ipfs:|ipns:|magnet:|mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)\
# [^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩`]+"
# command: xdg-open
# post_processing: true
# mouse:
# enabled: true
# mods: None
# binding:
# key: U
# mods: Control|Shift
# Mouse bindings
#
# Mouse bindings are specified as a list of objects, much like the key
# bindings further below.
#
# To trigger mouse bindings when an application running within Alacritty
# captures the mouse, the `Shift` modifier is automatically added as a
# requirement.
#
# Each mouse binding will specify a:
#
# - `mouse`:
#
# - Middle
# - Left
# - Right
# - Numeric identifier such as `5`
#
# - `action` (see key bindings)
#
# And optionally:
#
# - `mods` (see key bindings)
#mouse_bindings:
# - { mouse: Middle, action: PasteSelection }
# Key bindings
#
# Key bindings are specified as a list of objects. For example, this is the
# default paste binding:
#
# `- { key: V, mods: Control|Shift, action: Paste }`
#
# Each key binding will specify a:
#
# - `key`: Identifier of the key pressed
#
# - A-Z
# - F1-F24
# - Key0-Key9
#
# A full list with available key codes can be found here:
# https://docs.rs/glutin/*/glutin/event/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`.
#
# Then exactly one of:
#
# - `chars`: Send a byte sequence to the running application
#
# 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.
#
# - `action`: Execute a predefined action
#
# - ToggleViMode
# - SearchForward
# Start searching toward the right of the search origin.
# - SearchBackward
# Start searching toward the left of the search origin.
# - Copy
# - Paste
# - IncreaseFontSize
# - DecreaseFontSize
# - ResetFontSize
# - ScrollPageUp
# - ScrollPageDown
# - ScrollHalfPageUp
# - ScrollHalfPageDown
# - ScrollLineUp
# - ScrollLineDown
# - ScrollToTop
# - ScrollToBottom
# - ClearHistory
# Remove the terminal's scrollback history.
# - Hide
# Hide the Alacritty window.
# - Minimize
# Minimize the Alacritty window.
# - Quit
# Quit Alacritty.
# - ToggleFullscreen
# - SpawnNewInstance
# Spawn a new instance of Alacritty.
# - ClearLogNotice
# Clear Alacritty's UI warning and error notice.
# - ClearSelection
# Remove the active selection.
# - ReceiveChar
# - None
#
# - Vi mode exclusive actions:
#
# - Open
# Perform the action of the first matching hint under the vi mode cursor
# with `mouse.enabled` set to `true`.
# - ToggleNormalSelection
# - ToggleLineSelection
# - ToggleBlockSelection
# - ToggleSemanticSelection
# Toggle semantic selection based on `selection.semantic_escape_chars`.
#
# - Vi mode exclusive cursor motion actions:
#
# - Up
# One line up.
# - Down
# One line down.
# - Left
# One character left.
# - Right
# One character right.
# - First
# First column, or beginning of the line when already at the first column.
# - Last
# Last column, or beginning of the line when already at the last column.
# - FirstOccupied
# First non-empty cell in this terminal row, or first non-empty cell of
# the line when already at the first cell of the row.
# - High
# Top of the screen.
# - Middle
# Center of the screen.
# - Low
# Bottom of the screen.
# - SemanticLeft
# Start of the previous semantically separated word.
# - SemanticRight
# Start of the next semantically separated word.
# - SemanticLeftEnd
# End of the previous semantically separated word.
# - SemanticRightEnd
# End of the next semantically separated word.
# - WordLeft
# Start of the previous whitespace separated word.
# - WordRight
# Start of the next whitespace separated word.
# - WordLeftEnd
# End of the previous whitespace separated word.
# - WordRightEnd
# End of the next whitespace separated word.
# - Bracket
# Character matching the bracket at the cursor's location.
# - SearchNext
# Beginning of the next match.
# - SearchPrevious
# Beginning of the previous match.
# - SearchStart
# Start of the match to the left of the vi mode cursor.
# - SearchEnd
# End of the match to the right of the vi mode cursor.
#
# - Search mode exclusive actions:
# - SearchFocusNext
# Move the focus to the next search match.
# - SearchFocusPrevious
# Move the focus to the previous search match.
# - SearchConfirm
# - SearchCancel
# - SearchClear
# Reset the search regex.
# - SearchDeleteWord
# Delete the last word in the search regex.
# - SearchHistoryPrevious
# Go to the previous regex in the search history.
# - SearchHistoryNext
# Go to the next regex in the search history.
#
# - macOS exclusive actions:
# - ToggleSimpleFullscreen
# Enter fullscreen without occupying another space.
#
# - Linux/BSD exclusive actions:
#
# - CopySelection
# Copy from the selection buffer.
# - PasteSelection
# Paste from the selection buffer.
#
# - `command`: Fork and execute a specified command plus arguments
#
# The `command` field must be a map containing a `program` string and an
# `args` array of command line parameter strings. For example:
# `{ program: "alacritty", args: ["-e", "vttest"] }`
#
# And optionally:
#
# - `mods`: Key modifiers to filter binding actions
#
# - Command
# - Control
# - Option
# - Super
# - Shift
# - Alt
#
# Multiple `mods` can be combined using `|` like this:
# `mods: Control|Shift`.
# Whitespace and capitalization are relevant and must match the example.
#
# - `mode`: Indicate a binding for only specific terminal reported modes
#
# This is mainly used to send applications the correct escape sequences
# when in different modes.
#
# - AppCursor
# - AppKeypad
# - Search
# - Alt
# - Vi
#
# A `~` operator can be used before a mode to apply the binding whenever
# the mode is *not* active, e.g. `~Alt`.
#
# 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 `ReceiveChar` action. Alternatively, you can use `None` for
# a no-op if you do not wish to receive input characters for that binding.
#
# If the same trigger is assigned to multiple actions, all of them are executed
# in the order they were defined in.
#key_bindings:
#- { key: Paste, action: Paste }
#- { key: Copy, action: Copy }
#- { key: L, mods: Control, action: ClearLogNotice }
#- { key: L, mods: Control, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: PageUp, mods: Shift, mode: ~Alt, action: ScrollPageUp, }
#- { key: PageDown, mods: Shift, mode: ~Alt, action: ScrollPageDown }
#- { key: Home, mods: Shift, mode: ~Alt, action: ScrollToTop, }
#- { key: End, mods: Shift, mode: ~Alt, action: ScrollToBottom }
# Vi Mode
#- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
#- { key: Space, mods: Shift|Control, mode: Vi|~Search, action: ScrollToBottom }
#- { key: Escape, mode: Vi|~Search, action: ClearSelection }
#- { key: I, mode: Vi|~Search, action: ToggleViMode }
#- { key: I, mode: Vi|~Search, action: ScrollToBottom }
#- { key: C, mods: Control, mode: Vi|~Search, action: ToggleViMode }
#- { key: Y, mods: Control, mode: Vi|~Search, action: ScrollLineUp }
#- { key: E, mods: Control, mode: Vi|~Search, action: ScrollLineDown }
#- { key: G, mode: Vi|~Search, action: ScrollToTop }
#- { key: G, mods: Shift, mode: Vi|~Search, action: ScrollToBottom }
#- { key: B, mods: Control, mode: Vi|~Search, action: ScrollPageUp }
#- { key: F, mods: Control, mode: Vi|~Search, action: ScrollPageDown }
#- { key: U, mods: Control, mode: Vi|~Search, action: ScrollHalfPageUp }
#- { key: D, mods: Control, mode: Vi|~Search, action: ScrollHalfPageDown }
#- { key: Y, mode: Vi|~Search, action: Copy }
#- { key: Y, mode: Vi|~Search, action: ClearSelection }
#- { key: Copy, mode: Vi|~Search, action: ClearSelection }
#- { key: V, mode: Vi|~Search, action: ToggleNormalSelection }
#- { key: V, mods: Shift, mode: Vi|~Search, action: ToggleLineSelection }
#- { key: V, mods: Control, mode: Vi|~Search, action: ToggleBlockSelection }
#- { key: V, mods: Alt, mode: Vi|~Search, action: ToggleSemanticSelection }
#- { key: Return, mode: Vi|~Search, action: Open }
#- { key: K, mode: Vi|~Search, action: Up }
#- { key: J, mode: Vi|~Search, action: Down }
#- { key: H, mode: Vi|~Search, action: Left }
#- { key: L, mode: Vi|~Search, action: Right }
#- { key: Up, mode: Vi|~Search, action: Up }
#- { key: Down, mode: Vi|~Search, action: Down }
#- { key: Left, mode: Vi|~Search, action: Left }
#- { key: Right, mode: Vi|~Search, action: Right }
#- { key: Key0, mode: Vi|~Search, action: First }
#- { key: Key4, mods: Shift, mode: Vi|~Search, action: Last }
#- { key: Key6, mods: Shift, mode: Vi|~Search, action: FirstOccupied }
#- { key: H, mods: Shift, mode: Vi|~Search, action: High }
#- { key: M, mods: Shift, mode: Vi|~Search, action: Middle }
#- { key: L, mods: Shift, mode: Vi|~Search, action: Low }
#- { key: B, mode: Vi|~Search, action: SemanticLeft }
#- { key: W, mode: Vi|~Search, action: SemanticRight }
#- { key: E, mode: Vi|~Search, action: SemanticRightEnd }
#- { key: B, mods: Shift, mode: Vi|~Search, action: WordLeft }
#- { key: W, mods: Shift, mode: Vi|~Search, action: WordRight }
#- { key: E, mods: Shift, mode: Vi|~Search, action: WordRightEnd }
#- { key: Key5, mods: Shift, mode: Vi|~Search, action: Bracket }
#- { key: Slash, mode: Vi|~Search, action: SearchForward }
#- { key: Slash, mods: Shift, mode: Vi|~Search, action: SearchBackward }
#- { key: N, mode: Vi|~Search, action: SearchNext }
#- { key: N, mods: Shift, mode: Vi|~Search, action: SearchPrevious }
# Search Mode
#- { key: Return, mode: Search|Vi, action: SearchConfirm }
#- { key: Escape, mode: Search, action: SearchCancel }
#- { key: C, mods: Control, mode: Search, action: SearchCancel }
#- { key: U, mods: Control, mode: Search, action: SearchClear }
#- { key: W, mods: Control, mode: Search, action: SearchDeleteWord }
#- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
#- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }
#- { key: Up, mode: Search, action: SearchHistoryPrevious }
#- { key: Down, mode: Search, action: SearchHistoryNext }
#- { key: Return, mode: Search|~Vi, action: SearchFocusNext }
#- { key: Return, mods: Shift, mode: Search|~Vi, action: SearchFocusPrevious }
# (Windows, Linux, and BSD only)
#- { key: V, mods: Control|Shift, mode: ~Vi, action: Paste }
#- { key: C, mods: Control|Shift, action: Copy }
#- { key: F, mods: Control|Shift, mode: ~Search, action: SearchForward }
#- { key: B, mods: Control|Shift, mode: ~Search, action: SearchBackward }
#- { key: C, mods: Control|Shift, mode: Vi|~Search, action: ClearSelection }
#- { key: Insert, mods: Shift, action: PasteSelection }
#- { key: Key0, mods: Control, action: ResetFontSize }
#- { key: Equals, mods: Control, action: IncreaseFontSize }
#- { key: Plus, mods: Control, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Control, action: IncreaseFontSize }
#- { key: Minus, mods: Control, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Control, action: DecreaseFontSize }
# (Windows only)
#- { key: Return, mods: Alt, action: ToggleFullscreen }
# (macOS only)
#- { key: K, mods: Command, mode: ~Vi|~Search, chars: "\x0c" }
#- { key: K, mods: Command, mode: ~Vi|~Search, action: ClearHistory }
#- { key: Key0, mods: Command, action: ResetFontSize }
#- { key: Equals, mods: Command, action: IncreaseFontSize }
#- { key: Plus, mods: Command, action: IncreaseFontSize }
#- { key: NumpadAdd, mods: Command, action: IncreaseFontSize }
#- { key: Minus, mods: Command, action: DecreaseFontSize }
#- { key: NumpadSubtract, mods: Command, action: DecreaseFontSize }
#- { key: V, mods: Command, action: Paste }
#- { key: C, mods: Command, action: Copy }
#- { key: C, mods: Command, mode: Vi|~Search, action: ClearSelection }
#- { key: H, mods: Command, action: Hide }
#- { key: H, mods: Command|Alt, action: HideOtherApplications }
#- { key: M, mods: Command, action: Minimize }
#- { key: Q, mods: Command, action: Quit }
#- { key: W, mods: Command, action: Quit }
#- { key: N, mods: Command, action: SpawnNewInstance }
#- { key: F, mods: Command|Control, action: ToggleFullscreen }
#- { key: F, mods: Command, mode: ~Search, action: SearchForward }
#- { key: B, mods: Command, mode: ~Search, action: SearchBackward }
#debug:
# Display the time it takes to redraw each frame.
#render_timer: false
# Keep the log file after quitting Alacritty.
#persistent_logging: false
# Log level
#
# Values for `log_level`:
# - Off
# - Error
# - Warn
# - Info
# - Debug
# - Trace
#log_level: Warn
# Print all received window events.
#print_events: false

View File

@ -2,15 +2,13 @@
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
# #
# betterlockscreen configuration file. # betterlockscreen configuration file.
# ~/.config/betterlockscreenrc # Options
# default options
display_on=0 display_on=0
span_image=false span_image=false
lock_timeout=300 lock_timeout=300
@ -21,13 +19,12 @@ pixel_scale=10,1000
solid_color=333333 solid_color=333333
wallpaper_cmd="nitrogen --set-zoom-fill ~/.wallpapers/sf.jpg" wallpaper_cmd="nitrogen --set-zoom-fill ~/.wallpapers/sf.jpg"
quiet=false quiet=false
# i3lockcolor_bin="i3lock-color" # Manually set command for i3lock-color
# default theme # Theme
loginbox=00000066 loginbox=00000066
loginshadow=00000000 loginshadow=00000000
locktext="Type password to unlock..." locktext="Type password to unlock..."
font="sans-serif" font="roboto-mono"
ringcolor=ffffffff ringcolor=ffffffff
insidecolor=00000000 insidecolor=00000000
separatorcolor=00000000 separatorcolor=00000000

View File

@ -1,12 +1,12 @@
#! /bin/sh #! /bin/sh
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
#
# BSPWM configuation file. # bspwm configuation file.
# Enable sxhkd keybindings. # Enable sxhkd keybindings.
pgrep -x sxhkd > /dev/null || sxhkd & pgrep -x sxhkd > /dev/null || sxhkd &
@ -14,8 +14,8 @@ pgrep -x sxhkd > /dev/null || sxhkd &
# Launch polybar. # Launch polybar.
$HOME/.config/polybar/launch.sh $HOME/.config/polybar/launch.sh
# Set wallpaper. # Set the last wallpaper.
nitrogen --set-zoom-fill ~/.wallpapers/mountains3.jpg nitrogen --restore
# Load BT manager for keyboard. # Load BT manager for keyboard.
blueman-manager & blueman-manager &
@ -24,9 +24,10 @@ blueman-manager &
nextcloud --background & nextcloud --background &
redshift & redshift &
# Set up 8 bspwm workspaces.
bspc monitor -d I II III IV V VI VII VIII bspc monitor -d I II III IV V VI VII VIII
# Match the bspwm window gap to the gaps of polybar. # Borders, gaps and padding to fit polybar.
bspc config border_width 2 bspc config border_width 2
bspc config window_gap 15 bspc config window_gap 15
bspc config top_padding 50 bspc config top_padding 50
@ -35,7 +36,7 @@ bspc config split_ratio 0.50
bspc config borderless_monocle true bspc config borderless_monocle true
bspc config gapless_monocle true bspc config gapless_monocle true
# bspwm window rules for different applications on my system. # bspwm window rules for applications.
bspc rule -a Gimp desktop='^8' state=floating follow=on bspc rule -a Gimp desktop='^8' state=floating follow=on
bspc rule -a Pavucontrol state=floating bspc rule -a Pavucontrol state=floating
bspc rule -a Lxappearance state=floating bspc rule -a Lxappearance state=floating

View File

@ -1,33 +1,21 @@
#
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
#
# Neofetch configuration file. # Neofetch configuration file.
# See this wiki page for more info:
# https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
print_info() { print_info() {
# info title
# info underline
info "" distro info "" distro
# info "Host" model
# info "" kernel
info "" uptime info "" uptime
info "" packages info "" packages
info "" shell info "" shell
# info "Resolution" resolution
info "" wm info "" wm
# info "" term
# info "" term_font
info "" cpu info "" cpu
info "" gpu info "" gpu
info "" memory info "" memory
# info "" disk
# info cols # info cols
} }

View File

@ -1,11 +1,10 @@
"
" ________ " ________
" | _____ \ " | _____ \
" | | _/ / Pim Nelissen " | | _/ / Pim Nelissen
" | | /__/ p1m@disroot.org " | | /__/ https://pim.wtf/
" | | https://pim.wtf/ " | |
" \_| " \_|
"
" Neovim configuration file. " Neovim configuration file.
" load all plugins. " load all plugins.

View File

@ -1,14 +1,19 @@
# Main # ________
############################# # | _____ \
# | | _/ / Pim Nelissen
# | | /__/ https://pim.wtf/
# | |
# \_|
# Picom config.
# Main settings.
backend = "glx"; backend = "glx";
experimental-backends = true; experimental-backends = true;
vsync = "true"; vsync = "true";
refresh-rate = 0; refresh-rate = 75;
# Opacity
#############################
# Opacity and dimming.
active-opacity = 0.88; active-opacity = 0.88;
inactive-opacity = 0.88; inactive-opacity = 0.88;
frame-opacity = 1.0; frame-opacity = 1.0;
@ -18,14 +23,13 @@ inactive-dim = 0.0
inactive-dim-fixed = 1.0 inactive-dim-fixed = 1.0
focus-exclude = [] focus-exclude = []
# Opacity exceptions.
opacity-rule = [ opacity-rule = [
"100:name *= 'Netflix'", "100:name *= 'Netflix'",
"100:name *= 'RawTherapee'" "100:name *= 'RawTherapee'"
]; ];
# Blur # Blur
#############################
blur: blur:
{ {
method = "dual_kawase"; method = "dual_kawase";
@ -38,12 +42,8 @@ blur:
} }
# Shadows # Shadows
#############################
shadow = false; shadow = false;
# Corners # Corners
#############################
corner-radius = 12; corner-radius = 12;
round-borders = 1; round-borders = 1;

View File

@ -1,11 +1,10 @@
#
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ pim.nelissen@protonmail.com # | | /__/ https://pim.wtf/
# | | # | |
# \_| # \_|
#
# Polybar configuation file. # Polybar configuation file.
[colors] [colors]

View File

@ -1 +1 @@
@theme "~/.local/share/rofi/themes/nord.rasi" @theme "~/.config/rofi/themes/mytheme.rasi"

106
rofi/themes/mytheme.rasi Normal file
View File

@ -0,0 +1,106 @@
/*******************************************************************************
* ROFI VERTICAL THEME USING THE NORD COLOR PALETTE
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
* Nord Project Repo : https://github.com/arcticicestudio/nord
*******************************************************************************/
* {
font: "RobotoMono 11";
nord0: #222222;
nord1: #3b4252;
nord2: #434c5e;
nord3: #4c566a;
nord4: #ffffff;
nord5: #e5e9f0;
nord6: #eceff4;
nord7: #8fbcbb;
nord8: #888;
nord9: #81a1c1;
nord10: #5e81ac;
nord11: #bf616a;
nord12: #d08770;
nord13: #ebcb8b;
nord14: #a3be8c;
nord15: #b48ead;
background-color: transparent;
text-color: @nord4;
accent-color: @nord8;
margin: 2px;
padding: 0px;
spacing: 0px;
}
window {
background-color: @nord0;
border-color: @accent-color;
location: center;
width: 440px;
y-offset: -220px;
border: 2px;
}
inputbar {
padding: 8px 12px;
spacing: 12px;
children: [ prompt, entry ];
}
prompt, entry, element-text, element-icon {
vertical-align: 0.5;
}
prompt {
text-color: @accent-color;
}
listview {
lines: 8;
columns: 1;
fixed-height: false;
}
element {
padding: 8px;
spacing: 8px;
}
element normal urgent {
text-color: @nord13;
}
element normal active {
text-color: @accent-color;
}
element selected {
text-color: @nord0;
}
element selected normal {
background-color: @accent-color;
}
element selected urgent {
background-color: @nord13;
}
element selected active {
background-color: @nord8;
}
element-icon {
size: 0.75em;
}
element-text {
text-color: inherit;
}

View File

@ -1,11 +1,10 @@
#
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
#
# sxhkd keybindings configuration. # sxhkd keybindings configuration.
# lock screen # lock screen

View File

@ -1,3 +1,12 @@
# ________
# | _____ \
# | | _/ / Pim Nelissen
# | | /__/ https://pim.wtf/
# | |
# \_|
# Zathura config.
set recolor true set recolor true
set recolor-lightcolor \#191919 set recolor-lightcolor \#191919
set default-bg \#191919 set default-bg \#191919

View File

@ -1,4 +1,4 @@
#files: 761 version: 5.8.1 #files: 759 version: 5.8.1
_comps=( _comps=(
'-' '_precommand' '-' '_precommand'
@ -793,7 +793,6 @@ _comps=(
'mencal' '_mencal' 'mencal' '_mencal'
'mere' '_mere' 'mere' '_mere'
'merge' '_rcs' 'merge' '_rcs'
'meson' '_meson'
'metaflac' '_flac' 'metaflac' '_flac'
'mformat' '_mtools' 'mformat' '_mtools'
'mgv' '_pspdf' 'mgv' '_pspdf'
@ -883,7 +882,6 @@ _comps=(
'nginx' '_nginx' 'nginx' '_nginx'
'ngrep' '_ngrep' 'ngrep' '_ngrep'
'nice' '_nice' 'nice' '_nice'
'ninja' '_ninja'
'nkf' '_nkf' 'nkf' '_nkf'
'nl' '_nl' 'nl' '_nl'
'nm' '_nm' 'nm' '_nm'
@ -1624,157 +1622,157 @@ bindkey '^[/' _history-complete-older
bindkey '^[~' _bash_complete-word bindkey '^[~' _bash_complete-word
autoload -Uz _alacritty _bluetoothctl _bspc _cargo _curl \ autoload -Uz _alacritty _bluetoothctl _bspc _cargo _curl \
_flameshot _gh _libinput _meson _mpv \ _flameshot _gh _libinput _mpv _polybar \
_ninja _polybar _polybar_msg _pulseaudio _rg \ _polybar_msg _pulseaudio _rg _sv _xbps \
_sv _xbps _xbps_src _xtools _zathura \ _xbps_src _xtools _zathura _cdr _all_labels \
_cdr _all_labels _all_matches _alternative _approximate \ _all_matches _alternative _approximate _arg_compile _arguments \
_arg_compile _arguments _bash_completions _cache_invalid _call_function \ _bash_completions _cache_invalid _call_function _combination _comp_locale \
_combination _comp_locale _complete _complete_debug _complete_help \ _complete _complete_debug _complete_help _complete_help_generic _complete_tag \
_complete_help_generic _complete_tag _correct _correct_filename _correct_word \ _correct _correct_filename _correct_word _describe _description \
_describe _description _dispatch _expand _expand_alias \ _dispatch _expand _expand_alias _expand_word _extensions \
_expand_word _extensions _external_pwds _generic _guard \ _external_pwds _generic _guard _history _history_complete_word \
_history _history_complete_word _ignored _list _main_complete \ _ignored _list _main_complete _match _menu \
_match _menu _message _most_recent_file _multi_parts \ _message _most_recent_file _multi_parts _next_label _next_tags \
_next_label _next_tags _normal _nothing _oldlist \ _normal _nothing _oldlist _pick_variant _prefix \
_pick_variant _prefix _read_comp _regex_arguments _regex_words \ _read_comp _regex_arguments _regex_words _requested _retrieve_cache \
_requested _retrieve_cache _sep_parts _sequence _set_command \ _sep_parts _sequence _set_command _setup _store_cache \
_setup _store_cache _sub_commands _tags _user_expand \ _sub_commands _tags _user_expand _values _wanted \
_values _wanted _acpi _acpitool _alsa-utils \ _acpi _acpitool _alsa-utils _analyseplugin _brctl \
_analyseplugin _brctl _btrfs _chattr _chcon \ _btrfs _chattr _chcon _chrt _cpupower \
_chrt _cpupower _cryptsetup _dkms _e2label \ _cryptsetup _dkms _e2label _ethtool _findmnt \
_ethtool _findmnt _free _fuse_arguments _fuse_values \ _free _fuse_arguments _fuse_values _fusermount _gpasswd \
_fusermount _gpasswd _htop _iconvconfig _ionice \ _htop _iconvconfig _ionice _ipset _iptables \
_ipset _iptables _iwconfig _kpartx _losetup \ _iwconfig _kpartx _losetup _lsattr _lsblk \
_lsattr _lsblk _lsusb _ltrace _mdadm \ _lsusb _ltrace _mdadm _mii-tool _modutils \
_mii-tool _modutils _mondo _networkmanager _opkg \ _mondo _networkmanager _opkg _pidof _pmap \
_pidof _pmap _qdbus _schedtool _selinux_contexts \ _qdbus _schedtool _selinux_contexts _selinux_roles _selinux_types \
_selinux_roles _selinux_types _selinux_users _setsid _slabtop \ _selinux_users _setsid _slabtop _ss _sshfs \
_ss _sshfs _strace _sysstat _tload \ _strace _sysstat _tload _tpb _tracepath \
_tpb _tracepath _tune2fs _uml _valgrind \ _tune2fs _uml _valgrind _vserver _wakeup_capable_devices \
_vserver _wakeup_capable_devices _wipefs _wpa_cli _a2ps \ _wipefs _wpa_cli _a2ps _aap _abcde \
_aap _abcde _absolute_command_paths _ack _adb \ _absolute_command_paths _ack _adb _ansible _ant \
_ansible _ant _antiword _apachectl _apm \ _antiword _apachectl _apm _arch_archives _arch_namespace \
_arch_archives _arch_namespace _arp _arping _asciidoctor \ _arp _arping _asciidoctor _asciinema _at \
_asciinema _at _attr _augeas _avahi \ _attr _augeas _avahi _awk _base64 \
_awk _base64 _basename _bash _baudrates \ _basename _bash _baudrates _baz _beep \
_baz _beep _bibtex _bind_addresses _bison \ _bibtex _bind_addresses _bison _bittorrent _bogofilter \
_bittorrent _bogofilter _bpf_filters _bpython _bzip2 \ _bpf_filters _bpython _bzip2 _bzr _cabal \
_bzr _cabal _cal _calendar _canonical_paths \ _cal _calendar _canonical_paths _cat _ccal \
_cat _ccal _cdcd _cdrdao _cdrecord \ _cdcd _cdrdao _cdrecord _chkconfig _chmod \
_chkconfig _chmod _chown _chroot _chsh \ _chown _chroot _chsh _cksum _clay \
_cksum _clay _cmdambivalent _cmdstring _cmp \ _cmdambivalent _cmdstring _cmp _column _comm \
_column _comm _composer _compress _configure \ _composer _compress _configure _cowsay _cp \
_cowsay _cp _cpio _cplay _crontab \ _cpio _cplay _crontab _cscope _cssh \
_cscope _cssh _ctags_tags _curl _cut \ _ctags_tags _curl _cut _cvs _darcs \
_cvs _darcs _date _date_formats _dates \ _date _date_formats _dates _dbus _dconf \
_dbus _dconf _dd _devtodo _df \ _dd _devtodo _df _dhclient _dict \
_dhclient _dict _dict_words _diff _diff3 \ _dict_words _diff _diff3 _diff_options _diffstat \
_diff_options _diffstat _dig _dir_list _directories \ _dig _dir_list _directories _django _dmesg \
_django _dmesg _dmidecode _dns_types _doas \ _dmidecode _dns_types _doas _domains _dos2unix \
_domains _dos2unix _drill _dsh _dtruss \ _drill _dsh _dtruss _du _dvi \
_du _dvi _ecasound _ed _elfdump \ _ecasound _ed _elfdump _elinks _email_addresses \
_elinks _email_addresses _enscript _entr _env \ _enscript _entr _env _espeak _etags \
_espeak _etags _fakeroot _feh _fetchmail \ _fakeroot _feh _fetchmail _ffmpeg _figlet \
_ffmpeg _figlet _file_modes _file_systems _files \ _file_modes _file_systems _files _find _find_net_interfaces \
_find _find_net_interfaces _finger _flac _flex \ _finger _flac _flex _fmt _fold \
_fmt _fold _fortune _fsh _fuser \ _fortune _fsh _fuser _gcc _gcore \
_gcc _gcore _gdb _gem _genisoimage \ _gdb _gem _genisoimage _getconf _getent \
_getconf _getent _getfacl _getmail _getopt \ _getfacl _getmail _getopt _ghostscript _git \
_ghostscript _git _global _global_tags _gnu_generic \ _global _global_tags _gnu_generic _gnupod _gnutls \
_gnupod _gnutls _go _gpg _gphoto2 \ _go _gpg _gphoto2 _gprof _gradle \
_gprof _gradle _graphicsmagick _grep _groff \ _graphicsmagick _grep _groff _groups _growisofs \
_groups _growisofs _gsettings _guilt _gzip \ _gsettings _guilt _gzip _have_glob_qual _head \
_have_glob_qual _head _hexdump _host _hostname \ _hexdump _host _hostname _hosts _iconv \
_hosts _iconv _id _ifconfig _iftop \ _id _ifconfig _iftop _imagemagick _init_d \
_imagemagick _init_d _initctl _install _iostat \ _initctl _install _iostat _ip _ipsec \
_ip _ipsec _irssi _ispell _java \ _irssi _ispell _java _java_class _joe \
_java_class _joe _join _jq _killall \ _join _jq _killall _knock _kvno \
_knock _kvno _last _ld_debug _ldconfig \ _last _ld_debug _ldconfig _ldd _less \
_ldd _less _lha _libvirt _links \ _lha _libvirt _links _list_files _lldb \
_list_files _lldb _ln _loadkeys _locale \ _ln _loadkeys _locale _localedef _locales \
_localedef _locales _locate _look _lp \ _locate _look _lp _ls _lsof \
_ls _lsof _lua _luarocks _lynx \ _lua _luarocks _lynx _lz4 _lzop \
_lz4 _lzop _mail _mailboxes _make \ _mail _mailboxes _make _man _md5sum \
_man _md5sum _mencal _mh _mime_types \ _mencal _mh _mime_types _mkdir _mkfifo \
_mkdir _mkfifo _mknod _mktemp _module \ _mknod _mktemp _module _monotone _moosic \
_monotone _moosic _mosh _mount _mpc \ _mosh _mount _mpc _mt _mtools \
_mt _mtools _mtr _mutt _mv \ _mtr _mutt _mv _my_accounts _myrepos \
_my_accounts _myrepos _mysql_utils _mysqldiff _ncftp \ _mysql_utils _mysqldiff _ncftp _net_interfaces _netcat \
_net_interfaces _netcat _netstat _newsgroups _nginx \ _netstat _newsgroups _nginx _ngrep _nice \
_ngrep _nice _nkf _nl _nm \ _nkf _nl _nm _nmap _npm \
_nmap _npm _nslookup _numfmt _objdump \ _nslookup _numfmt _objdump _object_files _od \
_object_files _od _openstack _other_accounts _pack \ _openstack _other_accounts _pack _pandoc _paste \
_pandoc _paste _patch _patchutils _path_commands \ _patch _patchutils _path_commands _path_files _pax \
_path_files _pax _pbm _pdf _perforce \ _pbm _pdf _perforce _perl _perl_basepods \
_perl _perl_basepods _perl_modules _perldoc _pgrep \ _perl_modules _perldoc _pgrep _php _picocom \
_php _picocom _pids _pine _ping \ _pids _pine _ping _pkg-config _pkg_instance \
_pkg-config _pkg_instance _pkgadd _pkginfo _pkgrm \ _pkgadd _pkginfo _pkgrm _pon _ports \
_pon _ports _postfix _postgresql _postscript \ _postfix _postgresql _postscript _printenv _printers \
_printenv _printers _process_names _prove _ps \ _process_names _prove _ps _pspdf _psutils \
_pspdf _psutils _pump _pv _pwgen \ _pump _pv _pwgen _pydoc _python \
_pydoc _python _python_modules _qemu _quilt \ _python_modules _qemu _quilt _rake _ranlib \
_rake _ranlib _rar _rclone _rcs \ _rar _rclone _rcs _readelf _readlink \
_readelf _readlink _remote_files _renice _ri \ _remote_files _renice _ri _rlogin _rm \
_rlogin _rm _rmdir _route _rrdtool \ _rmdir _route _rrdtool _rsync _rubber \
_rsync _rubber _ruby _runit _samba \ _ruby _runit _samba _sccs _scons \
_sccs _scons _screen _script _seafile \ _screen _script _seafile _sed _seq \
_sed _seq _service _services _setfacl \ _service _services _setfacl _sh _shasum \
_sh _shasum _showmount _shred _shuf \ _showmount _shred _shuf _shutdown _signals \
_shutdown _signals _sisu _slrn _smartmontools \ _sisu _slrn _smartmontools _socket _sort \
_socket _sort _spamassassin _split _sqlite \ _spamassassin _split _sqlite _sqsh _ssh \
_sqsh _ssh _ssh_hosts _stat _stdbuf \ _ssh_hosts _stat _stdbuf _stgit _stow \
_stgit _stow _strings _strip _stty \ _strings _strip _stty _su _subversion \
_su _subversion _sudo _surfraw _swaks \ _sudo _surfraw _swaks _swanctl _swift \
_swanctl _swift _sys_calls _sysctl _tac \ _sys_calls _sysctl _tac _tail _tar \
_tail _tar _tar_archive _tardy _tcpdump \ _tar_archive _tardy _tcpdump _tcptraceroute _tee \
_tcptraceroute _tee _telnet _terminals _tex \ _telnet _terminals _tex _texi _texinfo \
_texi _texinfo _tidy _tiff _tilde_files \ _tidy _tiff _tilde_files _time_zone _timeout \
_time_zone _timeout _tin _tla _tmux \ _tin _tla _tmux _todo.sh _toilet \
_todo.sh _toilet _top _topgit _totd \ _top _topgit _totd _touch _tput \
_touch _tput _tr _transmission _tree \ _tr _transmission _tree _truss _tty \
_truss _tty _ttys _twidge _twisted \ _ttys _twidge _twisted _umountable _unace \
_umountable _unace _uname _unexpand _uniq \ _uname _unexpand _uniq _unison _units \
_unison _units _uptime _urls _user_admin \ _uptime _urls _user_admin _user_at_host _users \
_user_at_host _users _users_on _vcsh _vim \ _users_on _vcsh _vim _visudo _vmstat \
_visudo _vmstat _vorbis _vpnc _w \ _vorbis _vpnc _w _w3m _watch \
_w3m _watch _wc _webbrowser _wget \ _wc _webbrowser _wget _whereis _who \
_whereis _who _whois _wiggle _xargs \ _whois _wiggle _xargs _xmlsoft _xmlstarlet \
_xmlsoft _xmlstarlet _xmms2 _xxd _xz \ _xmms2 _xxd _xz _yafc _yodl \
_yafc _yodl _yp _zcat _zdump \ _yp _zcat _zdump _zfs _zfs_dataset \
_zfs _zfs_dataset _zfs_keysource_props _zfs_pool _zip \ _zfs_keysource_props _zfs_pool _zip _zpool _zsh \
_zpool _zsh _acroread _code _dcop \ _acroread _code _dcop _eog _evince \
_eog _evince _geany _gnome-gv _gqview \ _geany _gnome-gv _gqview _gv _kdeconnect \
_gv _kdeconnect _kfmclient _matlab _mozilla \ _kfmclient _matlab _mozilla _mplayer _mupdf \
_mplayer _mupdf _nautilus _nedit _netscape \ _nautilus _nedit _netscape _okular _pdftk \
_okular _pdftk _qiv _rdesktop _setxkbmap \ _qiv _rdesktop _setxkbmap _sublimetext _urxvt \
_sublimetext _urxvt _vnc _x_arguments _x_borderwidth \ _vnc _x_arguments _x_borderwidth _x_color _x_colormapid \
_x_color _x_colormapid _x_cursor _x_display _x_extension \ _x_cursor _x_display _x_extension _x_font _x_geometry \
_x_font _x_geometry _x_keysym _x_locale _x_modifier \ _x_keysym _x_locale _x_modifier _x_name _x_resource \
_x_name _x_resource _x_selection_timeout _x_title _x_utils \ _x_selection_timeout _x_title _x_utils _x_visual _x_window \
_x_visual _x_window _xauth _xautolock _xclip \ _xauth _xautolock _xclip _xdvi _xfig \
_xdvi _xfig _xft_fonts _xloadimage _xmodmap \ _xft_fonts _xloadimage _xmodmap _xournal _xpdf \
_xournal _xpdf _xrandr _xscreensaver _xset \ _xrandr _xscreensaver _xset _xt_arguments _xt_session_id \
_xt_arguments _xt_session_id _xterm _xv _xwit \ _xterm _xv _xwit _zeal _add-zle-hook-widget \
_zeal _add-zle-hook-widget _add-zsh-hook _alias _aliases \ _add-zsh-hook _alias _aliases _arrays _assign \
_arrays _assign _autocd _bindkey _brace_parameter \ _autocd _bindkey _brace_parameter _builtin _cd \
_builtin _cd _command _command_names _compadd \ _command _command_names _compadd _compdef _completers \
_compdef _completers _condition _default _delimiters \ _condition _default _delimiters _directory_stack _dirs \
_directory_stack _dirs _disable _dynamic_directory_name _echotc \ _disable _dynamic_directory_name _echotc _echoti _emulate \
_echoti _emulate _enable _equal _exec \ _enable _equal _exec _fc _file_descriptors \
_fc _file_descriptors _first _functions _globflags \ _first _functions _globflags _globqual_delims _globquals \
_globqual_delims _globquals _hash _history_modifiers _in_vared \ _hash _history_modifiers _in_vared _jobs _jobs_bg \
_jobs _jobs_bg _jobs_builtin _jobs_fg _kill \ _jobs_builtin _jobs_fg _kill _limit _limits \
_limit _limits _math _math_params _mere \ _math _math_params _mere _module_math_func _options \
_module_math_func _options _options_set _options_unset _parameter \ _options_set _options_unset _parameter _parameters _precommand \
_parameters _precommand _print _prompt _ps1234 \ _print _prompt _ps1234 _read _redirect \
_read _redirect _run-help _sched _set \ _run-help _sched _set _setopt _source \
_setopt _source _strftime _subscript _suffix_alias_files \ _strftime _subscript _suffix_alias_files _tcpsys _tilde \
_tcpsys _tilde _trap _ttyctl _typeset \ _trap _ttyctl _typeset _ulimit _unhash \
_ulimit _unhash _user_math_func _value _vared \ _user_math_func _value _vared _vars _wait \
_vars _wait _which _widgets _zargs \ _which _widgets _zargs _zattr _zcalc \
_zattr _zcalc _zcalc_line _zcompile _zed \ _zcalc_line _zcompile _zed _zftp _zle \
_zftp _zle _zmodload _zmv _zparseopts \ _zmodload _zmv _zparseopts _zpty _zsh-mime-handler \
_zpty _zsh-mime-handler _zsocket _zstyle _ztodo _zsocket _zstyle _ztodo
autoload -Uz +X _call_program autoload -Uz +X _call_program
typeset -gUa _comp_assocs typeset -gUa _comp_assocs

View File

@ -1,13 +1,14 @@
#
# ________ # ________
# | _____ \ # | _____ \
# | | _/ / Pim Nelissen # | | _/ / Pim Nelissen
# | | /__/ p1m@disroot.org # | | /__/ https://pim.wtf/
# | | https://pim.wtf/ # | |
# \_| # \_|
#
# Zsh configuration file.
# Zshell configuration.
# Terminal prompt in minimalist format.
PS1="%F{green}%~%f %F{white}»%f " PS1="%F{green}%~%f %F{white}»%f "
# History settings. # History settings.
@ -25,7 +26,7 @@ autoload -Uz compinit
compinit compinit
_comp_options+=(globdots) _comp_options+=(globdots)
# Vi mode # Vi mode toggle.
bindkey -v bindkey -v
# Vi keys for the tab completion menu. # Vi keys for the tab completion menu.
@ -35,11 +36,14 @@ bindkey -M menuselect 'l' vi-forward-char
bindkey -M menuselect 'j' vi-down-line-or-history bindkey -M menuselect 'j' vi-down-line-or-history
bindkey -v '^?' backward-delete-char bindkey -v '^?' backward-delete-char
# Aliases # Aliases.
alias ls='ls --color=auto' alias ls='ls --color=auto'
alias ll='ls -l --color=auto'
# Power aliases.
alias shutdown='sudo shutdown -h now' alias shutdown='sudo shutdown -h now'
alias sleep='betterlockscreen -s -l dim && sudo zzz' alias sleep='betterlockscreen -s -l dim && sudo zzz'
alias reboot='sudo reboot' alias reboot='sudo reboot'
# Extensions # Load extensions.
source ~/.config/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.config/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh