diff options
author | Thanos Apollo <[email protected]> | 2023-05-05 16:38:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-05-05 16:38:48 +0300 |
commit | b6c2589eae30877cc5e362e06f3d480a0aee2e81 (patch) | |
tree | b2158ab099ff4bf3c1523ddc658740f9ba05715e | |
parent | 5d97d357864c5e7b973df45bf19be944c55d7093 (diff) |
remove old files
111 files changed, 0 insertions, 7364 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml deleted file mode 100755 index 343ae34..0000000 --- a/.config/alacritty/alacritty.yml +++ /dev/null @@ -1,878 +0,0 @@ -# Configuration for Alacritty, the GPU enhanced terminal emulator. - -# Import additional configuration files -# -# 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: - # 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: alacritty - -#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: - # x: 0 - # y: 0 - - # 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 - - # 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. - opacity: 1.0 - - # 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 - -#scrolling: - # Maximum number of lines in the scrollback buffer. - # Specifying '0' will disable scrolling. - #history: 10000 - - # Scrolling distance multiplier. - #multiplier: 3 - -# Font configuration -#font: - # Normal (roman) font face - #normal: - # Font family - # - # Default: - # - (macOS) Menlo - # - (Linux/BSD) 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 - - # 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 - #size: 11.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 - - # Use built-in font for box drawing characters. - # - # If `true`, Alacritty will use a custom built-in font for box drawing - # characters (Unicode points 2500 - 259f). - # - #builtin_box_drawing: true - -# If `true`, bold text is drawn using the bright color variants. -#draw_bold_text_with_bright_colors: false - -# Colors (Tomorrow Night) -#colors: - # Default colors - #primary: - #background: '#1d1f21' - # 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 - # - # Colors for the cursor when the vi mode is active. - # - # 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: [] - - # Transparent cell backgrounds - # - # Whether or not `window.opacity` applies to all cell backgrounds or only to - # the default background. When set to `true` all cells will be transparent - # regardless of their background color. - #transparent_background_colors: false - -# 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 of 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 - -#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 - -# Offer IPC using `alacritty msg` (unix only) -#ipc_socket: 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 for actions not exclusive to mouse mode) -# -# - Mouse exclusive actions: -# -# - ExpandSelection -# Expand the selection to the current mouse cursor location. -# -# And optionally: -# -# - `mods` (see key bindings) -#mouse_bindings: -# - { mouse: Right, action: ExpandSelection } -# - { mouse: Right, mods: Control, action: ExpandSelection } -# - { mouse: Middle, mode: ~Vi, 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. -# - CreateNewWindow -# Create a new Alacritty window from the current process. -# - 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
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/Cobalt2.yaml b/.config/alacritty/colorschemes/Cobalt2.yaml deleted file mode 100755 index 576a502..0000000 --- a/.config/alacritty/colorschemes/Cobalt2.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# From the famous Cobalt2 sublime theme -# Source : https://github.com/wesbos/cobalt2/tree/master/Cobalt2 -colors: - # Default colors - primary: - background: '0x122637' - foreground: '0xffffff' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0x122637' - cursor: '0xf0cb09' - - # Normal colors - normal: - black: '0x000000' - red: '0xff0000' - green: '0x37dd21' - yellow: '0xfee409' - blue: '0x1460d2' - magenta: '0xff005d' - cyan: '0x00bbbb' - white: '0xbbbbbb' - - # Bright colors - bright: - black: '0x545454' - red: '0xf40d17' - green: '0x3bcf1d' - yellow: '0xecc809' - blue: '0x5555ff' - magenta: '0xff55ff' - cyan: '0x6ae3f9' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/afterglow.yaml b/.config/alacritty/colorschemes/afterglow.yaml deleted file mode 100755 index 44a97d8..0000000 --- a/.config/alacritty/colorschemes/afterglow.yaml +++ /dev/null @@ -1,48 +0,0 @@ -colors: - # Default colors - primary: - background: '0x2c2c2c' - foreground: '0xd6d6d6' - - dim_foreground: '0xdbdbdb' - bright_foreground: '0xd9d9d9' - dim_background: '0x202020' # not sure - bright_background: '0x3a3a3a' # not sure - - # Cursor colors - cursor: - text: '0x2c2c2c' - cursor: '0xd9d9d9' - - # Normal colors - normal: - black: '0x1c1c1c' - red: '0xbc5653' - green: '0x909d63' - yellow: '0xebc17a' - blue: '0x7eaac7' - magenta: '0xaa6292' - cyan: '0x86d3ce' - white: '0xcacaca' - - # Bright colors - bright: - black: '0x636363' - red: '0xbc5653' - green: '0x909d63' - yellow: '0xebc17a' - blue: '0x7eaac7' - magenta: '0xaa6292' - cyan: '0x86d3ce' - white: '0xf7f7f7' - - # Dim colors - dim: - black: '0x232323' - red: '0x74423f' - green: '0x5e6547' - yellow: '0x8b7653' - blue: '0x556b79' - magenta: '0x6e4962' - cyan: '0x5c8482' - white: '0x828282' diff --git a/.config/alacritty/colorschemes/argonaut.yaml b/.config/alacritty/colorschemes/argonaut.yaml deleted file mode 100755 index db7678b..0000000 --- a/.config/alacritty/colorschemes/argonaut.yaml +++ /dev/null @@ -1,32 +0,0 @@ -colors: - # Default colors - primary: - background: '0x292C3E' - foreground: '0xEBEBEB' - - # Cursor colors - cursor: - text: '0xFF261E' - cursor: '0xFF261E' - - # Normal colors - normal: - black: '0x0d0d0d' - red: '0xFF301B' - green: '0xA0E521' - yellow: '0xFFC620' - blue: '0x1BA6FA' - magenta: '0x8763B8' - cyan: '0x21DEEF' - white: '0xEBEBEB' - - # Bright colors - bright: - black: '0x6D7070' - red: '0xFF4352' - green: '0xB8E466' - yellow: '0xFFD750' - blue: '0x1BA6FA' - magenta: '0xA578EA' - cyan: '0x73FBF1' - white: '0xFEFEF8' diff --git a/.config/alacritty/colorschemes/atom_one_light.yaml b/.config/alacritty/colorschemes/atom_one_light.yaml deleted file mode 100755 index 1718fd9..0000000 --- a/.config/alacritty/colorschemes/atom_one_light.yaml +++ /dev/null @@ -1,24 +0,0 @@ -colors: - primary: - background: '0xf8f8f8' - foreground: '0x2a2b33' - - normal: - black: '0x000000' - red: '0xde3d35' - green: '0x3e953a' - yellow: '0xd2b67b' - blue: '0x2f5af3' - magenta: '0xa00095' - cyan: '0x3e953a' - white: '0xbbbbbb' - - bright: - black: '0x000000' - red: '0xde3d35' - green: '0x3e953a' - yellow: '0xd2b67b' - blue: '0x2f5af3' - magenta: '0xa00095' - cyan: '0x3e953a' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/ayu_dark.yaml b/.config/alacritty/colorschemes/ayu_dark.yaml deleted file mode 100755 index c0fa142..0000000 --- a/.config/alacritty/colorschemes/ayu_dark.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Ayu Dark) -colors: - # Default colors - primary: - background: '0x0A0E14' - foreground: '0xB3B1AD' - - # Normal colors - normal: - black: '0x01060E' - red: '0xEA6C73' - green: '0x91B362' - yellow: '0xF9AF4F' - blue: '0x53BDFA' - magenta: '0xFAE994' - cyan: '0x90E1C6' - white: '0xC7C7C7' - - # Bright colors - bright: - black: '0x686868' - red: '0xF07178' - green: '0xC2D94C' - yellow: '0xFFB454' - blue: '0x59C2FF' - magenta: '0xFFEE99' - cyan: '0x95E6CB' - white: '0xFFFFFF'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/base16_default_dark.yaml b/.config/alacritty/colorschemes/base16_default_dark.yaml deleted file mode 100755 index 28aa143..0000000 --- a/.config/alacritty/colorschemes/base16_default_dark.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Colors (Base16 Default Dark) -colors: - # Default colors - primary: - background: '0x181818' - foreground: '0xd8d8d8' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0xd8d8d8' - cursor: '0xd8d8d8' - - # Normal colors - normal: - black: '0x181818' - red: '0xab4642' - green: '0xa1b56c' - yellow: '0xf7ca88' - blue: '0x7cafc2' - magenta: '0xba8baf' - cyan: '0x86c1b9' - white: '0xd8d8d8' - - # Bright colors - bright: - black: '0x585858' - red: '0xab4642' - green: '0xa1b56c' - yellow: '0xf7ca88' - blue: '0x7cafc2' - magenta: '0xba8baf' - cyan: '0x86c1b9' - white: '0xf8f8f8'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/blood_moon.yaml b/.config/alacritty/colorschemes/blood_moon.yaml deleted file mode 100755 index 9ae3be1..0000000 --- a/.config/alacritty/colorschemes/blood_moon.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Blood Moon) -colors: - # Default colors - primary: - background: '0x10100E' - foreground: '0xC6C6C4' - - # Normal colors - normal: - black: '0x10100E' - red: '0xC40233' - green: '0x009F6B' - yellow: '0xFFD700' - blue: '0x0087BD' - magenta: '0x9A4EAE' - cyan: '0x20B2AA' - white: '0xC6C6C4' - - # Bright colors - bright: - black: '0x696969' - red: '0xFF2400' - green: '0x03C03C' - yellow: '0xFDFF00' - blue: '0x007FFF' - magenta: '0xFF1493' - cyan: '0x00CCCC' - white: '0xFFFAFA'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/breeze.yaml b/.config/alacritty/colorschemes/breeze.yaml deleted file mode 100755 index 62bad22..0000000 --- a/.config/alacritty/colorschemes/breeze.yaml +++ /dev/null @@ -1,44 +0,0 @@ -# KDE Breeze (Ported from Konsole) -colors: - # Default colors - primary: - background: '0x232627' - foreground: '0xfcfcfc' - - dim_foreground: '0xeff0f1' - bright_foreground: '0xffffff' - dim_background: '0x31363b' - bright_background: '0x000000' - - # Normal colors - normal: - black: '0x232627' - red: '0xed1515' - green: '0x11d116' - yellow: '0xf67400' - blue: '0x1d99f3' - magenta: '0x9b59b6' - cyan: '0x1abc9c' - white: '0xfcfcfc' - - # Bright colors - bright: - black: '0x7f8c8d' - red: '0xc0392b' - green: '0x1cdc9a' - yellow: '0xfdbc4b' - blue: '0x3daee9' - magenta: '0x8e44ad' - cyan: '0x16a085' - white: '0xffffff' - - # Dim colors - dim: - black: '0x31363b' - red: '0x783228' - green: '0x17a262' - yellow: '0xb65619' - blue: '0x1b668f' - magenta: '0x614a73' - cyan: '0x186c60' - white: '0x63686d' diff --git a/.config/alacritty/colorschemes/campbell.yaml b/.config/alacritty/colorschemes/campbell.yaml deleted file mode 100755 index 95dba05..0000000 --- a/.config/alacritty/colorschemes/campbell.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Campbell (Windows 10 default) -colors: - # Default colors - primary: - background: '0x0c0c0c' - foreground: '0xcccccc' - - # Normal colors - normal: - black: '0x0c0c0c' - red: '0xc50f1f' - green: '0x13a10e' - yellow: '0xc19c00' - blue: '0x0037da' - magenta: '0x881798' - cyan: '0x3a96dd' - white: '0xcccccc' - - # Bright colors - bright: - black: '0x767676' - red: '0xe74856' - green: '0x16c60c' - yellow: '0xf9f1a5' - blue: '0x3b78ff' - magenta: '0xb4009e' - cyan: '0x61d6d6' - white: '0xf2f2f2' diff --git a/.config/alacritty/colorschemes/challenger_deep.yaml b/.config/alacritty/colorschemes/challenger_deep.yaml deleted file mode 100755 index 4030163..0000000 --- a/.config/alacritty/colorschemes/challenger_deep.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Colors (Challenger Deep) -colors: - # Default colors - primary: - background: '0x1e1c31' - foreground: '0xcbe1e7' - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0xff271d' - cursor: '0xfbfcfc' - # Normal colors - normal: - black: '0x141228' - red: '0xff5458' - green: '0x62d196' - yellow: '0xffb378' - blue: '0x65b2ff' - magenta: '0x906cff' - cyan: '0x63f2f1' - white: '0xa6b3cc' - # Bright colors - bright: - black: '0x565575' - red: '0xff8080' - green: '0x95ffa4' - yellow: '0xffe9aa' - blue: '0x91ddff' - magenta: '0xc991e1' - cyan: '0xaaffe4' - white: '0xcbe3e7' - diff --git a/.config/alacritty/colorschemes/cyber_punk_neon.yaml b/.config/alacritty/colorschemes/cyber_punk_neon.yaml deleted file mode 100755 index 5292ddd..0000000 --- a/.config/alacritty/colorschemes/cyber_punk_neon.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Cyber Punk Neon -# Source: https://github.com/Roboron3042/Cyberpunk-Neon -colors: - # Default colors - primary: - background: "0x000b1e" - foreground: "0x0abdc6" - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: "0x000b1e" - cursor: "0x0abdc6" - - # Normal colors - normal: - black: "0x123e7c" - red: "0xff0000" - green: "0xd300c4" - yellow: "0xf57800" - blue: "0x123e7c" - magenta: "0x711c91" - cyan: "0x0abdc6" - white: "0xd7d7d5" - - # Bright colors - bright: - black: "0x1c61c2" - red: "0xff0000" - green: "0xd300c4" - yellow: "0xf57800" - blue: "0x00ff00" - magenta: "0x711c91" - cyan: "0x0abdc6" - white: "0xd7d7d5" diff --git a/.config/alacritty/colorschemes/darcula.yaml b/.config/alacritty/colorschemes/darcula.yaml deleted file mode 100755 index 507aab1..0000000 --- a/.config/alacritty/colorschemes/darcula.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Darcula) -colors: - # Default colors - primary: - background: '0x282a36' - foreground: '0xf8f8f2' - - # Normal colors - normal: - black: '0x000000' - red: '0xff5555' - green: '0x50fa7b' - yellow: '0xf1fa8c' - blue: '0xcaa9fa' - magenta: '0xff79c6' - cyan: '0x8be9fd' - white: '0xbfbfbf' - - # Bright colors - bright: - black: '0x282a35' - red: '0xff6e67' - green: '0x5af78e' - yellow: '0xf4f99d' - blue: '0xcaa9fa' - magenta: '0xff92d0' - cyan: '0x9aedfe' - white: '0xe6e6e6' diff --git a/.config/alacritty/colorschemes/dark_pastels.yaml b/.config/alacritty/colorschemes/dark_pastels.yaml deleted file mode 100755 index 97eb7f9..0000000 --- a/.config/alacritty/colorschemes/dark_pastels.yaml +++ /dev/null @@ -1,29 +0,0 @@ - -# Colors (Konsole's Dark Pastels) -colors: - # Default colors - primary: - background: '0x2C2C2C' - foreground: '0xDCDCCC' - - # Normal colors - normal: - black: '0x3F3F3F' - red: '0x705050' - green: '0x60B48A' - yellow: '0xDFAF8F' - blue: '0x9AB8D7' - magenta: '0xDC8CC3' - cyan: '0x8CD0D3' - white: '0xDCDCCC' - - # Bright colors - bright: - black: '0x709080' - red: '0xDCA3A3' - green: '0x72D5A3' - yellow: '0xF0DFAF' - blue: '0x94BFF3' - magenta: '0xEC93D3' - cyan: '0x93E0E3' - white: '0xFFFFFF' diff --git a/.config/alacritty/colorschemes/doom_one.yml b/.config/alacritty/colorschemes/doom_one.yml deleted file mode 100755 index cdbdaf4..0000000 --- a/.config/alacritty/colorschemes/doom_one.yml +++ /dev/null @@ -1,17 +0,0 @@ -# Colors (Doom One) -colors: - # Default colors - primary: - background: '0x282c34' - foreground: '0xbbc2cf' - - # Normal colors - normal: - black: '0x282c34' - red: '0xff6c6b' - green: '0x98be65' - yellow: '0xecbe7b' - blue: '0x51afef' - magenta: '0xc678dd' - cyan: '0x46d9ff' - white: '0xbbc2cf' diff --git a/.config/alacritty/colorschemes/dracula.yaml b/.config/alacritty/colorschemes/dracula.yaml deleted file mode 100755 index f5026c1..0000000 --- a/.config/alacritty/colorschemes/dracula.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Dracula) -colors: - # Default colors - primary: - background: '0x282a36' - foreground: '0xf8f8f2' - - # Normal colors - normal: - black: '0x000000' - red: '0xff5555' - green: '0x50fa7b' - yellow: '0xf1fa8c' - blue: '0xbd93f9' - magenta: '0xff79c6' - cyan: '0x8be9fd' - white: '0xbbbbbb' - - # Bright colors - bright: - black: '0x555555' - red: '0xff5555' - green: '0x50fa7b' - yellow: '0xf1fa8c' - blue: '0xcaa9fa' - magenta: '0xff79c6' - cyan: '0x8be9fd' - white: '0xffffff'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/falcon.yaml b/.config/alacritty/colorschemes/falcon.yaml deleted file mode 100755 index 33c267b..0000000 --- a/.config/alacritty/colorschemes/falcon.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# falcon colorscheme for alacritty -# by fenetikm, https://github.com/fenetikm/falcon -colors: - # Default colors - primary: - background: '0x020221' - foreground: '0xb4b4b9' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0x020221' - cursor: '0xffe8c0' - - # Normal colors - normal: - black: '0x000004' - red: '0xff3600' - green: '0x718e3f' - yellow: '0xffc552' - blue: '0x635196' - magenta: '0xff761a' - cyan: '0x34bfa4' - white: '0xb4b4b9' - - # Bright colors - bright: - black: '0x020221' - red: '0xff8e78' - green: '0xb1bf75' - yellow: '0xffd392' - blue: '0x99a4bc' - magenta: '0xffb07b' - cyan: '0x8bccbf' - white: '0xf8f8ff' diff --git a/.config/alacritty/colorschemes/flat_remix.yml b/.config/alacritty/colorschemes/flat_remix.yml deleted file mode 100755 index 5105553..0000000 --- a/.config/alacritty/colorschemes/flat_remix.yml +++ /dev/null @@ -1,25 +0,0 @@ -colors: - primary: - background: '0x272a34' - foreground: '0xFFFFFF' - - normal: - black: '0x1F2229' - red: '0xEC0101' - green: '0x47D4B9' - yellow: '0xFF8A18' - blue: '0x277FFF' - magenta: '0xD71655' - cyan: '0x05A1F7' - white: '0xFFFFFF' - - - bright: - black: '0x1F2229' - red: '0xD41919' - green: '0x5EBDAB' - yellow: '0xFEA44C' - blue: '0x367bf0' - magenta: '0xBF2E5D' - cyan: '0x49AEE6' - white: '0xFFFFFF' diff --git a/.config/alacritty/colorschemes/gotham.yaml b/.config/alacritty/colorschemes/gotham.yaml deleted file mode 100755 index f58f9a3..0000000 --- a/.config/alacritty/colorschemes/gotham.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Gotham) -colors: - # Default colors - primary: - background: '0x0a0f14' - foreground: '0x98d1ce' - - # Normal colors - normal: - black: '0x0a0f14' - red: '0xc33027' - green: '0x26a98b' - yellow: '0xedb54b' - blue: '0x195465' - magenta: '0x4e5165' - cyan: '0x33859d' - white: '0x98d1ce' - - # Bright colors - bright: - black: '0x10151b' - red: '0xd26939' - green: '0x081f2d' - yellow: '0x245361' - blue: '0x093748' - magenta: '0x888ba5' - cyan: '0x599caa' - white: '0xd3ebe9'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/gruvbox_dark.yaml b/.config/alacritty/colorschemes/gruvbox_dark.yaml deleted file mode 100755 index d9c604f..0000000 --- a/.config/alacritty/colorschemes/gruvbox_dark.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Colors (Gruvbox dark) -colors: - # Default colors - primary: - # hard contrast: background = '0x1d2021' - background: '0x282828' - # soft contrast: background = '0x32302f' - foreground: '0xebdbb2' - - # Normal colors - normal: - black: '0x282828' - red: '0xcc241d' - green: '0x98971a' - yellow: '0xd79921' - blue: '0x458588' - magenta: '0xb16286' - cyan: '0x689d6a' - white: '0xa89984' - - # Bright colors - bright: - black: '0x928374' - red: '0xfb4934' - green: '0xb8bb26' - yellow: '0xfabd2f' - blue: '0x83a598' - magenta: '0xd3869b' - cyan: '0x8ec07c' - white: '0xebdbb2'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/gruvbox_light.yaml b/.config/alacritty/colorschemes/gruvbox_light.yaml deleted file mode 100755 index d679c3c..0000000 --- a/.config/alacritty/colorschemes/gruvbox_light.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Colors (Gruvbox light) -colors: - # Default colors - primary: - # hard contrast: background = '0xf9f5d7' - background: '0xfbf1c7' - # soft contrast: background = '0xf2e5bc' - foreground: '0x3c3836' - - # Normal colors - normal: - black: '0xfbf1c7' - red: '0xcc241d' - green: '0x98971a' - yellow: '0xd79921' - blue: '0x458588' - magenta: '0xb16286' - cyan: '0x689d6a' - white: '0x7c6f64' - - # Bright colors - bright: - black: '0x928374' - red: '0x9d0006' - green: '0x79740e' - yellow: '0xb57614' - blue: '0x076678' - magenta: '0x8f3f71' - cyan: '0x427b58' - white: '0x3c3836'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/gruvbox_material.yml b/.config/alacritty/colorschemes/gruvbox_material.yml deleted file mode 100755 index 397b03f..0000000 --- a/.config/alacritty/colorschemes/gruvbox_material.yml +++ /dev/null @@ -1,26 +0,0 @@ -# Colors (Gruvbox Material Dark Medium) -colors: - primary: - background: '0x282828' - foreground: '0xdfbf8e' - - normal: - black: '0x665c54' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xe78a4e' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xdfbf8e' - - bright: - black: '0x928374' - red: '0xea6962' - green: '0xa9b665' - yellow: '0xe3a84e' - blue: '0x7daea3' - magenta: '0xd3869b' - cyan: '0x89b482' - white: '0xdfbf8e' - diff --git a/.config/alacritty/colorschemes/high_contrast.yaml b/.config/alacritty/colorschemes/high_contrast.yaml deleted file mode 100755 index cd4cdb7..0000000 --- a/.config/alacritty/colorschemes/high_contrast.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Colors (High Contrast) -colors: - # Default colors - primary: - background: '0x444444' - foreground: '0xdddddd' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0xaaaaaa' - cursor: '0xffffff' - - # Normal colors - normal: - black: '0x000000' - red: '0xff0000' - green: '0x00ff00' - yellow: '0xffff00' - blue: '0x0000ff' - magenta: '0xff00ff' - cyan: '0x00ffff' - white: '0xffffff' - - # Bright colors - bright: - black: '0x000000' - red: '0xff0000' - green: '0x00ff00' - yellow: '0xffff00' - blue: '0x0000ff' - magenta: '0xff00ff' - cyan: '0x00ffff' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/horizon-dark.yaml b/.config/alacritty/colorschemes/horizon-dark.yaml deleted file mode 100755 index d6e29fd..0000000 --- a/.config/alacritty/colorschemes/horizon-dark.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Horizon Dark) -colors: - # Primary colors - primary: - background: '0x1c1e26' - foreground: '0xe0e0e0' - - # Normal colors - normal: - black: '0x16161c' - red: '0xe95678' - green: '0x29d398' - yellow: '0xfab795' - blue: '0x26bbd9' - magenta: '0xee64ac' - cyan: '0x59e1e3' - white: '0xd5d8da' - - # Bright colors - bright: - black: '0x5b5858' - red: '0xec6a88' - green: '0x3fdaa4' - yellow: '0xfbc3a7' - blue: '0x3fc4de' - magenta: '0xf075b5' - cyan: '0x6be4e6' - white: '0xd5d8da' diff --git a/.config/alacritty/colorschemes/hyper.yaml b/.config/alacritty/colorschemes/hyper.yaml deleted file mode 100755 index 5b84d66..0000000 --- a/.config/alacritty/colorschemes/hyper.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Colors (Hyper) -colors: - # Default colors - primary: - background: '0x000000' - foreground: '0xffffff' - cursor: - text: '0xF81CE5' - cursor: '0xffffff' - - # Normal colors - normal: - black: '0x000000' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' - white: '0xd0d0d0' - - # Bright colors - bright: - black: '0x808080' - red: '0xfe0100' - green: '0x33ff00' - yellow: '0xfeff00' - blue: '0x0066ff' - magenta: '0xcc00ff' - cyan: '0x00ffff' - white: '0xFFFFFF'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/iterm.yaml b/.config/alacritty/colorschemes/iterm.yaml deleted file mode 100755 index 2c31223..0000000 --- a/.config/alacritty/colorschemes/iterm.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (iTerm 2 default theme) -colors: - # Default colors - primary: - background: '0x101421' - foreground: '0xfffbf6' - - # Normal colors - normal: - black: '0x2e2e2e' - red: '0xeb4129' - green: '0xabe047' - yellow: '0xf6c744' - blue: '0x47a0f3' - magenta: '0x7b5cb0' - cyan: '0x64dbed' - white: '0xe5e9f0' - - # Bright colors - bright: - black: '0x565656' - red: '0xec5357' - green: '0xc0e17d' - yellow: '0xf9da6a' - blue: '0x49a4f8' - magenta: '0xa47de9' - cyan: '0x99faf2' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/konsole_linux.yaml b/.config/alacritty/colorschemes/konsole_linux.yaml deleted file mode 100755 index b4f3e2f..0000000 --- a/.config/alacritty/colorschemes/konsole_linux.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Color theme ported from Konsole: Linux colors -colors: - primary: - foreground: '0xe3e3e3' - bright_foreground: '0xffffff' - dim_foreground: '0xe3e3e3' - background: '0x1f1f1f' - bright_background: '0x686868' # not sure - dim_background: '0x1f1f1f' # not sure - - cursor: - text: '0x191622' - cursor: '0xf8f8f2' - - search: - matches: - foreground: '0xb2b2b2' - background: '0xb26818' - focused_match: - foreground: CellBackground - background: CellForeground - - normal: - black: '0x000000' - red: '0xb21818' - green: '0x18b218' - yellow: '0xb26818' - blue: '0x1818b2' - magenta: '0xb218b2' - cyan: '0x18b2b2' - white: '0xb2b2b2' - - bright: - black: '0x686868' - red: '0xff5454' - green: '0x54ff54' - yellow: '0xffff54' - blue: '0x5454ff' - magenta: '0xff54ff' - cyan: '0x54ffff' - white: '0xffffff' - - dim: - black: '0x000000' - red: '0xb21818' - green: '0x18b218' - yellow: '0xb26818' - blue: '0x1818b2' - magenta: '0xb218b2' - cyan: '0x18b2b2' - white: '0xb2b2b2' diff --git a/.config/alacritty/colorschemes/low_contrast.yaml b/.config/alacritty/colorschemes/low_contrast.yaml deleted file mode 100755 index 35bbb4e..0000000 --- a/.config/alacritty/colorschemes/low_contrast.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Colors (Dim) -colors: - # Default colors - primary: - background: '0x333333' - foreground: '0xdddddd' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0xaaaaaa' - cursor: '0xffffff' - - # Normal colors - normal: - black: '0x000000' - red: '0xbb0000' - green: '0x00bb00' - yellow: '0xbbbb00' - blue: '0x0000bb' - magenta: '0xbb00bb' - cyan: '0x00bbbb' - white: '0xbbbbbb' - - # Bright colors - bright: - black: '0x000000' - red: '0xbb0000' - green: '0x00bb00' - yellow: '0xbbbb00' - blue: '0x0000bb' - magenta: '0xbb00bb' - cyan: '0x00bbbb' - white: '0xbbbbbb' diff --git a/.config/alacritty/colorschemes/material_theme.yaml b/.config/alacritty/colorschemes/material_theme.yaml deleted file mode 100755 index 400c5f6..0000000 --- a/.config/alacritty/colorschemes/material_theme.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Material Theme) -colors: - # Default colors - primary: - background: '0x1e282d' - foreground: '0xc4c7d1' - - # Normal colors - normal: - black: '0x666666' - red: '0xeb606b' - green: '0xc3e88d' - yellow: '0xf7eb95' - blue: '0x80cbc4' - magenta: '0xff2f90' - cyan: '0xaeddff' - white: '0xffffff' - - # Bright colors - bright: - black: '0xff262b' - red: '0xeb606b' - green: '0xc3e88d' - yellow: '0xf7eb95' - blue: '0x7dc6bf' - magenta: '0x6c71c4' - cyan: '0x35434d' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/material_theme_mod.yaml b/.config/alacritty/colorschemes/material_theme_mod.yaml deleted file mode 100755 index cb68fbd..0000000 --- a/.config/alacritty/colorschemes/material_theme_mod.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Material Theme) -colors: - # Default colors - primary: - background: '0x1e282d' - foreground: '0xc4c7d1' - - # Normal colors - normal: - black: '0x666666' - red: '0xeb606b' - green: '0xc3e88d' - yellow: '0xf7eb95' - blue: '0x80cbc4' - magenta: '0xff2f90' - cyan: '0xaeddff' - white: '0xffffff' - - # Bright colors - bright: - black: '0xa1a1a1' - red: '0xeb606b' - green: '0xc3e88d' - yellow: '0xf7eb95' - blue: '0x7dc6bf' - magenta: '0x6c71c4' - cyan: '0x35434d' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/monokai_pro.yaml b/.config/alacritty/colorschemes/monokai_pro.yaml deleted file mode 100755 index 331316b..0000000 --- a/.config/alacritty/colorschemes/monokai_pro.yaml +++ /dev/null @@ -1,27 +0,0 @@ -colors: - # Default colors - primary: - background: '0x2D2A2E' - foreground: '0xfff1f3' - - # Normal colors - normal: - black: '0x2c2525' - red: '0xfd6883' - green: '0xadda78' - yellow: '0xf9cc6c' - blue: '0xf38d70' - magenta: '0xa8a9eb' - cyan: '0x85dacc' - white: '0xfff1f3' - - # Bright colors - bright: - black: '0x72696a' - red: '0xfd6883' - green: '0xadda78' - yellow: '0xf9cc6c' - blue: '0xf38d70' - magenta: '0xa8a9eb' - cyan: '0x85dacc' - white: '0xfff1f3'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/moonlight_ii_vscode.yaml b/.config/alacritty/colorschemes/moonlight_ii_vscode.yaml deleted file mode 100755 index b9a9117..0000000 --- a/.config/alacritty/colorschemes/moonlight_ii_vscode.yaml +++ /dev/null @@ -1,28 +0,0 @@ -colors: - primary: - background: '0x1e2030' - foreground: '0x7f85a3' - - cursor: - text: '0x7f85a3' - cursor: '0x808080' - - normal: - black: '0x444a73' - red: '0xff5370' - green: '0x4fd6be' - yellow: '0xffc777' - blue: '0x3e68d7' - magenta: '0xfc7b7b' - cyan: '0x86e1fc' - white: '0xd0d0d0' - - bright: - black: '0x828bb8' - red: '0xff98a4' - green: '0xc3e88d' - yellow: '0xffc777' - blue: '0x82aaff' - magenta: '0xff966c' - cyan: '0xb4f9f8' - white: '0x5f8787'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/night_owlish_light.yaml b/.config/alacritty/colorschemes/night_owlish_light.yaml deleted file mode 100755 index 3b8d938..0000000 --- a/.config/alacritty/colorschemes/night_owlish_light.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Colors (Night Owlish Light) -colors: - bright: - black: '#7a8181' - blue: '#5ca7e4' - cyan: '#00c990' - green: '#49d0c5' - magenta: '#697098' - red: '#f76e6e' - white: '#989fb1' - yellow: '#dac26b' - cursor: - cursor: '#403f53' - text: '#fbfbfb' - normal: - black: '#011627' - blue: '#4876d6' - cyan: '#08916a' - green: '#2aa298' - magenta: '#403f53' - red: '#d3423e' - white: '#7a8181' - yellow: '#daaa01' - primary: - background: '#ffffff' - foreground: '#403f53' - selection: - background: '#f2f2f2' - text: '#403f53'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/nord.yaml b/.config/alacritty/colorschemes/nord.yaml deleted file mode 100755 index 4e8d093..0000000 --- a/.config/alacritty/colorschemes/nord.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Nord) -colors: - # Default colors - primary: - background: '0x2E3440' - foreground: '0xD8DEE9' - - # Normal colors - normal: - black: '0x3B4252' - red: '0xBF616A' - green: '0xA3BE8C' - yellow: '0xEBCB8B' - blue: '0x81A1C1' - magenta: '0xB48EAD' - cyan: '0x88C0D0' - white: '0xE5E9F0' - - # Bright colors - bright: - black: '0x4C566A' - red: '0xBF616A' - green: '0xA3BE8C' - yellow: '0xEBCB8B' - blue: '0x81A1C1' - magenta: '0xB48EAD' - cyan: '0x8FBCBB' - white: '0xECEFF4' diff --git a/.config/alacritty/colorschemes/oceanic_next.yaml b/.config/alacritty/colorschemes/oceanic_next.yaml deleted file mode 100755 index 9bad83f..0000000 --- a/.config/alacritty/colorschemes/oceanic_next.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Oceanic Next) -colors: - # Default colors - primary: - background: '0x1b2b34' - foreground: '0xd8dee9' - - # Normal colors - normal: - black: '0x29414f' - red: '0xec5f67' - green: '0x99c794' - yellow: '0xfac863' - blue: '0x6699cc' - magenta: '0xc594c5' - cyan: '0x5fb3b3' - white: '0x65737e' - - # Bright colors - bright: - black: '0x405860' - red: '0xec5f67' - green: '0x99c794' - yellow: '0xfac863' - blue: '0x6699cc' - magenta: '0xc594c5' - cyan: '0x5fb3b3' - white: '0xadb5c0' diff --git a/.config/alacritty/colorschemes/omni.yml b/.config/alacritty/colorschemes/omni.yml deleted file mode 100755 index 91570e1..0000000 --- a/.config/alacritty/colorschemes/omni.yml +++ /dev/null @@ -1,38 +0,0 @@ -colors: - primary: - background: '0x191622' - foreground: '0xe1e1e6' - - cursor: - text: '0x191622' - cursor: '0xf8f8f2' - - normal: - black: '0x000000' - red: '0xff5555' - green: '0x50fa7b' - yellow: '0xeffa78' - blue: '0xbd93f9' - magenta: '0xff79c6' - cyan: '0x8d79ba' - white: '0xbfbfbf' - - bright: - black: '0x4d4d4d' - red: '0xff6e67' - green: '0x5af78e' - yellow: '0xeaf08d' - blue: '0xcaa9fa' - magenta: '0xff92d0' - cyan: '0xaa91e3' - white: '0xe6e6e6' - - dim: - black: '0x000000' - red: '0xa90000' - green: '0x049f2b' - yellow: '0xa3b106' - blue: '0x530aba' - magenta: '0xbb006b' - cyan: '0x433364' - white: '0x5f5f5f' diff --git a/.config/alacritty/colorschemes/one_dark.yaml b/.config/alacritty/colorschemes/one_dark.yaml deleted file mode 100755 index a54e040..0000000 --- a/.config/alacritty/colorschemes/one_dark.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (One Dark) -colors: - # Default colors - primary: - background: '0x1e2127' - foreground: '0xabb2bf' - - # Normal colors - normal: - black: '0x1e2127' - red: '0xe06c75' - green: '0x98c379' - yellow: '0xd19a66' - blue: '0x61afef' - magenta: '0xc678dd' - cyan: '0x56b6c2' - white: '0xabb2bf' - - # Bright colors - bright: - black: '0x5c6370' - red: '0xe06c75' - green: '0x98c379' - yellow: '0xd19a66' - blue: '0x61afef' - magenta: '0xc678dd' - cyan: '0x56b6c2' - white: '0xffffff'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/palenight.yml b/.config/alacritty/colorschemes/palenight.yml deleted file mode 100755 index f65206a..0000000 --- a/.config/alacritty/colorschemes/palenight.yml +++ /dev/null @@ -1,30 +0,0 @@ -# iTerm2 Material Design - Palenight theme for Alacritty -# Source : https://github.com/JonathanSpeek/palenight-iterm2 - -colors: - # Default colors - primary: - background: '0x292d3e' - foreground: '0xd0d0d0' - - # Normal colors - normal: - black: '0x292d3e' - red: '0xf07178' - green: '0xc3e88d' - yellow: '0xffcb6b' - blue: '0x82aaff' - magenta: '0xc792ea' - cyan: '0x89ddff' - white: '0xd0d0d0' - - # Bright colors - bright: - black: '0x434758' - red: '0xff8b92' - green: '0xddffa7' - yellow: '0xffe585' - blue: '0x9cc4ff' - magenta: '0xe1acff' - cyan: '0xa3f7ff' - white: '0xffffff' diff --git a/.config/alacritty/colorschemes/papercolor_dark.yaml b/.config/alacritty/colorschemes/papercolor_dark.yaml deleted file mode 100755 index 79d0e14..0000000 --- a/.config/alacritty/colorschemes/papercolor_dark.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Colors (PaperColor - Dark) -colors: - # Default colors - primary: - background: '0x1c1c1c' - foreground: '0x808080' - - cursor: - text: '0x1c1c1c' - cursor: '0x808080' - - # Normal colors - normal: - black: '0x1c1c1c' - red: '0xaf005f' - green: '0x5faf00' - yellow: '0xd7af5f' - blue: '0x5fafd7' - magenta: '0x808080' - cyan: '0xd7875f' - white: '0xd0d0d0' - - # Bright colors - bright: - black: '0x585858' - red: '0x5faf5f' - green: '0xafd700' - yellow: '0xaf87d7' - blue: '0xffaf00' - magenta: '0xffaf00' - cyan: '0x00afaf' - white: '0x5f8787' diff --git a/.config/alacritty/colorschemes/papercolor_light.yaml b/.config/alacritty/colorschemes/papercolor_light.yaml deleted file mode 100755 index 06707a7..0000000 --- a/.config/alacritty/colorschemes/papercolor_light.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Colors (PaperColor - Light) -colors: - # Default colors - primary: - background: '0xeeeeee' - foreground: '0x444444' - - cursor: - text: '0xeeeeee' - cursor: '0x444444' - - # Normal colors - normal: - black: '0xeeeeee' - red: '0xaf0000' - green: '0x008700' - yellow: '0x5f8700' - blue: '0x0087af' - magenta: '0x878787' - cyan: '0x005f87' - white: '0x444444' - - # Bright colors - bright: - black: '0xbcbcbc' - red: '0xd70000' - green: '0xd70087' - yellow: '0x8700af' - blue: '0xd75f00' - magenta: '0xd75f00' - cyan: '0x005faf' - white: '0x005f87' diff --git a/.config/alacritty/colorschemes/papertheme.yaml b/.config/alacritty/colorschemes/papertheme.yaml deleted file mode 100755 index 13117e1..0000000 --- a/.config/alacritty/colorschemes/papertheme.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Paper Theme) -colors: - # Default colors - primary: - background: '#F2EEDE' - foreground: '#000000' - - # Normal colors - normal: - black: '#000000' - red: '#CC3E28' - green: '#216609' - yellow: '#B58900' - blue: '#1E6FCC' - magenta: '#5C21A5' - cyan: '#158C86' - white: '#AAAAAA' - - # Bright colors - bright: - black: '#555555' - red: '#CC3E28' - green: '#216609' - yellow: '#B58900' - blue: '#1E6FCC' - magenta: '#5C21A5' - cyan: '#158C86' - white: '#AAAAAA' diff --git a/.config/alacritty/colorschemes/pencil_dark.yaml b/.config/alacritty/colorschemes/pencil_dark.yaml deleted file mode 100755 index 9bb2a13..0000000 --- a/.config/alacritty/colorschemes/pencil_dark.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Colors (Pencil Dark) -colors: - # Default Colors - primary: - background: '0x212121' - foreground: '0xf1f1f1' - # Normal colors - normal: - black: '0x212121' - red: '0xc30771' - green: '0x10a778' - yellow: '0xa89c14' - blue: '0x008ec4' - magenta: '0x523c79' - cyan: '0x20a5ba' - white: '0xe0e0e0' - # Bright colors - bright: - black: '0x818181' - red: '0xfb007a' - green: '0x5fd7af' - yellow: '0xf3e430' - blue: '0x20bbfc' - magenta: '0x6855de' - cyan: '0x4fb8cc' - white: '0xf1f1f1' diff --git a/.config/alacritty/colorschemes/pencil_light.yaml b/.config/alacritty/colorschemes/pencil_light.yaml deleted file mode 100755 index 10db04d..0000000 --- a/.config/alacritty/colorschemes/pencil_light.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Colors (Pencil Light) -colors: - # Default Colors - primary: - background: '0xf1f1f1' - foreground: '0x424242' - # Normal colors - normal: - black: '0x212121' - red: '0xc30771' - green: '0x10a778' - yellow: '0xa89c14' - blue: '0x008ec4' - magenta: '0x523c79' - cyan: '0x20a5ba' - white: '0xe0e0e0' - # Bright colors - bright: - black: '0x212121' - red: '0xfb007a' - green: '0x5fd7af' - yellow: '0xf3e430' - blue: '0x20bbfc' - magenta: '0x6855de' - cyan: '0x4fb8cc' - white: '0xf1f1f1' diff --git a/.config/alacritty/colorschemes/remedy_dark.yaml b/.config/alacritty/colorschemes/remedy_dark.yaml deleted file mode 100755 index 0cd339f..0000000 --- a/.config/alacritty/colorschemes/remedy_dark.yaml +++ /dev/null @@ -1,38 +0,0 @@ -colors: - # Default colors - primary: - background: '0x2c2b2a' - foreground: '0xf9e7c4' - - dim_foreground: '0x685E4A' - bright_foreground: '0x1C1508' - dim_background: '0x202322' - bright_background: '0x353433' - - # Cursor colors - cursor: - text: '0xf9e7c4' - cursor: '0xf9e7c4' - - # Normal colors - normal: - black: '0x282a2e' - blue: '0x5f819d' - cyan: '0x5e8d87' - green: '0x8c9440' - magenta: '0x85678f' - orange: '0xcc6953' - red: '0xa54242' - white: '0x707880' - yellow: '0xde935f' - - # Bright colors - bright: - black: '0x373b41' - blue: '0x81a2be' - cyan: '0x8abeb7' - green: '0xb5bd68' - magenta: '0xb294bb' - red: '0xcc6666' - white: '0xc5c8c6' - yellow: '0xf0c674'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/seashells.yaml b/.config/alacritty/colorschemes/seashells.yaml deleted file mode 100755 index 4f84a29..0000000 --- a/.config/alacritty/colorschemes/seashells.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Colors (SeaShells) -# Source : https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/schemes/SeaShells.itermcolors -colors: - # Default colors - primary: - background: '#061923' - foreground: '#e5c49e' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '#061822' - cursor: '#feaf3c' - - selection: - text: '#ffe9d7' - background: '#265b75' - - # Normal colors - normal: - black: '#1d485f' - red: '#db662d' - green: '#008eab' - yellow: '#feaf3c' - blue: '#255a62' - magenta: '#77dbf4' - cyan: '#5fb1c2' - white: '#e5c49e' - - # Bright colors - bright: - black: '#545d65' - red: '#dd998a' - green: '#739da8' - yellow: '#fedaae' - blue: '#0bc7e3' - magenta: '#c6e8f1' - cyan: '#97b9c0' - white: '#ffe9d7'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/smoooooth.yml b/.config/alacritty/colorschemes/smoooooth.yml deleted file mode 100755 index e21df4b..0000000 --- a/.config/alacritty/colorschemes/smoooooth.yml +++ /dev/null @@ -1,30 +0,0 @@ -# Color theme ported from iTerm 2: Smoooooth - -colors: - primary: - foreground: '0xdbdbdb' - background: '0x14191e' - cursor: - text: '0x000000' - cursor: '0xfefffe' - selection: - text: '0x000000' - background: '0xb3d7ff' - normal: - black: '0x14191e' - red: '0xb43c29' - green: '0x00c200' - yellow: '0xc7c400' - blue: '0x2743c7' - magenta: '0xbf3fbd' - cyan: '0x00c5c7' - white: '0xc7c7c7' - bright: - black: '0x676767' - red: '0xdc7974' - green: '0x57e690' - yellow: '0xece100' - blue: '0xa6aaf1' - magenta: '0xe07de0' - cyan: '0x5ffdff' - white: '0xfeffff' diff --git a/.config/alacritty/colorschemes/snazzy.yaml b/.config/alacritty/colorschemes/snazzy.yaml deleted file mode 100755 index aacebd0..0000000 --- a/.config/alacritty/colorschemes/snazzy.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Snazzy) -colors: - # Default colors - primary: - background: '0x282a36' - foreground: '0xeff0eb' - - # Normal colors - normal: - black: '0x282a36' - red: '0xff5c57' - green: '0x5af78e' - yellow: '0xf3f99d' - blue: '0x57c7ff' - magenta: '0xff6ac1' - cyan: '0x9aedfe' - white: '0xf1f1f0' - - # Bright colors - bright: - black: '0x686868' - red: '0xff5c57' - green: '0x5af78e' - yellow: '0xf3f99d' - blue: '0x57c7ff' - magenta: '0xff6ac1' - cyan: '0x9aedfe' - white: '0xf1f1f0'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/solarized_dark.yaml b/.config/alacritty/colorschemes/solarized_dark.yaml deleted file mode 100755 index 0055c81..0000000 --- a/.config/alacritty/colorschemes/solarized_dark.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Solarized Dark) -colors: - # Default colors - primary: - background: '0x002b36' - foreground: '0x839496' - - # Normal colors - normal: - black: '0x073642' - red: '0xdc322f' - green: '0x859900' - yellow: '0xb58900' - blue: '0x268bd2' - magenta: '0xd33682' - cyan: '0x2aa198' - white: '0xeee8d5' - - # Bright colors - bright: - black: '0x002b36' - red: '0xcb4b16' - green: '0x586e75' - yellow: '0x657b83' - blue: '0x839496' - magenta: '0x6c71c4' - cyan: '0x93a1a1' - white: '0xfdf6e3'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/solarized_light.yaml b/.config/alacritty/colorschemes/solarized_light.yaml deleted file mode 100755 index 6a5acd9..0000000 --- a/.config/alacritty/colorschemes/solarized_light.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Solarized Light) -colors: - # Default colors - primary: - background: '0xfdf6e3' - foreground: '0x586e75' - - # Normal colors - normal: - black: '0x073642' - red: '0xdc322f' - green: '0x859900' - yellow: '0xb58900' - blue: '0x268bd2' - magenta: '0xd33682' - cyan: '0x2aa198' - white: '0xeee8d5' - - # Bright colors - bright: - black: '0x002b36' - red: '0xcb4b16' - green: '0x586e75' - yellow: '0x657b83' - blue: '0x839496' - magenta: '0x6c71c4' - cyan: '0x93a1a1' - white: '0xfdf6e3'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/taerminal.yaml b/.config/alacritty/colorschemes/taerminal.yaml deleted file mode 100755 index 9dc804c..0000000 --- a/.config/alacritty/colorschemes/taerminal.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Colors (Taerminal) -colors: - # Default colors - primary: - background: '0x26282a' - foreground: '0xf0f0f0' - cursor: - background: '0xf0f0f0' - foreground: '0x26282a' - - # Normal colors - normal: - black: '0x26282a' - red: '0xff8878' - green: '0xb4fb73' - yellow: '0xfffcb7' - blue: '0x8bbce5' - magenta: '0xffb2fe' - cyan: '0xa2e1f8' - white: '0xf1f1f1' - - # Bright colors - bright: - black: '0x6f6f6f' - red: '0xfe978b' - green: '0xd6fcba' - yellow: '0xfffed5' - blue: '0xc2e3ff' - magenta: '0xffc6ff' - cyan: '0xc0e9f8' - white: '0xffffff'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/tango_dark.yaml b/.config/alacritty/colorschemes/tango_dark.yaml deleted file mode 100755 index e91733d..0000000 --- a/.config/alacritty/colorschemes/tango_dark.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# GNOME Terminal Tango Dark -colors: - primary: - background: '0x2e3436' - foreground: '0xd3d7cf' - - normal: - black: '0x2e3436' - red: '0xcc0000' - green: '0x4e9a06' - yellow: '0xc4a000' - blue: '0x3465a4' - magenta: '0x75507b' - cyan: '0x06989a' - white: '0xd3d7cf' - - bright: - black: '0x555753' - red: '0xef2929' - green: '0x8ae234' - yellow: '0xfce94f' - blue: '0x729fcf' - magenta: '0xad7fa8' - cyan: '0x34e2e2' - white: '0xeeeeec' - diff --git a/.config/alacritty/colorschemes/tender.yaml b/.config/alacritty/colorschemes/tender.yaml deleted file mode 100755 index ffcacf7..0000000 --- a/.config/alacritty/colorschemes/tender.yaml +++ /dev/null @@ -1,27 +0,0 @@ -colors: - # Default colors - primary: - background: '0x282828' - foreground: '0xeeeeee' - - # Normal colors - normal: - black: '0x282828' - red: '0xf43753' - green: '0xc9d05c' - yellow: '0xffc24b' - blue: '0xb3deef' - magenta: '0xd3b987' - cyan: '0x73cef4' - white: '0xeeeeee' - - # Bright colors - bright: - black: '0x4c4c4c' - red: '0xf43753' - green: '0xc9d05c' - yellow: '0xffc24b' - blue: '0xb3deef' - magenta: '0xd3b987' - cyan: '0x73cef4' - white: '0xfeffff' diff --git a/.config/alacritty/colorschemes/terminal_app.yaml b/.config/alacritty/colorschemes/terminal_app.yaml deleted file mode 100755 index bc2c434..0000000 --- a/.config/alacritty/colorschemes/terminal_app.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Terminal.app) -colors: - # Default colors - primary: - background: '0x000000' - foreground: '0xb6b6b6' - - # Normal colors - normal: - black: '0x000000' - red: '0x990000' - green: '0x00a600' - yellow: '0x999900' - blue: '0x0000b2' - magenta: '0xb200b2' - cyan: '0x00a6b2' - white: '0xbfbfbf' - - # Bright colors - bright: - black: '0x666666' - red: '0xe50000' - green: '0x00d900' - yellow: '0xe5e500' - blue: '0x0000ff' - magenta: '0xe500e5' - cyan: '0x00e5e5' - white: '0xe5e5e5'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/thelovelace.yaml b/.config/alacritty/colorschemes/thelovelace.yaml deleted file mode 100755 index 4d73889..0000000 --- a/.config/alacritty/colorschemes/thelovelace.yaml +++ /dev/null @@ -1,27 +0,0 @@ -colors: - # Default colors - primary: - background: '0x1D1F28' - foreground: '0xFDFDFD' - - # Normal colors - normal: - # Bright colors - black: '0x282A36' - red: '0xF37F97' - green: '0x5ADECD' - yellow: '0xF2A272' - blue: '0x8897F4' - magenta: '0xC574DD' - cyan: '0x79E6F3' - white: '0xFDFDFD' - bright: - black: '0x414458' - red: '0xFF4971' - green: '0x18E3C8' - yellow: '0xEBCB8B' - blue: '0xFF8037' - magenta: '0x556FFF' - cyan: '0x3FDCEE' - white: '0xBEBEC1' - indexed_colors: [] diff --git a/.config/alacritty/colorschemes/tokyo-night-storm.yaml b/.config/alacritty/colorschemes/tokyo-night-storm.yaml deleted file mode 100755 index a64cf4a..0000000 --- a/.config/alacritty/colorschemes/tokyo-night-storm.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Colors (Tokyo Night: Storm variant) -# Source: https://github.com/zatchheems/tokyo-night-alacritty-theme -colors: - # Default colors - primary: - background: '0x24283b' - foreground: '0xa9b1d6' - - # Normal colors - normal: - black: '0x32344a' - red: '0xf7768e' - green: '0x9ece6a' - yellow: '0xe0af68' - blue: '0x7aa2f7' - magenta: '0xad8ee6' - cyan: '0x449dab' - white: '0x9699a8' - - # Bright colors - bright: - black: '0x444b6a' - red: '0xff7a93' - green: '0xb9f27c' - yellow: '0xff9e64' - blue: '0x7da6ff' - magenta: '0xbb9af7' - cyan: '0x0db9d7' - white: '0xacb0d0' diff --git a/.config/alacritty/colorschemes/tokyo-night.yaml b/.config/alacritty/colorschemes/tokyo-night.yaml deleted file mode 100755 index a88fd9b..0000000 --- a/.config/alacritty/colorschemes/tokyo-night.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Colors (Tokyo Night) -# Source: https://github.com/zatchheems/tokyo-night-alacritty-theme -colors: - # Default colors - primary: - background: '0x1a1b26' - foreground: '0xa9b1d6' - - # Normal colors - normal: - black: '0x32344a' - red: '0xf7768e' - green: '0x9ece6a' - yellow: '0xe0af68' - blue: '0x7aa2f7' - magenta: '0xad8ee6' - cyan: '0x449dab' - white: '0x787c99' - - # Bright colors - bright: - black: '0x444b6a' - red: '0xff7a93' - green: '0xb9f27c' - yellow: '0xff9e64' - blue: '0x7da6ff' - magenta: '0xbb9af7' - cyan: '0x0db9d7' - white: '0xacb0d0' diff --git a/.config/alacritty/colorschemes/tomorrow_night.yaml b/.config/alacritty/colorschemes/tomorrow_night.yaml deleted file mode 100755 index 36bafba..0000000 --- a/.config/alacritty/colorschemes/tomorrow_night.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Colors (Tomorrow Night) -colors: - # Default colors - primary: - background: '0x1d1f21' - foreground: '0xc5c8c6' - - # Colors the cursor will use if `custom_cursor_colors` is true - cursor: - text: '0x1d1f21' - cursor: '0xffffff' - - # Normal colors - normal: - black: '0x1d1f21' - red: '0xcc6666' - green: '0xb5bd68' - yellow: '0xe6c547' - blue: '0x81a2be' - magenta: '0xb294bb' - cyan: '0x70c0ba' - white: '0x373b41' - - # Bright colors - bright: - black: '0x666666' - red: '0xff3334' - green: '0x9ec400' - yellow: '0xf0c674' - blue: '0x81a2be' - magenta: '0xb77ee0' - cyan: '0x54ced6' - white: '0x282a2e'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/tomorrow_night_bright.yaml b/.config/alacritty/colorschemes/tomorrow_night_bright.yaml deleted file mode 100755 index 55b25d0..0000000 --- a/.config/alacritty/colorschemes/tomorrow_night_bright.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Tomorrow Night Bright) -colors: - # Default colors - primary: - background: '0x000000' - foreground: '0xeaeaea' - - # Normal colors - normal: - black: '0x000000' - red: '0xd54e53' - green: '0xb9ca4a' - yellow: '0xe6c547' - blue: '0x7aa6da' - magenta: '0xc397d8' - cyan: '0x70c0ba' - white: '0x424242' - - # Bright colors - bright: - black: '0x666666' - red: '0xff3334' - green: '0x9ec400' - yellow: '0xe7c547' - blue: '0x7aa6da' - magenta: '0xb77ee0' - cyan: '0x54ced6' - white: '0x2a2a2a'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/wombat.yaml b/.config/alacritty/colorschemes/wombat.yaml deleted file mode 100755 index 844e65f..0000000 --- a/.config/alacritty/colorschemes/wombat.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Colors (Wombat) -colors: - # Default colors - primary: - background: '0x1f1f1f' - foreground: '0xe5e1d8' - - # Normal colors - normal: - black: '0x000000' - red: '0xf7786d' - green: '0xbde97c' - yellow: '0xefdfac' - blue: '0x6ebaf8' - magenta: '0xef88ff' - cyan: '0x90fdf8' - white: '0xe5e1d8' - - # Bright colors - bright: - black: '0xb4b4b4' - red: '0xf99f92' - green: '0xe3f7a1' - yellow: '0xf2e9bf' - blue: '0xb3d2ff' - magenta: '0xe5bdff' - cyan: '0xc2fefa' - white: '0xffffff'
\ No newline at end of file diff --git a/.config/alacritty/colorschemes/xterm.yaml b/.config/alacritty/colorschemes/xterm.yaml deleted file mode 100755 index 7f336e4..0000000 --- a/.config/alacritty/colorschemes/xterm.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# XTerm's default colors -colors: - # Default colors - primary: - background: '0x000000' - foreground: '0xffffff' - # Normal colors - normal: - black: '0x000000' - red: '0xcd0000' - green: '0x00cd00' - yellow: '0xcdcd00' - blue: '0x0000ee' - magenta: '0xcd00cd' - cyan: '0x00cdcd' - white: '0xe5e5e5' - - # Bright colors - bright: - black: '0x7f7f7f' - red: '0xff0000' - green: '0x00ff00' - yellow: '0xffff00' - blue: '0x5c5cff' - magenta: '0xff00ff' - cyan: '0x00ffff' - white: '0xffffff' diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf deleted file mode 100644 index 7a00959..0000000 --- a/.config/hypr/hyprland.conf +++ /dev/null @@ -1,167 +0,0 @@ -# See https://wiki.hyprland.org/Configuring/Monitors/ -monitor=transform,preferred,auto,auto - - -# See https://wiki.hyprland.org/Configuring/Keywords/ for more - -# Execute your favorite apps at launch -# exec-once = waybar & hyprpaper & firefox - -# Source a file (multi-file configs) -# source = ~/.config/hypr/myColors.conf - -# Some default env vars. -env = XCURSOR_SIZE,24 - -# For all categories, see https://wiki.hyprland.org/Configuring/Variables/ -input { - kb_layout = us,gr - kb_variant = - kb_model = - kb_options = ctrl:swapcaps, grp:alt_space_toggle - kb_rules = - - follow_mouse = 1 - - touchpad { - natural_scroll = no - } - - sensitivity = 0 # -1.0 - 1.0, 0 means no modification. -} - -general { - # See https://wiki.hyprland.org/Configuring/Variables/ for more - gaps_in = 5 - gaps_out = 10 - border_size = 2 - col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg - col.inactive_border = rgba(595959aa) - layout = master -} - -decoration { - # See https://wiki.hyprland.org/Configuring/Variables/ for more - active_opacity = 0.97 - inactive_opacity = 0.99 - rounding = 10 - blur = no - blur_size = 3 - blur_passes = 1 - blur_new_optimizations = on - drop_shadow = yes - shadow_range = 4 - shadow_render_power = 3 - col.shadow = rgba(1a1a1aee) -} - -animations { - enabled = yes - - # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more - - bezier = myBezier, 0.05, 0.9, 0.1, 1.05 - animation = windows, 1, 7, myBezier - animation = windowsOut, 1, 7, default, popin 80% - animation = border, 1, 10, default - animation = borderangle, 1, 8, default - animation = fade, 1, 7, default - animation = workspaces, 1, 6, default -} - -dwindle { - # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more - pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below - preserve_split = yes # you probably want this -} - -master { - # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more - new_is_master = false - mfact = 0.53 -} - -gestures { - # See https://wiki.hyprland.org/Configuring/Variables/ for more - workspace_swipe = off -} - -# Personal Configuration for Hyprland -# Thanos Apollo 2023 - -# See https://wiki.hyprland.org/Configuring/ for more - -device:epic mouse V1 { - sensitivity = -0.5 -} - -# See https://wiki.hyprland.org/Configuring/Keywords/ for more -$mainMod = CTRL_ALT - -# Binds, see https://wiki.hyprland.org/Configuring/Binds/ for more -bind = , F5, exec, "/home/$USER/dotfiles/scripts/keyboard-light-x220.sh" -bind = , F1, exec, swaylock --screenshot --clock --effect-blur 10x9 --indicator -bind = , F8, exec, brightnessctl set +5% -bind = , F7, exec, brightnessctl set 5-% -bind = , XF86AudioLowerVolume, exec, amixer sset Master 5%- -bind = , XF86AudioRaiseVolume, exec, amixer sset Master 5%+ - -bind = $mainMod, Return, exec, emacsclient -c -bind = $mainMod, W, exec, kitty -bind = $mainMod, Q, killactive, -bind = $mainMod SHIFT, Q, exit, -bind = $mainMod, R, exec, rofi -show drun -bind = $mainMod, E, exec, tessen --dmenu=rofi -bind = $mainMod, V, togglefloating, -bind = $mainMod, J, togglesplit, # dwindle -bind = ALT, F12, exec, grim -g "$(slurp)" -bind = ALT, F11, fullscreen - -# Move focus with mainMod + arrow keys -bind = $mainMod, B, movefocus, l -bind = $mainMod, F, movefocus, r -bind = $mainMod, N, movefocus, d -bind = $mainMod, P, movefocus, u - -bind = $mainMod SHIFT, P, movewindow, u -bind = $mainMod SHIFT, N, movewindow, d -bind = $mainMod SHIFT, F, movewindow, r -bind = $mainMod SHIFT, B, movewindow, l - - -# Switch workspaces with mainMod + [0-9] -bind = $mainMod, 1, workspace, 1 -bind = $mainMod, 2, workspace, 2 -bind = $mainMod, 3, workspace, 3 -bind = $mainMod, 4, workspace, 4 -bind = $mainMod, 5, workspace, 5 -bind = $mainMod, 6, workspace, 6 -bind = $mainMod, 7, workspace, 7 -bind = $mainMod, 8, workspace, 8 -bind = $mainMod, 9, workspace, 9 -bind = $mainMod, 0, workspace, 10 - -# Move active window to a workspace with mainMod + SHIFT + [0-9] -bind = $mainMod SHIFT, 1, movetoworkspace, 1 -bind = $mainMod SHIFT, 2, movetoworkspace, 2 -bind = $mainMod SHIFT, 3, movetoworkspace, 3 -bind = $mainMod SHIFT, 4, movetoworkspace, 4 -bind = $mainMod SHIFT, 5, movetoworkspace, 5 -bind = $mainMod SHIFT, 6, movetoworkspace, 6 -bind = $mainMod SHIFT, 7, movetoworkspace, 7 -bind = $mainMod SHIFT, 8, movetoworkspace, 8 -bind = $mainMod SHIFT, 9, movetoworkspace, 9 -bind = $mainMod SHIFT, 0, movetoworkspace, 10 - -# Scroll through existing workspaces with mainMod + scroll -bind = ALT, mouse_down, workspace, e+1 -bind = ALT, mouse_up, workspace, e-1 - -# Move/resize windows with mainMod + LMB/RMB and dragging -bindm = ALT, mouse:272, movewindow -bindm = ALT, mouse:273, resizewindow - -exec-once = waybar -exec-once = hyprpaper -exec-once = emacs --daemon -exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
\ No newline at end of file diff --git a/.config/hypr/hyprpaper.conf b/.config/hypr/hyprpaper.conf deleted file mode 100644 index 9471d26..0000000 --- a/.config/hypr/hyprpaper.conf +++ /dev/null @@ -1,8 +0,0 @@ -preload = ~/dotfiles/pictures/wallpaper-cyberpunk.jpg -preload = ~/dotfiles/pictures/wallpaper-cyberpunk2.jpg - -wallpaper = DP-1, ~/dotfiles/pictures/wallpaper-cyberpunk.jpg - -wallpaper = HDMI-A-1, ~/dotfiles/pictures/wallpaper-cyberpunk.jpg - -wallpaper = LVDS-1, ~/dotfiles/pictures/wallpaper-cyberpunk.jpg
\ No newline at end of file diff --git a/.config/nyxt/init.lisp b/.config/nyxt/init.lisp deleted file mode 100755 index f43ca9b..0000000 --- a/.config/nyxt/init.lisp +++ /dev/null @@ -1,5 +0,0 @@ -(in-package #:nyxt-user) - -;; Import Files -(nyxt::load-lisp "~/.config/nyxt/statusline.lisp") -(nyxt::load-lisp "~/.config/nyxt/stylesheet.lisp") diff --git a/.config/nyxt/statusline.lisp b/.config/nyxt/statusline.lisp deleted file mode 100755 index a90527e..0000000 --- a/.config/nyxt/statusline.lisp +++ /dev/null @@ -1,73 +0,0 @@ -;; (in-package #:nyxt-user) - -;; ;; Set StatusLines Mode Icons -;; (define-configuration status-buffer ((glyph-mode-presentation-p t))) -;; (define-configuration nyxt/force-https-mode:force-https-mode ((glyph ""))) -;; (define-configuration nyxt/blocker-mode:blocker-mode ((glyph ""))) -;; (define-configuration nyxt/proxy-mode:proxy-mode ((glyph ""))) -;; (define-configuration nyxt/reduce-tracking-mode:reduce-tracking-mode ((glyph ""))) -;; (define-configuration nyxt/certificate-exception-mode:certificate-exception-mode ((glyph ""))) -;; (define-configuration nyxt/style-mode:style-mode ((glyph ""))) -;; (define-configuration nyxt/help-mode:help-mode ((glyph ""))) -;; (define-configuration nyxt/web-mode:web-mode ((glyph "ω"))) -;; (define-configuration nyxt/auto-mode:auto-mode ((glyph "α"))) - -;;Set StatusLines URL Icons -(defun laconic-format-status-load-status (buffer) - (if (web-buffer-p buffer) - (case (slot-value buffer 'nyxt::load-status) - (:unloaded "∅") - (:loading "∞") - (:finished "")) - "")) - -;;Remove https/www from URL -(defun laconic-format-status-url (buffer) - (markup:markup - (:span - (format nil "~a ~a" - (laconic-format-status-load-status buffer) - (ppcre:regex-replace-all - "(https://|www\\.|/$)" - (render-url (url buffer)) - ""))))) - -;;Set StatusLines Webpage Loadtime -(defun laconic-format-status-modes (buffer window) - (str:concat - (format-status-modes buffer window) - " | " - (format nil "~d:~d" - (mod (+ 5 (local-time:timestamp-hour (local-time:now))) 24) - (local-time:timestamp-minute (local-time:now))))) - -;;Configure StatusLines Design -(defun laconic-format-status (window) - (flet ((input-indicating-background () - (format nil "background-color: ~:[#50fa7b~;#ff5555~]" - (or (current-mode 'vi-insert) - (current-mode 'input-edit))))) - (let ((buffer (current-buffer window))) - (markup:markup - (:div :id "container" - (:div :id "controls" - :style (input-indicating-background) - (markup:raw "")) - (:div :class "arrow arrow-right" - :style (input-indicating-background) "") - (:div :id "url" - (markup:raw - (laconic-format-status-url buffer))) - (:div :class "arrow arrow-right" - :style "background-color:#21222C" "") - (:div :id "tabs" - (title buffer)) - (:div :class "arrow arrow-left" - :style "background-color:#21222C" "") - (:div :id "modes" - :title (nyxt::list-modes buffer) - (laconic-format-status-modes buffer window))))))) - -;;Define Current Configuration -(define-configuration window - ((status-formatter #'laconic-format-status))) diff --git a/.config/nyxt/stylesheet.lisp b/.config/nyxt/stylesheet.lisp deleted file mode 100755 index bb31f10..0000000 --- a/.config/nyxt/stylesheet.lisp +++ /dev/null @@ -1,146 +0,0 @@ -;; (in-package #:nyxt-user) - -;; ;; This only works on the versions of Nyxt after 2.2.4. -;; (define-configuration browser -;; ((theme (make-instance -;; 'theme:theme -;; :dark-p t -;; :background-color "#282a36" -;; :text-color "#f8f8f2" -;; :accent-color "#ff5555" -;; :primary-color "#50fa7b" -;; :secondary-color "#bd93f9" -;; :tertiary-color "#6272a4" -;; :quaternary-color "#44475a")))) - -;; ;; Custom Dark-mode for webpages -;; (define-configuration nyxt/style-mode:dark-mode -;; ((style #.(cl-css:css -;; '((* -;; :background-color "#282a36 !important" -;; :background-image "none !important" -;; :color "#f8f8f2") -;; (a -;; :background-color "#282a36 !important" -;; :background-image "none !important" -;; :color "#6272a4 !important")))))) - - -;; ;; Configurations for versions below 2.2.4: - -;;Configure Webpage Colors -(define-configuration window - ((message-buffer-style - (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "#282a36" - :color "#f8f8f2"))))))) - -;;Configure Prompt Section -(define-configuration prompt-buffer - ((style (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "#282a36" - :color "#f8f8f2") - ("#prompt-area" - :background-color "#282a36") - ("#input" - :background-color "#6272a4" - :color "#f8f8f2") - (".source-name" - :color "#f8f8f2" - :background-color "#bd93f9") - (".source-content" - :background-color "#282a36") - (".source-content th" - :border "1px solid #bd93f9" - :background-color "#282a36") - ("#selection" - :background-color "#44475a" - :color "#f8f8f2") - (.marked :background-color "#ff5555" - :font-weight "bold" - :color "#f8f8f2") - (.selected :background-color "#282a36" - :color "#f8f8f2"))))))) - -(define-configuration internal-buffer - ((style - (str:concat - %slot-default% - (cl-css:css - '((title - :color "#ff79c6") - (body - :background-color "#21222C" - :color "#f8f8f2") - (hr - :color "#44475a") - (a - :color "#6272a4") - (.button - :color "#f8f8f2" - :background-color "#44475a"))))))) - -;;Configure History Tree Mode -(define-configuration nyxt/history-tree-mode:history-tree-mode - ((nyxt/history-tree-mode::style - (str:concat - %slot-default% - (cl-css:css - '((body - :background-color "#21222C" - :color "lightgray") - (hr - :color "darkgray") - (a - :color "#50fa7b") - ("ul li::before" - :background-color "#f8f8f2") - ("ul li::after" - :background-color "#f8f8f2") - ("ul li:only-child::before" - :background-color "#f8f8f2"))))))) - -;;Highlight Hint Buttons -(define-configuration nyxt/web-mode:web-mode - ((nyxt/web-mode:highlighted-box-style - (cl-css:css - '((".nyxt-hint.nyxt-highlight-hint" - :background "#ff5555"))) - :documentation "The style of highlighted boxes, e.g. link hints."))) - -;;Configure StatusLines Styles -(define-configuration status-buffer - ((style (str:concat - %slot-default% - (cl-css:css - '(("#controls" - :border-top "1px solid #6272a4" - :background-color "#21222C") - ("#url" - :background-color "#21222C" - :color "#f8f8f2" - :border-top "1px solid #6272a4") - ("#modes" - :background-color "#21222C" - :border-top "1px solid #6272a4") - ("#tabs" - :background-color "#6272a4" - :color "#f8f8f2" - :border-top "1px solid #6272a4"))))))) - -(define-configuration nyxt/style-mode:dark-mode - ((style #.(cl-css:css - '((* - :background-color "#21222C !important" - :background-image "none !important" - :color "#f8f8f2") - (a - :background-color "#21222C !important" - :background-image "none !important" - :color "#556B2F !important")))))) diff --git a/.config/polybar/config.ini b/.config/polybar/config.ini deleted file mode 100755 index 15218cc..0000000 --- a/.config/polybar/config.ini +++ /dev/null @@ -1,248 +0,0 @@ -;========================================================== -; -; -; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ -; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ -; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ -; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ -; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ -; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ -; -; -; To learn more about how to configure Polybar -; go to https://github.com/polybar/polybar -; -; The README contains a lot of information -; -;========================================================== - -[colors] -background = #040303 -background-alt = #373B41 -foreground = #C5C8C6 -primary = #ee7b29 -secondary = #8ABEB7 -alert = #A54242 -disabled = #707880 - -[bar/main] -width = 100% -height = 24pt -radius = 6 - - - -background = ${colors.background} -foreground = ${colors.foreground} - -line-size = 3pt - -border-size = 4pt -border-color = #00000000 - -padding-left = 0 -padding-right = 1 - -module-margin = 1 - -separator = | -separator-foreground = ${colors.disabled} - -font-0 = JetBrainsMono;2 - -modules-left = xworkspaces xwindow -modules-center = date -modules-right = xkeyboard pulseaudio memory cpu - -cursor-click = pointer -cursor-scroll = ns-resize - -enable-ipc = true - -; tray-position = right - -; wm-restack = generic -; wm-restack = bspwm -; wm-restack = i3 - -; override-redirect = true - -monitor= DisplayPort-1 - -[bar/second] -width = 100% -height = 24pt -radius = 6 - -monitor= HDMI-A-0 -; dpi = 96 - -background = ${colors.background} -foreground = ${colors.foreground} - -line-size = 3pt - -border-size = 4pt -border-color = #00000000 - -padding-left = 0 -padding-right = 1 - -module-margin = 1 - -separator = | -separator-foreground = ${colors.disabled} - -font-0 = JetBrainsMono;2 - -modules-left = xwindow -modules-right = memory cpu date - -cursor-click = pointer -cursor-scroll = ns-resize - -enable-ipc = true - -; tray-position = right - -; wm-restack = generic -; wm-restack = bspwm -; wm-restack = i3 - -; override-redirect = true - -[modules/ewmh] -type = internal/xworkspaces - - - -pin-workspaces = true - - -reverse-scroll = true - -[module/xworkspaces] -type = internal/xworkspaces - -;pin-workspaces = true - -label-active = %index% -label-active-background = ${colors.background-alt} -label-active-underline= ${colors.primary} -label-active-padding = 1 - -name-0 = 0 - -icon-0 = I; -icon-1 = office;♛ -icon-2 = graphics;♜ -icon-3 = mail;♝ -icon-4 = web;♞ -icon-default = ♟ - -;format = <labe-state> - -label-occupied = %name% -label-occupied-padding = 1 - -label-urgent = %name% -label-urgent-background = ${colors.alert} -label-urgent-padding = 1 - -label-empty = %name% -label-empty-foreground = ${colors.disabled} -label-empty-padding = 1 - -[module/xwindow] -type = internal/xwindow -label = %title:0:60:...% - -[module/filesystem] -type = internal/fs -interval = 25 - -mount-0 = / - -label-mounted = %{F#F0C674}%mountpoint%%{F-} %percentage_used%% - -label-unmounted = %mountpoint% not mounted -label-unmounted-foreground = ${colors.disabled} - -[module/pulseaudio] -type = internal/pulseaudio - -format-volume-prefix = "VOL " -format-volume-prefix-foreground = ${colors.primary} -format-volume = <label-volume> - -label-volume = %percentage%% - -label-muted = muted -label-muted-foreground = ${colors.disabled} - -[module/xkeyboard] -type = internal/xkeyboard -blacklist-0 = num lock - -label-layout = %layout% -label-layout-foreground = ${colors.primary} - -label-indicator-padding = 2 -label-indicator-margin = 1 -label-indicator-foreground = ${colors.background} -label-indicator-background = ${colors.secondary} - -[module/memory] -type = internal/memory -interval = 2 -format-prefix = "RAM " -format-prefix-foreground = ${colors.primary} -label = %percentage_used:2%% - -[module/cpu] -type = internal/cpu -interval = 2 -format-prefix = "CPU " -format-prefix-foreground = ${colors.primary} -label = %percentage:2%% - -[network-base] -type = internal/network -interval = 5 -format-connected = <label-connected> -format-disconnected = <label-disconnected> -label-disconnected = %{F#F0C674}%ifname%%{F#707880} disconnected - -[module/wlan] -inherit = network-base -interface-type = wireless -label-connected = %{F#F0C674}%ifname%%{F-} %essid% %local_ip% - -[module/eth] -inherit = network-base -interface-type = wired -label-connected = %{F#F0C674}%ifname%%{F-} %local_ip% - -[module/date] -type = internal/date - -time = %H:%M -date = %A, %B %d -date-alt = %A, %B %d, %Y -time-alt = %H:%M:%S - -format-prefix = " " -format-padding = 2 -format-underline = #03001C -format-foreground = ${colors.menucol-orange} -interval = 20 - -label = %date%, %time% -label-font = 2 -label-foreground = ${colors.primary} - -[settings] -screenchange-reload = true -pseudo-transparency = true - -; vim:ft=dosini diff --git a/.config/polybar/launch.sh b/.config/polybar/launch.sh deleted file mode 100755 index be7d6de..0000000 --- a/.config/polybar/launch.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -killall -q polybar - -while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done - -# -polybar main & - -if [[ $(xrandr -q | grep 'HDMI-1-0 connected') ]]; then - polybar second & -fi diff --git a/.config/qutebrowser/README.org b/.config/qutebrowser/README.org deleted file mode 100755 index febe707..0000000 --- a/.config/qutebrowser/README.org +++ /dev/null @@ -1,8 +0,0 @@ -#+title: Qutebrowser - - -** About -+ Themes by [[https://github.com/tinted-theming/base16-qutebrowser][base16-qutebrowser]] -#+begin_src bash -git clone https://github.com/tinted-theming/base16-qutebrowser.git -#+end_src diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py deleted file mode 100755 index 907f1c3..0000000 --- a/.config/qutebrowser/config.py +++ /dev/null @@ -1,213 +0,0 @@ -import dracula.draw - -# My config - - -# Load existing settings made via :set - - -dracula.draw.blood(c, { - 'spacing': { - 'vertical': 6, - 'horizontal': 8 - } -}) - - -# Dark mode -config.set("colors.webpage.darkmode.enabled", True), - - -# start page -c.url.start_pages = ["https://thanosapollo.github.io/startpage/"] - - - -# aliases -config.bind('W', 'hint links spawn vlc {hint-url}') -config.bind('Z', 'hint links spawn alacritty -e youtube-dl {hint-url}') -config.bind('t', 'set-cmd-text -s :open -t') -config.bind('xb', 'config-cycle statusbar.show always never') -config.bind('xt', 'config-cycle tabs.show always never') -config.bind('xx', 'config-cycle statusbar.show always never;; config-cycle tabs.show always never') - -# make sure rofi is installed -config.bind('phu', 'spawn --userscript qute-pass --username-only') -config.bind('php', 'spawn --userscript qute-pass --password-only') -config.bind('n', 'fake-key <Down>') -config.bind('p', 'fake-key <Up>') -config.bind('<Ctrl-c>', 'hint') - - -# Theme - - -# Search engines -c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}', - # searx linl : 'https://searx.be/?preferences=eJxtVsty6zYM_Zpqo4mn7V105VVnum1n7t1rIBKWEJEEw4dl5esLWrJFxVnEEQ9JEAQODqgg4cCBMJ4HdBjANAbckGHAMxgZsAKDZ3QN5MSKrTeY8DwwDwYbsrKu84Fvy_lXyNhYTCPr83___vzVRLhgRAhqPP_epBEtniOV_U3AmE2KHbvO4dwl6M__gInYaKZOJtlcMZwZZHjiMDQcFYS3mBbxxPBAijVem9VYt8LFu0ahSxg6MDRY-dyMgr6CU6i7zZkV_cgYlo5clyjJ_rv35C7kKIlNFdiYFdQUoTeyHd1ATuIEfmothcCh6y5kMP7259_FMF2xpdh1WxzvaCLVdfcolVU9OK3A-q6zOZIqCLmh3lHG7bq-3ldQiZRg5feBXEkjC7b-v6Opz2rCJHtTGSdNw7B7qZR6S9dqA3t0EuqI1WEL-tojlYMh_IIEdGqpMY34KZF_3kvyQ-CSBKCyrPXQaryHmNgdIqVZ3A7tmPvNdQw8k-46FuIEGc80kYYEh01y1_I38PfoayDR8jt51AS75SRJXQ4X_ONWbbnowMWRRwwvhtQU6gUBsY18STMEbDUFVImFWus9LoHcRFCzYKBBCAUx1WcOwkJ4XL7wu8cwbMO12F7TveHewNKC93F3sp6xfCU8bPOsdZ2sEfoA5Wc7b7zv3gZkdb8HixxUlsjJJ3GO32MP--8UR95tTBJAiJW3huT8sLR8aRW7QQSgzpkRql8PeTfcx4SnEDcX4dMsgVR1oqWbMpz1jjhvt9VuAdjPtiDpwcfNSz0E9Fw550G8HSg-asrn_iTsfowWT9vnxyyEr928A8eyXaEXWq7wS34jeoJVtGqUs6jI8XYxiZcslXwxPD-iEqfcZ5fyNo7ZY8jxedfVcKFaW36efAULJSH4XCYhEhlroxrZgOyOiqT8cT02JF9aQHXtxNPCiSXlE7g9jiLqpKUwRDpSFd7sorA0jrUAgRCwtngHjoFcOKfcYyU4QGaxXISlitWVLHI1nqk_yJa0tptocqADv4rW9MxT_AoeXCjAR-aEX1dJgoJ6QYvMUlpeYF6-xE-TSp_sjor048dftz1oOmt0e0FF_HRg6_Uic4hTjTi4lszvQMj9MqB91JBHDGtEn8GyRSfliEn0Y56xr6ZCtr2p1858o4mdVEYbF8dusVj59-5PfnZHMbfSBg6dL4iHNeAxlUa9sv9b-LWQ6sk9WQ26Lx28zIuu5FtbXHkUTLjRtaZ3mduaRdX9AscY8FIvxCTUc2KwurTsoFoEZZwKrVdFp7S3umGT26oZrPL9cr0NP9Bww76pzoesFruRqpr7fNumdqgIH0jrKi02YinQ3c5jTpRPeh9svfs4H5N0wWShPG3Al0zowqV9kR9FE9xzloK8O3uoPBDrQrh6i3ijSRQ1siIw7Z2OdelXVT0Vp-4XelKMzSplfqx6vRVeWmnObQrgohEf6icGB-1o2oD93edNFtrEc-HV7bSNTgzd-lqdg7wYNz3dp0XpOjWiml5mRJM6CcaEy07M748Yiy6ugxcrI8ckRY_igOinenVgqxyJuVqf-Iu8f428Tb5ZaS7yEL7w6yUClGdZJ09AOceWBtOIvEu6z_8DjbSgWg==&q={}', - 'aw': 'https://wiki.archlinux.org/?search={}', - 'go': 'https://www.google.com/search?q={}', - 're': 'https://www.reddit.com/r/{}', - 'ub': 'https://www.urbandictionary.com/define.php?term={}', - 'yt': 'https://www.youtube.com/results?search_query={}', - 'wiki': 'https://en.wikipedia.org/w/index.php?search={}', - 'pdf': 'https://www.pdfdrive.com/{}-books.html', - 'gh': "https://github.com/search?q={}", - "au": "https://aur.archlinux.org/packages?O=0&K={}", - "skroutz": "https://www.skroutz.gr/search?keyphrase={}" - } - - - - - -# Autogenerated config.py -# -# NOTE: config.py is intended for advanced users who are comfortable -# with manually migrating the config file on qutebrowser upgrades. If -# you prefer, you can also configure qutebrowser using the -# :set/:bind/:config-* commands without having to write a config.py -# file. -# -# Documentation: -# qute://help/configuring.html -# qute://help/settings.html - -# Change the argument to True to still load settings configured via autoconfig.yml -config.load_autoconfig(False) - -# Which cookies to accept. With QtWebEngine, this setting also controls -# other features with tracking capabilities similar to those of cookies; -# including IndexedDB, DOM storage, filesystem API, service workers, and -# AppCache. Note that with QtWebKit, only `all` and `never` are -# supported as per-domain values. Setting `no-3rdparty` or `no- -# unknown-3rdparty` per-domain on QtWebKit will have the same effect as -# `all`. If this setting is used with URL patterns, the pattern gets -# applied to the origin/first party URL of the page making the request, -# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped -# from URLs, so URL patterns using paths will not match. With -# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so -# you will typically need to set this setting for `example.com` when the -# cookie is set on `somesubdomain.example.com` for it to work properly. -# To debug issues with this setting, start qutebrowser with `--debug -# --logfilter network --debug-flag log-cookies` which will show all -# cookies being set. -# Type: String -# Valid values: -# - all: Accept all cookies. -# - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail. -# - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty. -# - never: Don't accept cookies at all. -config.set('content.cookies.accept', 'all', 'chrome-devtools://*') - -# Which cookies to accept. With QtWebEngine, this setting also controls -# other features with tracking capabilities similar to those of cookies; -# including IndexedDB, DOM storage, filesystem API, service workers, and -# AppCache. Note that with QtWebKit, only `all` and `never` are -# supported as per-domain values. Setting `no-3rdparty` or `no- -# unknown-3rdparty` per-domain on QtWebKit will have the same effect as -# `all`. If this setting is used with URL patterns, the pattern gets -# applied to the origin/first party URL of the page making the request, -# not the request URL. With QtWebEngine 5.15.0+, paths will be stripped -# from URLs, so URL patterns using paths will not match. With -# QtWebEngine 5.15.2+, subdomains are additionally stripped as well, so -# you will typically need to set this setting for `example.com` when the -# cookie is set on `somesubdomain.example.com` for it to work properly. -# To debug issues with this setting, start qutebrowser with `--debug -# --logfilter network --debug-flag log-cookies` which will show all -# cookies being set. -# Type: String -# Valid values: -# - all: Accept all cookies. -# - no-3rdparty: Accept cookies from the same origin only. This is known to break some sites, such as GMail. -# - no-unknown-3rdparty: Accept cookies from the same origin only, unless a cookie is already set for the domain. On QtWebEngine, this is the same as no-3rdparty. -# - never: Don't accept cookies at all. -config.set('content.cookies.accept', 'all', 'devtools://*') - -# Value to send in the `Accept-Language` header. Note that the value -# read from JavaScript is always the global value. -# Type: String -config.set('content.headers.accept_language', '', 'https://matchmaker.krunker.io/*') - -# User agent to send. The following placeholders are defined: * -# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`: -# The underlying WebKit version (set to a fixed value with -# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for -# QtWebEngine. * `{qt_version}`: The underlying Qt version. * -# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for -# QtWebEngine. * `{upstream_browser_version}`: The corresponding -# Safari/Chrome version. * `{qutebrowser_version}`: The currently -# running qutebrowser version. The default value is equal to the -# unchanged user agent of QtWebKit/QtWebEngine. Note that the value -# read from JavaScript is always the global value. With QtWebEngine -# between 5.12 and 5.14 (inclusive), changing the value exposed to -# JavaScript requires a restart. -# Type: FormatString -config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}', 'https://web.whatsapp.com/') - -# User agent to send. The following placeholders are defined: * -# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`: -# The underlying WebKit version (set to a fixed value with -# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for -# QtWebEngine. * `{qt_version}`: The underlying Qt version. * -# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for -# QtWebEngine. * `{upstream_browser_version}`: The corresponding -# Safari/Chrome version. * `{qutebrowser_version}`: The currently -# running qutebrowser version. The default value is equal to the -# unchanged user agent of QtWebKit/QtWebEngine. Note that the value -# read from JavaScript is always the global value. With QtWebEngine -# between 5.12 and 5.14 (inclusive), changing the value exposed to -# JavaScript requires a restart. -# Type: FormatString -config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}; rv:90.0) Gecko/20100101 Firefox/90.0', 'https://accounts.google.com/*') - -# User agent to send. The following placeholders are defined: * -# `{os_info}`: Something like "X11; Linux x86_64". * `{webkit_version}`: -# The underlying WebKit version (set to a fixed value with -# QtWebEngine). * `{qt_key}`: "Qt" for QtWebKit, "QtWebEngine" for -# QtWebEngine. * `{qt_version}`: The underlying Qt version. * -# `{upstream_browser_key}`: "Version" for QtWebKit, "Chrome" for -# QtWebEngine. * `{upstream_browser_version}`: The corresponding -# Safari/Chrome version. * `{qutebrowser_version}`: The currently -# running qutebrowser version. The default value is equal to the -# unchanged user agent of QtWebKit/QtWebEngine. Note that the value -# read from JavaScript is always the global value. With QtWebEngine -# between 5.12 and 5.14 (inclusive), changing the value exposed to -# JavaScript requires a restart. -# Type: FormatString -config.set('content.headers.user_agent', 'Mozilla/5.0 ({os_info}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99 Safari/537.36', 'https://*.slack.com/*') - -# Load images automatically in web pages. -# Type: Bool -config.set('content.images', True, 'chrome-devtools://*') - -# Load images automatically in web pages. -# Type: Bool -config.set('content.images', True, 'devtools://*') - -# Enable JavaScript. -# Type: Bool -config.set('content.javascript.enabled', True, 'chrome-devtools://*') - -# Enable JavaScript. -# Type: Bool -config.set('content.javascript.enabled', True, 'devtools://*') - -# Enable JavaScript. -# Type: Bool -config.set('content.javascript.enabled', True, 'chrome://*/*') - -# Enable JavaScript. -# Type: Bool -config.set('content.javascript.enabled', True, 'qute://*/*') - -# Render all web contents using a dark theme. Example configurations -# from Chromium's `chrome://flags`: - "With simple HSL/CIELAB/RGB-based -# inversion": Set `colors.webpage.darkmode.algorithm` accordingly. - -# "With selective image inversion": Set -# `colors.webpage.darkmode.policy.images` to `smart`. - "With selective -# inversion of non-image elements": Set -# `colors.webpage.darkmode.threshold.text` to 150 and -# `colors.webpage.darkmode.threshold.background` to 205. - "With -# selective inversion of everything": Combines the two variants above. -# Type: Bool diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi deleted file mode 100755 index e965e94..0000000 --- a/.config/rofi/config.rasi +++ /dev/null @@ -1,89 +0,0 @@ - -configuration { - /*---------- General setting ----------*/ - modi: "drun,run,filebrowser,window"; - case-sensitive: false; - cycle: true; - filter: ""; - scroll-method: 0; - normalize-match: true; - show-icons: true; - icon-theme: "Papirus"; -/* cache-dir: ;*/ - steal-focus: false; -/* dpi: -1;*/ - - /*---------- Matching setting ----------*/ - matching: "normal"; - tokenize: true; - - /*---------- SSH settings ----------*/ - ssh-client: "ssh"; - ssh-command: "{terminal} -e {ssh-client} {host} [-p {port}]"; - parse-hosts: true; - parse-known-hosts: true; - - /*---------- Drun settings ----------*/ - drun-categories: ""; - drun-match-fields: "name,generic,exec,categories,keywords"; - drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]"; - drun-show-actions: false; - drun-url-launcher: "xdg-open"; - drun-use-desktop-cache: false; - drun-reload-desktop-cache: false; - drun { - /** Parse user desktop files. */ - parse-user: true; - /** Parse system desktop files. */ - parse-system: true; - } - - - /*---------- Window switcher settings ----------*/ - window-match-fields: "title,class,role,name,desktop"; - window-command: "wmctrl -i -R {window}"; - window-format: "{w} - {c} - {t:0}"; - window-thumbnail: false; - - /*---------- History and Sorting ----------*/ - disable-history: false; - sorting-method: "normal"; - max-history-size: 25; - - /*---------- Display setting ----------*/ - display-window: "Windows"; - display-windowcd: "Window CD"; - display-run: "Run"; - display-ssh: "SSH"; - display-drun: "Open"; - display-combi: "Combi"; - display-keys: "Keys"; - display-filebrowser: "Files"; - - /*---------- Misc setting ----------*/ - terminal: "rofi-sensible-terminal"; - font: "Mono 12"; - sort: false; - threads: 0; - click-to-exit: true; -/* ignored-prefixes: "";*/ -/* pid: "/run/user/1000/rofi.pid";*/ - - /*---------- File browser settings ----------*/ - filebrowser { - directory: "/home/apollo"; - directories-first: true; - sorting-method: "name"; - } - - /*---------- Other settings ----------*/ - timeout { - action: "kb-cancel"; - delay: 0; - } - -} - - -//@theme "dracula" -@theme "/usr/share/rofi/themes/Arc-Dark.rasi" diff --git a/.config/rofi/themes/dracula.rasi b/.config/rofi/themes/dracula.rasi deleted file mode 100755 index b7fa2f3..0000000 --- a/.config/rofi/themes/dracula.rasi +++ /dev/null @@ -1,140 +0,0 @@ -* { - /* Dracula theme colour palette */ - drac-bgd: #282a36; - drac-cur: #44475a; - drac-fgd: #f8f8f2; - drac-cmt: #6272a4; - drac-cya: #8be9fd; - drac-grn: #50fa7b; - drac-ora: #ffb86c; - drac-pnk: #ff79c6; - drac-pur: #bd93f9; - drac-red: #ff5555; - drac-yel: #f1fa8c; - - font: "Jetbrains Mono 12"; - - foreground: @drac-fgd; - background-color: @drac-bgd; - active-background: @drac-pnk; - urgent-background: @drac-red; - urgent-foreground: @drac-bgd; - - selected-background: @active-background; - selected-urgent-background: @urgent-background; - selected-active-background: @active-background; - separatorcolor: @active-background; - bordercolor: #6272a4; -} - -#window { - background-color: @background-color; - border: 3; - border-radius: 6; - border-color: @bordercolor; - padding: 5; -} -#mainbox { - border: 0; - padding: 5; -} -#message { - border: 1px dash 0px 0px ; - border-color: @separatorcolor; - padding: 1px ; -} -#textbox { - text-color: @foreground; -} -#listview { - fixed-height: 0; - border: 2px dash 0px 0px ; - border-color: @bordercolor; - spacing: 2px ; - scrollbar: false; - padding: 2px 0px 0px ; -} -#element { - border: 0; - padding: 1px ; -} -#element.normal.normal { - background-color: @background-color; - text-color: @foreground; -} -#element.normal.urgent { - background-color: @urgent-background; - text-color: @urgent-foreground; -} -#element.normal.active { - background-color: @active-background; - text-color: @background-color; -} -#element.selected.normal { - background-color: @selected-background; - text-color: @foreground; -} -#element.selected.urgent { - background-color: @selected-urgent-background; - text-color: @foreground; -} -#element.selected.active { - background-color: @selected-active-background; - text-color: @background-color; -} -#element.alternate.normal { - background-color: @background-color; - text-color: @foreground; -} -#element.alternate.urgent { - background-color: @urgent-background; - text-color: @foreground; -} -#element.alternate.active { - background-color: @active-background; - text-color: @foreground; -} -#scrollbar { - width: 2px ; - border: 0; - handle-width: 8px ; - padding: 0; -} -#sidebar { - border: 2px dash 0px 0px ; - border-color: @separatorcolor; -} -#button.selected { - background-color: @selected-background; - text-color: @foreground; -} -#inputbar { - spacing: 0; - text-color: @foreground; - padding: 1px ; -} -#case-indicator { - spacing: 0; - text-color: @foreground; -} -#entry { - spacing: 0; - text-color: @drac-cya; -} -#prompt { - spacing: 0; - text-color: @drac-grn; -} -#inputbar { - children: [ prompt,textbox-prompt-colon,entry,case-indicator ]; -} -#textbox-prompt-colon { - expand: false; - str: ":"; - margin: 0px 0.3em 0em 0em ; - text-color: @drac-grn; -} -element-text, element-icon { - background-color: inherit; - text-color: inherit; -} diff --git a/.config/rofi/themes/launchpad.rasi b/.config/rofi/themes/launchpad.rasi deleted file mode 100755 index 14c2564..0000000 --- a/.config/rofi/themes/launchpad.rasi +++ /dev/null @@ -1,94 +0,0 @@ -/******************************************************************************* - * MACOS LAUNCHPAD LIKE THEME FOR ROFI - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "Montserrat 9"; - - bg0: #24242480; - bg1: #363636; - bg2: #f5f5f520; - bg3: #f5f5f540; - bg4: #0860f2E6; - - fg0: #f5f5f5; - fg1: #f5f5f580; - - background-color: transparent; - text-color: @fg0; - padding: 0px; - margin: 0px; -} - -window { - fullscreen: true; - padding: 1em; - background-color: @bg0; -} - -mainbox { - padding: 8px; -} - -inputbar { - background-color: @bg2; - - margin: 0px calc( 50% - 120px ); - padding: 2px 4px; - spacing: 4px; - - border: 1px; - border-radius: 2px; - border-color: @bg3; - - children: [icon-search,entry]; -} - -prompt { - enabled: false; -} - -icon-search { - expand: false; - filename: "search"; - vertical-align: 0.5; -} - -entry { - placeholder: "Search"; - placeholder-color: @bg2; -} - -listview { - margin: 48px calc( 50% - 560px ); - spacing: 48px; - columns: 6; - fixed-columns: true; -} - -element, element-text, element-icon { - cursor: pointer; -} - -element { - padding: 8px; - spacing: 4px; - - orientation: vertical; - border-radius: 16px; -} - -element selected { - background-color: @bg4; -} - -element-icon { - size: 4em; - horizontal-align: 0.5; -} - -element-text { - horizontal-align: 0.5; -} diff --git a/.config/rofi/themes/nord.rasi b/.config/rofi/themes/nord.rasi deleted file mode 100755 index 236a77d..0000000 --- a/.config/rofi/themes/nord.rasi +++ /dev/null @@ -1,106 +0,0 @@ -/******************************************************************************* - * 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: "IBM Plex Mono 12"; - - nord0: #2e3440; - nord1: #3b4252; - nord2: #434c5e; - nord3: #4c566a; - - nord4: #d8dee9; - nord5: #e5e9f0; - nord6: #eceff4; - - nord7: #8fbcbb; - nord8: #88c0d0; - nord9: #81a1c1; - nord10: #5e81ac; - nord11: #bf616a; - - nord12: #d08770; - nord13: #ebcb8b; - nord14: #a3be8c; - nord15: #b48ead; - - background-color: transparent; - text-color: @nord4; - accent-color: @nord8; - - margin: 0px; - padding: 0px; - spacing: 0px; -} - -window { - background-color: @nord0; - border-color: @accent-color; - - location: center; - width: 480px; - y-offset: -160px; - border: 1px; -} - -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; -} diff --git a/.config/rofi/themes/simple-tokyonight.rasi b/.config/rofi/themes/simple-tokyonight.rasi deleted file mode 100755 index 0b6f9fa..0000000 --- a/.config/rofi/themes/simple-tokyonight.rasi +++ /dev/null @@ -1,111 +0,0 @@ -* { - font: "Iosevka Nerd Font Medium 11"; - - bg0 : #1a1b26; - bg1 : #1f2335; - bg2 : #24283b; - bg3 : #414868; - fg0 : #c0caf5; - fg1 : #a9b1d6; - fg2 : #737aa2; - red : #f7768e; - green : #9ece6a; - yellow : #e0af68; - blue : #7aa2f7; - magenta : #9a7ecc; - cyan : #4abaaf; - - accent: @red; - urgent: @yellow; - - background-color : transparent; - text-color : @fg0; - - margin : 0; - padding : 0; - spacing : 0; -} - -element-icon, element-text, scrollbar { - cursor: pointer; -} - -window { - location : northwest; - width : 280px; - x-offset : 4px; - y-offset : 26px; - - background-color: @bg1; - border: 1px; - border-color: @bg3; - border-radius: 6px; -} - -inputbar { - spacing : 8px; - padding : 4px 8px; - children : [ icon-search, entry ]; - - background-color: @bg0; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -icon-search { - expand : false; - filename : "search-symbolic"; - size : 14px; -} - -textbox { - padding : 4px 8px; - background-color : @bg2; -} - -listview { - padding : 4px 0px; - lines : 12; - columns : 1; - scrollbar : true; - fixed-height : false; - dynamic : true; -} - -element { - padding : 4px 8px; - spacing : 8px; -} - -element normal urgent { - text-color: @urgent; -} - -element normal active { - text-color: @accent; -} - -element selected { - text-color : @bg1; - background-color : @accent; -} - -element selected urgent { - background-color: @urgent; -} - -element-icon { - size: 0.8em; -} - -element-text { - text-color: inherit; -} - -scrollbar { - handle-width : 4px; - handle-color : @fg2; - padding : 0 4px; -} diff --git a/.config/rofi/themes/spotlight-dark.rasi b/.config/rofi/themes/spotlight-dark.rasi deleted file mode 100755 index 2e68c69..0000000 --- a/.config/rofi/themes/spotlight-dark.rasi +++ /dev/null @@ -1,99 +0,0 @@ -/******************************************************************************* - * MACOS SPOTLIGHT LIKE DARK THEME FOR ROFI - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "Montserrat 12"; - - bg0: #242424E6; - bg1: #7E7E7E80; - bg2: #0860f2E6; - - fg0: #DEDEDE; - fg1: #FFFFFF; - fg2: #DEDEDE80; - - background-color: transparent; - text-color: @fg0; - - margin: 0; - padding: 0; - spacing: 0; -} - -window { - background-color: @bg0; - - location: center; - width: 640; - y-offset: -200; - border-radius: 8; -} - -inputbar { - font: "Montserrat 20"; - padding: 12px; - spacing: 12px; - children: [ icon-search, entry ]; -} - -icon-search { - expand: false; - filename: "search"; - size: 28px; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -entry { - font: inherit; - - placeholder : "Search"; - placeholder-color : @fg2; -} - -message { - border: 2px 0 0; - border-color: @bg1; - background-color: @bg1; -} - -textbox { - padding: 8px 24px; -} - -listview { - lines: 10; - columns: 1; - - fixed-height: false; - border: 1px 0 0; - border-color: @bg1; -} - -element { - padding: 8px 16px; - spacing: 16px; - background-color: transparent; -} - -element normal active { - text-color: @bg2; -} - -element selected normal, element selected active { - background-color: @bg2; - text-color: @fg1; -} - -element-icon { - size: 1em; -} - -element-text { - text-color: inherit; -} diff --git a/.config/rofi/themes/spotlight.rasi b/.config/rofi/themes/spotlight.rasi deleted file mode 100755 index 3f17463..0000000 --- a/.config/rofi/themes/spotlight.rasi +++ /dev/null @@ -1,99 +0,0 @@ -/******************************************************************************* - * MACOS SPOTLIGHT LIKE THEME FOR ROFI - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "Montserrat 12"; - - bg0: #F5F5F5BF; - bg1: #7E7E7E80; - bg2: #0860F2E6; - - fg0: #242424; - fg1: #FFFFFF; - fg2: #24242480; - - background-color: transparent; - text-color: @fg0; - - margin: 0; - padding: 0; - spacing: 0; -} - -window { - background-color: @bg0; - - location: center; - width: 640; - y-offset: -200; - border-radius: 8; -} - -inputbar { - font: "Montserrat 20"; - padding: 12px; - spacing: 12px; - children: [ icon-search, entry ]; -} - -icon-search { - expand: false; - filename: "search"; - size: 28px; -} - -icon-search, entry, element-icon, element-text { - vertical-align: 0.5; -} - -entry { - font: inherit; - - placeholder : "Search"; - placeholder-color : @fg2; -} - -message { - border: 2px 0 0; - border-color: @bg1; - background-color: @bg1; -} - -textbox { - padding: 8px 24px; -} - -listview { - lines: 10; - columns: 1; - - fixed-height: false; - border: 1px 0 0; - border-color: @bg1; -} - -element { - padding: 8px 16px; - spacing: 16px; - background-color: transparent; -} - -element normal active { - text-color: @bg2; -} - -element selected normal, element selected active { - background-color: @bg2; - text-color: @fg1; -} - -element-icon { - size: 1em; -} - -element-text { - text-color: inherit; -} diff --git a/.config/rofi/themes/squared-everforest.rasi b/.config/rofi/themes/squared-everforest.rasi deleted file mode 100755 index 065966c..0000000 --- a/.config/rofi/themes/squared-everforest.rasi +++ /dev/null @@ -1,96 +0,0 @@ -/******************************************************************************* - * ROFI SQUARED THEME USING THE EVERFOREST PALETTE - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "FiraCode Nerd Font Medium 12"; - - bg0: #2B3339; - bg1: #323D43; - fg0: #D3C6AA; - - accent-color: #A7C080; - urgent-color: #DBBC7F; - - background-color: transparent; - text-color: @fg0; - - margin: 0; - padding: 0; - spacing: 0; -} - -window { - location: center; - width: 480; - y-offset: -160; - - background-color: @bg0; -} - -inputbar { - spacing: 8px; - padding: 8px; - - background-color: @bg1; -} - -prompt, entry, element-icon, element-text { - vertical-align: 0.5; -} - -prompt { - text-color: @accent-color; -} - -textbox { - padding: 8px; - background-color: @bg1; -} - -listview { - padding: 4px 0; - lines: 8; - columns: 1; - - fixed-height: false; -} - -element { - padding: 8px; - spacing: 8px; -} - -element normal normal { - text-color: @fg0; -} - -element normal urgent { - text-color: @urgent-color; -} - -element normal active { - text-color: @accent-color; -} - -element selected { - text-color: @bg0; -} - -element selected normal, element selected active { - background-color: @accent-color; -} - -element selected urgent { - background-color: @urgent-color; -} - -element-icon { - size: 0.8em; -} - -element-text { - text-color: inherit; -} diff --git a/.config/rofi/themes/squared-material-red.rasi b/.config/rofi/themes/squared-material-red.rasi deleted file mode 100755 index 5b3964b..0000000 --- a/.config/rofi/themes/squared-material-red.rasi +++ /dev/null @@ -1,96 +0,0 @@ -/******************************************************************************* - * ROFI SQUARED THEME USING THE MATERIAL DARKER PALETTE - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "FiraCode Nerd Font Medium 12"; - - bg0: #212121; - bg1: #404040; - fg0: #eeffff; - - accent-color: #f07178; - urgent-color: #ffcb6b; - - background-color: transparent; - text-color: @fg0; - - margin: 0; - padding: 0; - spacing: 0; -} - -window { - location: center; - width: 480; - y-offset: -160; - - background-color: @bg0; -} - -inputbar { - spacing: 8px; - padding: 8px; - - background-color: @bg1; -} - -prompt, entry, element-icon, element-text { - vertical-align: 0.5; -} - -prompt { - text-color: @accent-color; -} - -textbox { - padding: 8px; - background-color: @bg1; -} - -listview { - padding: 4px 0; - lines: 8; - columns: 1; - - fixed-height: false; -} - -element { - padding: 8px; - spacing: 8px; -} - -element normal normal { - text-color: @fg0; -} - -element normal urgent { - text-color: @urgent-color; -} - -element normal active { - text-color: @accent-color; -} - -element selected { - text-color: @bg0; -} - -element selected normal, element selected active { - background-color: @accent-color; -} - -element selected urgent { - background-color: @urgent-color; -} - -element-icon { - size: 0.8em; -} - -element-text { - text-color: inherit; -} diff --git a/.config/rofi/themes/squared-nord.rasi b/.config/rofi/themes/squared-nord.rasi deleted file mode 100755 index 3baa8f0..0000000 --- a/.config/rofi/themes/squared-nord.rasi +++ /dev/null @@ -1,96 +0,0 @@ -/******************************************************************************* - * ROFI SQUARED THEME USING THE NORD PALETTE - * User : LR-Tech - * Theme Repo : https://github.com/lr-tech/rofi-themes-collection - *******************************************************************************/ - -* { - font: "FiraCode Nerd Font Medium 12"; - - bg0: #2E3440; - bg1: #3B4252; - fg0: #D8DEE9; - - accent-color: #88C0D0; - urgent-color: #EBCB8B; - - background-color: transparent; - text-color: @fg0; - - margin: 0; - padding: 0; - spacing: 0; -} - -window { - location: center; - width: 480; - y-offset: -160; - - background-color: @bg0; -} - -inputbar { - spacing: 8px; - padding: 8px; - - background-color: @bg1; -} - -prompt, entry, element-icon, element-text { - vertical-align: 0.5; -} - -prompt { - text-color: @accent-color; -} - -textbox { - padding: 8px; - background-color: @bg1; -} - -listview { - padding: 4px 0; - lines: 8; - columns: 1; - - fixed-height: false; -} - -element { - padding: 8px; - spacing: 8px; -} - -element normal normal { - text-color: @fg0; -} - -element normal urgent { - text-color: @urgent-color; -} - -element normal active { - text-color: @accent-color; -} - -element selected { - text-color: @bg0; -} - -element selected normal, element selected active { - background-color: @accent-color; -} - -element selected urgent { - background-color: @urgent-color; -} - -element-icon { - size: 0.8em; -} - -element-text { - text-color: inherit; -} diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc deleted file mode 100644 index 98881f3..0000000 --- a/.config/waybar/config.jsonc +++ /dev/null @@ -1,115 +0,0 @@ -{ - "layer": "top", - "position": "top", - "mod": "dock", - "exclusive": true, - "passthrough": false, - "gtk-layer-shell": true, - "height": 0, - "modules-left": [ - "clock", - "custom/weather" - // "hyprland/window", - ], - "modules-center": ["wlr/workspaces"], - "modules-right": [ - "tray", - "custom/updates", - "custom/language", - "battery", - "backlight", - "custom/volume" - // "pulseaudio#microphone" - ], - - "hyprland/window": { - "format": "{}" - }, - "wlr/workspaces": { - "disable-scroll": true, - "all-outputs": true, - "on-click": "activate", - //"format": "{icon}", - "persistent_workspaces": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [], - "6": [], - "7": [], - "8": [], - "9": [], - "10": [] - } - }, - "custom/updates": { - "exec": "(pacman -Qu ; paru -Qua) | wc -l", - "interval": 7200, - "format": " {}" - }, - "custom/weather" : { - "tooltip" : true, - "format" : "{}", - "interval" : 30, - "exec" : "~/.config/waybar/scripts/waybar-wttr.py", - "return-type" : "json" - }, - "tray": { - "icon-size": 13, - "spacing": 10 - }, - "clock": { - "format": "{: %R %d/%m}", - "tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>" - }, - "backlight": { - "device": "intel_backlight", - "format": "{icon} {percent}%", - "format-icons": ["", "", ""], - "on-scroll-up": "brightnessctl set 1%+", - "on-scroll-down": "brightnessctl set 1%-", - "min-length": 6 - }, - "battery": { - "states": { - "good": 95, - "warning": 30, - "critical": 20 - }, - "format": "{icon} {capacity}%", - "format-charging": " {capacity}%", - "format-plugged": " {capacity}%", - "format-alt": "{time} {icon}", - "format-icons": ["", "", "", "", "", "", "", "", "", "", ""] - }, - "pulseaudio": { - "format": "{icon} {volume}%", - "tooltip": false, - "format-muted": " Muted", - "on-click": "pamixer -t", - "on-scroll-up": "pamixer -i 5", - "on-scroll-down": "pamixer -d 5", - "scroll-step": 5, - "format-icons": { - "headphone": "", - "hands-free": "", - "headset": "", - "phone": "", - "portable": "", - "car": "", - "default": ["", "", ""] - } - }, - "custom/volume": { - "exec": "~/.config/waybar/scripts/sound.sh", - "interval": 1, - "format": " {}", - "tooltip": true - } - // "custom/pipewire": { - // "format": {}, - // "exec": "awk -F"[][]" '/Left:/ { print $2 }' <(amixer sget Master)", - // "interval": 10 - // }, -} diff --git a/.config/waybar/scripts/sound.sh b/.config/waybar/scripts/sound.sh deleted file mode 100755 index 8c19a5b..0000000 --- a/.config/waybar/scripts/sound.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -awk -F"[][]" '/Left:/ { print $2 }' <(amixer sget Master) diff --git a/.config/waybar/scripts/waybar-wttr.py b/.config/waybar/scripts/waybar-wttr.py deleted file mode 100755 index 08b49a6..0000000 --- a/.config/waybar/scripts/waybar-wttr.py +++ /dev/null @@ -1,119 +0,0 @@ -#!/usr/bin/env python - -import json -import requests -from datetime import datetime - -WEATHER_CODES = { - '113': '☀️ ', - '116': '⛅ ', - '119': '☁️ ', - '122': '☁️ ', - '143': '☁️ ', - '176': '🌧️', - '179': '🌧️', - '182': '🌧️', - '185': '🌧️', - '200': '⛈️ ', - '227': '🌨️', - '230': '🌨️', - '248': '☁️ ', - '260': '☁️ ', - '263': '🌧️', - '266': '🌧️', - '281': '🌧️', - '284': '🌧️', - '293': '🌧️', - '296': '🌧️', - '299': '🌧️', - '302': '🌧️', - '305': '🌧️', - '308': '🌧️', - '311': '🌧️', - '314': '🌧️', - '317': '🌧️', - '320': '🌨️', - '323': '🌨️', - '326': '🌨️', - '329': '❄️ ', - '332': '❄️ ', - '335': '❄️ ', - '338': '❄️ ', - '350': '🌧️', - '353': '🌧️', - '356': '🌧️', - '359': '🌧️', - '362': '🌧️', - '365': '🌧️', - '368': '🌧️', - '371': '❄️', - '374': '🌨️', - '377': '🌨️', - '386': '🌨️', - '389': '🌨️', - '392': '🌧️', - '395': '❄️ ' -} - -data = {} - - -weather = requests.get("https://wttr.in/?format=j1").json() - - -def format_time(time): - return time.replace("00", "").zfill(2) - - -def format_temp(temp): - return (hour['FeelsLikeC']+"°").ljust(3) - - -def format_chances(hour): - chances = { - "chanceoffog": "Fog", - "chanceoffrost": "Frost", - "chanceofovercast": "Overcast", - "chanceofrain": "Rain", - "chanceofsnow": "Snow", - "chanceofsunshine": "Sunshine", - "chanceofthunder": "Thunder", - "chanceofwindy": "Wind" - } - - conditions = [] - for event in chances.keys(): - if int(hour[event]) > 0: - conditions.append(chances[event]+" "+hour[event]+"%") - return ", ".join(conditions) - -tempint = int(weather['current_condition'][0]['FeelsLikeC']) -extrachar = '' -if tempint > 0 and tempint < 10: - extrachar = '+' - - -data['text'] = ' '+WEATHER_CODES[weather['current_condition'][0]['weatherCode']] + \ - " "+extrachar+weather['current_condition'][0]['FeelsLikeC']+"°" - -data['tooltip'] = f"<b>{weather['current_condition'][0]['weatherDesc'][0]['value']} {weather['current_condition'][0]['temp_C']}°</b>\n" -data['tooltip'] += f"Feels like: {weather['current_condition'][0]['FeelsLikeC']}°\n" -data['tooltip'] += f"Wind: {weather['current_condition'][0]['windspeedKmph']}Km/h\n" -data['tooltip'] += f"Humidity: {weather['current_condition'][0]['humidity']}%\n" -for i, day in enumerate(weather['weather']): - data['tooltip'] += f"\n<b>" - if i == 0: - data['tooltip'] += "Today, " - if i == 1: - data['tooltip'] += "Tomorrow, " - data['tooltip'] += f"{day['date']}</b>\n" - data['tooltip'] += f"⬆️ {day['maxtempF']}° ⬇️ {day['mintempF']}° " - data['tooltip'] += f"🌅 {day['astronomy'][0]['sunrise']} 🌇 {day['astronomy'][0]['sunset']}\n" - for hour in day['hourly']: - if i == 0: - if int(format_time(hour['time'])) < datetime.now().hour-2: - continue - data['tooltip'] += f"{format_time(hour['time'])} {WEATHER_CODES[hour['weatherCode']]} {format_temp(hour['FeelsLikeC'])} {hour['weatherDesc'][0]['value']}, {format_chances(hour)}\n" - - -print(json.dumps(data)) diff --git a/.config/waybar/style.css b/.config/waybar/style.css deleted file mode 100644 index bcfb4b0..0000000 --- a/.config/waybar/style.css +++ /dev/null @@ -1,149 +0,0 @@ -* { - border: none; - border-radius: 0; - font-family: Jetbrains Mono, Cartograph CF Nerd Font, monospace; - font-weight: bold; - font-size: 14px; - min-height: 0; -} - -window#waybar { - background: rgba(21, 18, 27, 0); - color: #cdd6f4; -} - -tooltip { - background: #0d1017; - border-radius: 10px; - border-width: 2px; - border-style: solid; - border-color: #11111b; -} - -#workspaces button { - padding: 5px; - color: #313244; - margin-right: 5px; -} - -#workspaces button.active { - color: #39bae6; -} - -#workspaces button.focused { - color: #a6adc8; - background: #eba0ac; - border-radius: 10px; -} - -#workspaces button.urgent { - color: #11111b; - background: #a6e3a1; - border-radius: 10px; -} - -#workspaces button:hover { - background: #11111b; - color: #cdd6f4; - border-radius: 10px; -} - -#custom-language, -#custom-updates, -#custom-caffeine, -#custom-weather, -#window, -#clock, -#battery, -#pulseaudio, -#custrom-volume, -#network, -#workspaces, -#tray, -#backlight { - background: #0d1017; - padding: 0px 10px; - margin: 3px 0px; - margin-top: 10px; - border: 1px solid #181825; -} - -#tray { - border-radius: 10px; - margin-right: 10px; -} - -#workspaces { - background: #0d1017; - border-radius: 10px; - margin-left: 10px; - padding-right: 0px; - padding-left: 5px; -} - -#custom-caffeine { - color: #89dceb; - border-radius: 10px 0px 0px 10px; - border-right: 0px; - margin-left: 10px; -} - -#custom-language { - color: #f38ba8; - border-left: 0px; - border-right: 0px; -} - -#custom-updates { - color: #ff8f40; - border-left: 0px; - border-right: 0px; -} - -#window { - border-radius: 10px; - margin-left: 20px; - margin-right: 60px; -} - -#clock { - color: #39bae6; - border-radius: 10px 0px 0px 10px; - margin-left: 0px; - border-right: 0px; -} - -#network { - color: #f9e2af; - border-left: 0px; - border-right: 0px; -} - -#pulseaudio { - color: #59c2ff; - border-left: 5px; - border-right: 5px; -} -#custom-volume { - background: #0d1017; - color: #59c2ff; - padding: 8px; - margin-top: 11px; - margin-bottom: 3px; - border-left: 0px; - border-right: 0px; -} - -#battery { - color: #a6e3a1; - border-radius: 0 10px 10px 0; - margin-right: 10px; - border-left: 0px; - -} - -#custom-weather { - border-radius: 0px 10px 10px 0px; - border-right: 0px; - margin-left: 0px; -} diff --git a/.mbsyncrc b/.mbsyncrc deleted file mode 100755 index c6bb60d..0000000 --- a/.mbsyncrc +++ /dev/null @@ -1,27 +0,0 @@ -IMAPAccount fastmail -Host imap.fastmail.com -Port 993 -User [email protected] -PassCmd "pass show fastmail.com/thanosapollo.com | sed -n '3p'" -SSLType IMAPS -SSLVersions TLSv1.2 -CertificateFile /etc/ssl/certs/ca-certificates.crt - -IMAPStore fastmail-remote -Account fastmail - -MaildirStore fastmail-local -Path ~/Mail/Fastmail/ -Inbox ~/Mail/Fastmail/Inbox -Trash ~/Mail/Fastmail/Trash/ -SubFolders Verbatim - -Channel fastmail -Far :fastmail-remote: -Near :fastmail-local: -Patterns * -Expunge None -CopyArrivalDate yes -Sync All -Create Both -SyncState * diff --git a/.moc/config b/.moc/config deleted file mode 100755 index 5d8192e..0000000 --- a/.moc/config +++ /dev/null @@ -1,691 +0,0 @@ -# This is a configuration file for the MOC player. It should be named -# 'config' and placed in the ~/.moc directory. As this file can specify -# commands which invoke other applications, MOC will refuse to start if it -# is not owned by either root or the current user, or if it is writable by -# anyone other than its owner. All options are given with their default -# values, and therefore commented. - -# Comments begin with '#'. -# You can use quotes and escape ('\') in parameters. -# -# You can have variable values substituted by enclosing the variable name -# as "${...}". (This only applies to the portion of the option following -# the '='.) Variables are substituted first from the environment then, -# if not found, from the configuration options. (Note that the value of -# a configuration option substituted is that which it has at the time the -# substitution variable is encountered.) If there is a naming conflict -# between an environment and configuration variable, you may be able to -# resolve it by using lowercase as the environment variable matches are -# case-sensitive whereas the configuration variables are not. -# -# You can also use the form "${...:-...}" where the value in the second -# position will be substituted if the variable name given in the first -# position is unset or null. -# -# So, for example: -# -# MusicDir = /music/${USER:-public} -# Fastdir1 = ${MusicDir}/mp3/rock -# Fastdir2 = ${MusicDir}/mp3/electronic -# Fastdir3 = ${MusicDir}/mp3/rap -# Fastdir4 = ${MusicDir}/mp3/etc -# -# Variable names are limited to those accepted by the BASH shell; that -# is, those comprising the upper- and lowercase ASCII characters, digits -# and the underscore. -# -# If you need to use the "${" sequence for any other purpose, write "$${" -# and it will be replaced by "${" and not treated as a substitution. -# -# Some options take lists of strings as their values. The strings are -# separated by colons. Additional strings can be appended to the list -# using "+=" in place of a plain "=" to assign the value. For an example, -# see the XTerms option. -# -# You can override any configuration option when you run MOC using the -# '-O' command line option: -# -# mocp -O AutoNext=no -O messagelingertime=1 -O XTerms+=xxt:xwt -# -# This command line option can be repeated as many times as needed and -# the configuration option name is not case sensitive. (Note that MOC -# does not perform variable substitution on the value of such overridden -# configuration options.) Most option values are set before the -# configuration file is processed (which allows the new values to be -# picked up by substitutions), however list-valued options are overridden -# afterwards (which gives the choice of whether the configured values are -# replaced or added to). - -# Remember that the client and server are separate processes and the -# server will retain the configuration values formed from the environment -# within which it was originally started. - -# Show file titles (title, author, album) instead of file names? -#ReadTags = yes - -# In which directory do you store your music files? If you specify it -# you will be able to jump straight to this directory with the '-m' -# parameter or the 'm' command. This can also point to a playlist. -# -# Example: MusicDir = "/home/joe/music" -# -MusicDir = /home/apollo/Music - -# Start in the music directory by default? If set to 'no', start -# in the current directory by default. A single directory on -# the command line takes precedence. -StartInMusicDir = yes - -# How to sort? FileName is the option's only value for now. -Sort = FileName - -# Show errors in the streams (for example, broken frames in MP3 files)? -ShowStreamErrors = no - -# Ignore CRC errors in MP3 files? Most players do that, so the default -# value is 'yes'. -#MP3IgnoreCRCErrors = yes - -# Set playback toggles. -#Repeat = no -#Shuffle = no -AutoNext = yes - -# Default FormatString: -# -# %n - Track number -# %a - Artist -# %A - Album -# %t - Title -# %(X:TRUE:FALSE) - Ternary expression: if X exists, do TRUE, -# otherwise FALSE. The escape character must -# be doubled (i.e., '\\'). (See zshmisc -# documentation for more information.) -# -#FormatString = "%(n:%n :)%(a:%a - :)%(t:%t:)%(A: \(%A\):)" - -# Input and output buffer sizes (in kilobytes). -#InputBuffer = 512 # Minimum value is 32KB -#OutputBuffer = 512 # Minimum value is 128KB - -# How much to fill the input buffer before playing (in kilobytes)? -# This can't be greater than the value of InputBuffer. While this has -# a positive effect for network streams, it also causes the broadcast -# audio to be delayed. -#Prebuffering = 64 - -# Use this HTTP proxy server for internet streams. If not set, the -# environment variables http_proxy and ALL_PROXY will be used if present. -# -# Format: HTTPProxy = PROXY_NAME:PORT -# -#HTTPProxy = - -# Sound driver - OSS, ALSA, JACK, SNDIO (on OpenBSD) or null (only for -# debugging). You can enter more than one driver as a colon-separated -# list. The first working driver will be used. -SoundDriver = PULSEAUDIO:JACK:ALSA:OSS - -# Jack output settings. -# JackClientName = "moc" -# JackStartServer = no -# JackOutLeft = "system:playback_1" -# JackOutRight = "system:playback_2" - -# OSS output settings. -#OSSDevice = /dev/dsp -#OSSMixerDevice = /dev/mixer -#OSSMixerChannel1 = pcm # 'pcm', 'master' or 'speaker' -#OSSMixerChannel2 = master # 'pcm', 'master' or 'speaker' - -# ALSA output settings. If you need to dump the audio produced by MOC -# to a file for diagnostic purposes, the following setting of 'ALSADevice' -# should do that: -# -#ALSADevice=tee:hw,'/tmp/out.wav',wav -# -#ALSADevice = default -#ALSAMixer1 = PCM -ALSAMixer2 = Master - -# Under some circumstances on 32-bit systems, audio played continously -# for long periods of time may begin to stutter. Setting this option to -# 'yes' will force MOC to avoid ALSA's dmix resampling and prevent this -# stutter. But it also has other implications: -# -# - You may experience unacceptably high CPU load. -# - ALSA's resampler plug-ins will not be used. -# - The resampling may be of lower quality than ALSA would provide. -# - You may need to try different "ResampleMethod" option settings. -# - The "ForceSampleRate" option may be ineffective. -# - If libsamplerate is not configured, many audios may be unplayable. -# -#ALSAStutterDefeat = no - -# Save software mixer state? -# If enabled, a file 'softmixer' will be created in '~/.moc/' storing the -# mixersetting set when the server is shut down. -# Note that there is a "hidden" 'Amplification' setting in that file. -# Amplification (0-200) is used to scale the mixer setting (0-100). This -# results in a higher signal amplitude but may also produce clipping. -#Softmixer_SaveState = yes - -# Save equalizer state? -# If enabled, a file 'equalizer' will be created in '~/.moc/' storing the -# equalizer settings when the server is shut down. -# Note that there is a "hidden" 'Mixin' setting in that file. -# Mixin (0.0-1.0) is used to determine how much of the original signal is -# used after equalizing. 0 means to only use the equalized sound, while 1 -# effectively disabled the mixer. The default is 0.25. -#Equalizer_SaveState = yes - -# Show files with dot at the beginning? -#ShowHiddenFiles = no - -# Hide file name extensions? -#HideFileExtension = no - -# Show file format in menu? -#ShowFormat = yes - -# Show file time in menu? Possible values: 'yes', 'no' and 'IfAvailable' -# (meaning show the time only when it is already known, which often works -# faster). -#ShowTime = IfAvailable - -# Show time played as a percentage in the time progress bar. -#ShowTimePercent = no - -# Values of the TERM environment variable which are deemed to be managed by -# screen(1). If you are setting a specific terminal using screen(1)'s -# '-T <term>' option, then you will need to add 'screen.<term>' to this list. -# Note that this is only a partial test; the value of the WINDOW environment -# variable must also be a number (which screen(1) sets). -#ScreenTerms = screen:screen-w:vt100 - -# Values of the TERM environment variable which are deemed to be xterms. If -# you are using MOC within screen(1) under an xterm, then add screen(1)'s -# TERM setting here as well to cause MOC to update the xterm's title. -#XTerms = xterm -#XTerms += xterm-colour:xterm-color -#XTerms += xterm-256colour:xterm-256color -#XTerms += rxvt:rxvt-unicode -#XTerms += rxvt-unicode-256colour:rxvt-unicode-256color -#XTerms += eterm - -# Theme file to use. This can be absolute path or relative to -# /usr/share/moc/themes/ (depends on installation prefix) or -# ~/.moc/themes/ . -# -# Example: Theme = laras_theme -# -Theme = nightly_enhanced - -# The theme used when running on an xterm. -# -# Example: XTermTheme = transparent-background -# -#XTermTheme = - -# Should MOC try to autoload the default lyrics file for an audio? (The -# default lyrics file is a text file with the same file name as the audio -# file name with any trailing "extension" removed.) -#AutoLoadLyrics = yes - -# MOC directory (where pid file, socket and state files are stored). -# You can use ~ at the beginning. -#MOCDir = ~/.moc - -# Use mmap() to read files. mmap() is much slower on NFS. -#UseMMap = no - -# Use MIME to identify audio files. This can make for slower loading -# of playlists but is more accurate than using "extensions". -#UseMimeMagic = no - -# Assume this encoding for ID3 version 1/1.1 tags (MP3 files). Unlike -# ID3v2, UTF-8 is not used here and MOC can't guess how tags are encoded. -# Another solution is using librcc (see the next option). This option is -# ignored if UseRCC is set to 'yes'. -#ID3v1TagsEncoding = WINDOWS-1250 - -# Use librcc to fix ID3 version 1/1.1 tags encoding. -#UseRCC = yes - -# Use librcc to filenames and directory names encoding. -#UseRCCForFilesystem = yes - -# When this option is set the player assumes that if the encoding of -# ID3v2 is set to ISO-8859-1 then the ID3v1TagsEncoding is actually -# that and applies appropriate conversion. -#EnforceTagsEncoding = no - -# Enable the conversion of filenames from the local encoding to UTF-8. -#FileNamesIconv = no - -# Enable the conversion of the xterm title from UTF-8 to the local encoding. -#NonUTFXterm = no - -# Should MOC precache files to assist gapless playback? -#Precache = yes - -# Remember the playlist after exit? -#SavePlaylist = yes - -# When using more than one client (interface) at a time, do they share -# the playlist? -#SyncPlaylist = yes - -# Choose a keymap file (relative to '~/.moc/' or using an absolute path). -# An annotated example keymap file is included ('keymap.example'). -# -# Example: Keymap = my_keymap -# -Keymap = keymap - -# Use ASCII rather than graphic characters for drawing lines. This -# helps on some terminals. -#ASCIILines = no - -# FastDirs, these allow you to jump directly to a directory, the key -# bindings are in the keymap file. -# -# Examples: Fastdir1 = /mp3/rock -# Fastdir2 = /mp3/electronic -# Fastdir3 = /mp3/rap -# Fastdir4 = /mp3/etc -# -#Fastdir1 = -#Fastdir2 = -#Fastdir3 = -#Fastdir4 = -#Fastdir5 = -#Fastdir6 = -#Fastdir7 = -#Fastdir8 = -#Fastdir9 = -#Fastdir10 = - -# How fast to seek (in number of seconds per keystroke). The first -# option is for normal seek and the second for silent seek. -#SeekTime = 1 -#SilentSeekTime = 5 - -# PreferredDecoders allows you to specify which decoder should be used -# for any given audio format. It is a colon-separated list in which -# each entry is of the general form 'code(decoders)', where 'code' -# identifies the audio format and 'decoders' is a comma-separated list -# of decoders in order of preference. -# -# The audio format identifier may be either a filename extension or a -# MIME media type. If the latter, the format is 'type/subtype' (e.g., -# 'audio/flac'). Because different systems may give different MIME -# media types, any 'x-' prefix of the subtype is ignored both here and -# in the actual file MIME type (so all combinations of 'audio/flac' and -# 'audio/x-flac' match each other). -# -# For Internet streams the matching is done on MIME media type and on -# actual content. For files the matches are made on MIME media type -# (if the 'UseMimeMagic' option is set) and on filename extension. The -# MIME media type of a file is not determined until the first entry for -# MIME is encountered in the list. -# -# The matching is done in the order of appearance in the list with any -# entries added from the command line being matched before those listed -# here. Therefore, if you place all filename extension entries before -# all MIME entries you will speed up MOC's processing of directories -# (which could be significant for remote file systems). -# -# The decoder list may be empty, in which case no decoders will be used -# for files (and files with that audio format ignored) while Internet -# streams will be assessed on the actual content. Any decoder position -# may contain an asterisk, in which case any decoder not otherwise listed -# which can handle the audio format will be used. It is not an error to -# list the same decoder twice, but neither does it make sense to do so. -# -# If you have a mix of audio and non-audio files in your directories, you -# may wish to include entries at top of the list which ignore non-audio -# files by extension. -# -# In summary, the PreferredDecoders option provides fine control over the -# type of matching which is performed (filename extension, MIME media -# type and streamed media content) and which decoder(s) (if any) are used -# based on the option's list entries and their ordering. -# -# Examples: aac(aac,ffmpeg) first try FAAD2 for AACs then FFmpeg -# mp3() ignore MP3 files -# wav(*,sndfile) use sndfile for WAV as a last resort -# ogg(vorbis,*):flac(flac,*) try Xiph decoders first -# ogg():audio/ogg() ignore OGG files, and -# force Internet selection by content -# gz():html() ignore some non-audio files -# -# Any unspecified audio formats default to trying all decoders. -# Any unknown (or misspelt) drivers are ignored. -# All names are case insensitive. -# The default setting reflects the historical situation modified by -# the experience of users. -# -#PreferredDecoders = aac(aac,ffmpeg):m4a(ffmpeg) -#PreferredDecoders += mpc(musepack,*,ffmpeg):mpc8(musepack,*,ffmpeg) -#PreferredDecoders += sid(sidplay2):mus(sidplay2) -#PreferredDecoders += wav(sndfile,*,ffmpeg) -#PreferredDecoders += wv(wavpack,*,ffmpeg) -#PreferredDecoders += audio/aac(aac):audio/aacp(aac):audio/m4a(ffmpeg) -#PreferredDecoders += audio/wav(sndfile,*) - -# The following PreferredDecoders attempt to handle the ambiguity surrounding -# container types such as OGG for files. The first two entries will force -# a local file to the correct decoder (assuming the .ogg file contains Vorbis -# audio), while the MIME media types will cause Internet audio streams to -# be assessed on content (which may be either Vorbis or Speex). -# -#PreferredDecoders += ogg(vorbis,ffmpeg):oga(vorbis,ffmpeg):ogv(ffmpeg) -#PreferredDecoders += opus(ffmpeg) -#PreferredDecoders += spx(speex) -#PreferredDecoders += application/ogg(vorbis):audio/ogg(vorbis) - -# Which resampling method to use. There are a few methods of resampling -# sound supported by libresamplerate. The default is 'Linear') which is -# also the fastest. A better description can be found at: -# -# http://www.mega-nerd.com/libsamplerate/api_misc.html#Converters -# -# but briefly, the following methods are based on bandlimited interpolation -# and are higher quality, but also slower: -# -# SincBestQuality - really slow (I know you probably have an xx GHz -# processor, but it's still not enough to not see -# this in the top output :) The worst case -# Signal-to-Noise Ratio is 97dB. -# SincMediumQuality - much faster. -# SincFastest - the fastest bandlimited interpolation. -# -# And these are lower quality, but much faster methods: -# -# ZeroOrderHold - really poor quality, but it's really fast. -# Linear - a bit better and a bit slower. -# -#ResampleMethod = Linear - -# Always use this sample rate (in Hz) when opening the audio device (and -# resample the sound if necessary). When set to 0 the device is opened -# with the file's rate. -#ForceSampleRate = 0 - -# By default, even if the sound card reports that it can output 24bit samples -# MOC converts 24bit PCM to 16bit. Setting this option to 'yes' allows MOC -# to use 24bit output. (The MP3 decoder, for example, uses this format.) -# This is disabled by default because there were reports that it prevents -# MP3 files from playing on some soundcards. -#Allow24bitOutput = no - -# Use realtime priority for output buffer thread. This will prevent gaps -# while playing even with heavy load. The user who runs MOC must have -# permissions to set such a priority. This could be dangerous, because it -# is possible that a bug in MOC will freeze your computer. -#UseRealtimePriority = no - -# The number of audio files for which MOC will cache tags. When this limit -# is reached, file tags are discarded on a least recently used basis (with -# one second resolution). You can disable the cache by giving it a size of -# zero. Note that if you decrease the cache size below the number of items -# currently in the cache, the number will not decrease immediately (if at -# all). -#TagsCacheSize = 256 - -# Number items in the playlist. -#PlaylistNumbering = yes - -# Main window layouts can be configured. You can change the position and -# size of the menus (directory and playlist). You have three layouts and -# can switch between then using the 'l' key (standard mapping). By default, -# only two layouts are configured. -# -# The format is as follows: -# -# - Each layout is described as a list of menu entries. -# - Each menu entry is of the form: -# -# menu(position_x, position_y, width, height) -# -# where 'menu' is either 'directory' or 'playlist'. -# - The parameters define position and size of the menu. They can -# be absolute numbers (like 10) or a percentage of the screen size -# (like 45%). -# - 'width' and 'height' can have also value of 'FILL' which means -# fill the screen from the menu's position to the border. -# - Menus may overlap. -# -# You must describe at least one menu (default is to fill the whole window). -# There must be at least one layout (Layout1) defined; others can be empty. -# -# Example: Layout1 = playlist(50%,50%,50%,50%) -Layout1 = directory(0,0,100%,100%):playlist(0,0,100%,100%) -CanStartInPlaylist = yes -# Layout3 = "" -# -# Just one layout, the directory will occupy the whole -# screen, the playlist will have 1/4 of the screen size -# and be positioned at lower right corner. (Note that -# because the playlist will be hidden by the directory -# you will have to use the TAB key to make the playlist -# visible.) -# -# Example: Layout1 = playlist(0,0,100%,10):directory(0,10,100%,FILL) -# -# The screen is split into two parts: playlist at the top -# and the directory menu at the bottom. Playlist will -# occupy 10 lines and the directory menu the rest. -# -#Layout1 = directory(0,0,50%,100%):playlist(50%,0,FILL,100%) -#Layout2 = directory(0,0,100%,100%):playlist(0,0,100%,100%) -#Layout3 = "" - -# When the song changes, should the menu be scrolled so that the currently -# played file is visible? -#FollowPlayedFile = yes - -# What to do if the interface was started and the server is already playing -# something from the playlist? If CanStartInPlaylist is set to 'yes', the -# interface will switch to the playlist. When set to 'no' it will start -# from the last directory. -#CanStartInPlaylist = yes - -# Executing external commands (1 - 10) invoked with key commands (F1 - F10 -# by default). -# -# Some arguments are substituted before executing: -# -# %f - file path -# %i - title made from tags -# %S - start block mark (in seconds) -# %E - end block mark (in seconds) -# -# Data from tags can also be substituted: -# -# %t - title -# %a - album -# %r - artist -# %n - track -# %m - time of the file (in seconds) -# -# The parameters above apply to the currently selected file. If you change -# them to capital letters, they are taken from the file currently playing. -# -# Programs are run using execv(), not a shell, so you can't do things like -# redirecting the output to a file. The command string is split using blank -# characters as separators; the first element is the command to be executed -# and the rest are its parameters, so if you use "echo Playing: %I" we run -# program 'echo' (from $PATH) with 2 parameters: the string 'Playing:' and -# the title of the file currently playing. Even if the title contains -# spaces, it's still one parameter and it's safe if it contains `rm -rf /`. -# -# Examples: ExecCommand1 = "cp %f /mnt/usb_drive" -# ExecCommand2 = "/home/joe/now_playing %I" -# -#ExecCommand1 = -#ExecCommand2 = -#ExecCommand3 = -#ExecCommand4 = -#ExecCommand5 = -#ExecCommand6 = -#ExecCommand7 = -#ExecCommand8 = -#ExecCommand9 = -#ExecCommand10 = - -# Display the cursor in the line with the selected file. Some braille -# readers (the Handy Tech modular series ZMU 737, for example) use the -# cursor to focus and can make use of it to present the file line even -# when other fields are changing. -#UseCursorSelection = no - -# Set the terminal title when running under xterm. -#SetXtermTitle = yes - -# Set the terminal title when running under screen(1). If MOC can detect -# that it is running under screen(1), then it will set an appropriate -# title (see description of ScreenTerms above). However, if multiple -# levels of screen management are involved, detection might fail and this -# could cause a screen upset. In that situation you can use this option -# to force screen titles off. -#SetScreenTitle = yes - -# Display full paths instead of just file names in the playlist. -#PlaylistFullPaths = yes - -# The following setting describes how block markers are displayed in -# the play time progress bar. Its value is a string of exactly three -# characters. The first character is displayed in a position which -# corresponds to the time marked as the start of a block and the last -# character to the time marked as the end of the block. The middle -# character is displayed instead if both the start and the end of the block -# would fall in the same position (within the resolution of the interface). -# You can turn off the displaying of these block marker positions by using -# three space characters. -#BlockDecorators = "`\"'" - -# How long (in seconds) to leave a message displayed on the screen. -# Setting this to a high value allows you to scroll through the messages -# using the 'hide_message' key. Setting it to zero means you'll have to -# be quick to see any message at all. Any new messages will be queued up -# and displayed after the current message's linger time expires. -#MessageLingerTime = 3 - -# Does MOC display a prefix on delayed messages indicating -# the number of queued messages still to be displayed? -#PrefixQueuedMessages = yes - -# String to append to the queued message count if any -# error messages are still waiting to be displayed. -#ErrorMessagesQueued = "!" - -# Self-describing ModPlug options (with 'yes' or 'no' values). -#ModPlug_Oversampling = yes -#ModPlug_NoiseReduction = yes -#ModPlug_Reverb = no -#ModPlug_MegaBass = no -#ModPlug_Surround = no - -# ModPlug resampling mode. -# Valid values are: -# -# FIR - 8 tap fir filter (extremely high quality) -# SPLINE - Cubic spline interpolation (high quality) -# LINEAR - Linear interpolation (fast, good quality) -# NEAREST - No interpolation (very fast, extremely bad sound quality) -# -#ModPlug_ResamplingMode = FIR - -# Other self-describing ModPlug audio characteristic options. -# (Note that the 32 bit sample size seems to be buggy.) -#ModPlug_Channels = 2 # 1 or 2 channels -#ModPlug_Bits = 16 # 8, 16 or 32 bits -#ModPlug_Frequency = 44100 # 11025, 22050, 44100 or 48000 Hz -#ModPlug_ReverbDepth = 0 # 0 (quiet) to 100 (loud) -#ModPlug_ReverbDelay = 0 # Delay in ms (usually 40-200ms) -#ModPlug_BassAmount = 0 # 0 (quiet) to 100 (loud). -#ModPlug_BassRange = 10 # Cutoff in Hz (10-100). -#ModPlug_SurroundDepth = 0 # Surround level 0(quiet)-100(heavy). -#ModPlug_SurroundDelay = 0 # Surround delay in ms, usually 5-40ms. -#ModPlug_LoopCount = 0 # 0 (never), n (times) or -1 (forever) - -# Self-describing TiMidity audio characteristic options. -#TiMidity_Rate = 44100 # Between 8000 and 48000 -#TiMidity_Bits = 16 # 8 or 16 -#TiMidity_Channels = 2 # 1 or 2 -#TiMidity_Volume = 100 # 0 to 800 - -# You can setup a TiMidity-Config-File here. -# Leave it unset to use library defaults (/etc/timidity.cfg mostly). -# Setting it to 'yes' also uses the library defaults. -# Set it to 'no' if you don't have any configuration file. -# Otherwise set it to the name of a specific file. -#TiMidity_Config = - -# Self-describing SidPlay2 audio characteristic options. -#SidPlay2_DefaultSongLength = 180 # If not in database (in seconds) -#SidPlay2_MinimumSongLength = 0 # Play at least n (in seconds) -#SidPlay2_Frequency = 44100 # 4000 to 48000 -#SidPlay2_Bits = 16 # 8 or 16 -#SidPlay2_Optimisation = 0 # 0 (worst quality) to 2 (best quality) - -# Set path to a HVSC-compatible database (if not set, database is disabled). -#SidPlay2_Database = - -# SidPlay2 playback Mode: -# -# "M": Mono (best for many SIDs) -# "S": Stereo -# "L"/"R": Left / Right -# -#SidPlay2_PlayMode = "M" - -# Use start-song information from SID ('yes') or start at first song -# ('no'). Songs before the start-song won't be played. (Note that this -# option previously took the values 1 and 0; these are now deprecated -# in favour of 'yes' and 'no'.) -#SidPlay2_StartAtStart = yes - -# Play sub-tunes. (Note that this option previously took the values 1 -# and 0; these are now deprecated in favour of 'yes' and 'no'.) -#SidPlay2_PlaySubTunes = yes - -# Run the OnSongChange command when a new song starts playing. -# Specify the full path (i.e. no leading '~') of an executable to run. -# Arguments will be passed, and you can use the following escapes: -# -# %a artist -# %r album -# %f filename -# %t title -# %n track -# %d file duration in XX:YY form -# %D file duration, number of seconds -# -# No pipes/redirects can be used directly, but writing a shell script -# can do the job. -# -# Example: OnSongChange = "/home/jack/.moc/myscript %a %r" -# -#OnSongChange = - -# If RepeatSongChange is 'yes' then MOC will execute the command every time -# a song starts playing regardless of whether or not it is just repeating. -# Otherwise the command will only be executed when a different song is -# started. -#RepeatSongChange = no - -# Run the OnStop command (full path, no arguments) when MOC changes state -# to stopped (i.e., when user stopped playing or changes a song). -#OnStop = "/home/jack/.moc/myscript_on_stop" - -# This option determines which song to play after finishing all the songs -# in the queue. Setting this to 'yes' causes MOC to play the song which -# follows the song being played before queue playing started. If set to -# 'no', MOC will play the song following the last song in the queue if it -# is in the playlist. The default is 'yes' because this is the way other -# players usually behave. (Note that this option previously took the -# values 1 and 0; these are now deprecated in favour of 'yes' and 'no'.) -#QueueNextSongReturn = yes diff --git a/.moc/keymap b/.moc/keymap deleted file mode 100755 index 21bed2e..0000000 --- a/.moc/keymap +++ /dev/null @@ -1,188 +0,0 @@ -# This is the example keymap file for MOC. You can define your own key -# bindings for MOC commands by creating your own keymap file and setting -# the 'Keymap' option in ~/.moc/config. -# -# The format of this file is: -# -# - Lines beginning with # are comments. -# - Blank lines are ignored. -# - Every other line is expected to be in one of the formats: -# -# COMMAND = [KEY ...] -# COMMAND += KEY ... -# -# The KEY can be: -# -# - Just a char, like i, L, ", * -# - CTRL-KEY sequence: ^k (CTRL-k), ^4 -# - ALT-KEY (meta) sequence: M-j (ALT-j), M-/ -# - Special keys: DOWN, UP -# LEFT, RIGHT -# HOME, END -# BACKSPACE -# INS, DEL -# ENTER -# PAGE_UP, PAGE_DOWN -# SPACE, TAB -# KEYPAD_CENTER -# ESCAPE -# F1 - F12 -# -# Note that the use of a digit as a KEY is deprecated. -# -# Maximum number of KEYs for one COMMAND is 5. -# -# Omitting the KEY for a COMMAND will unbind all its default keys. They -# will also be automatically unbound when you bind new KEYs to it. Individual -# default KEYs will be automatically unbound when they are explicitly bound -# to some other COMMAND. -# -# Using the '+=' form will cause the KEYs to be appended to any existing -# (default or explicit) bindings for the COMMAND. Appending an existing -# default binding for the same COMMAND will cause MOC to think of that KEY -# as then being explicitly bound. -# -# Only one binding for any given COMMAND can appear in the keymap file. One -# exception to this is that if the default keys for a COMMAND are explicitly -# unbound then a subsequent binding may appear for it. A second exception -# is that multiple appending bindings may appear. -# -# Meta-key detection is sensitive to the ESCDELAY environment variable (see -# the manpage for ncurses(3)). In its absence, MOC resets the default -# delay to 25ms. If you need to emulate meta-key sequences using the ESC -# key, then you may need to set the value of ESCDELAY back to its ncurses -# default of 1000ms (but doing so will make the response to the ESC key -# sluggish). -# -# If MOC's keypresses are being filtered through some other program (in a -# GUI environment, for example) which also does meta-key detection, then -# MOC is at the mercy of the timings with which that program presents them. -# -# Default key configuration for MOC (and a list of all available commands): - -# MOC control keys: -quit_client = q -quit = Q - -# Menu and interface control keys: -go = f -menu_down = n -menu_up = p -menu_page_down = PAGE_DOWN -menu_page_up = PAGE_UP -menu_first_item = HOME -menu_last_item = END -search_menu = g / -toggle_read_tags = F -toggle_show_time = ^t -toggle_show_format = ^f -toggle_menu = TAB -toggle_layout = L -#toggle_hidden_files = H -next_search = ^g ^n -#show_lyrics = L -theme_menu = T -help = H ? -refresh = ^r -reload = r - -# Audio playing and positioning keys: -seek_forward = RIGHT -seek_backward = LEFT -seek_forward_fast = ] -seek_backward_fast = [ -pause = SPACE -stop = s -next = N -previous = P -toggle_shuffle = S -toggle_repeat = R -toggle_auto_next = X -toggle_mixer = x -go_url = o - -# Volume control keys: -volume_down_1 = < -volume_up_1 = > -volume_down_5 = , -volume_up_5 = . -volume_10 = M-1 -volume_20 = M-2 -volume_30 = M-3 -volume_40 = M-4 -volume_50 = M-5 -volume_60 = M-6 -volume_70 = M-7 -volume_80 = M-8 -volume_90 = M-9 - -# Directory navigation keys: defaults are Shift-number -# (i.e., 'shift 1' -> '!' -> 'Fastdir1'). -go_to_a_directory = i -go_to_music_directory = m -go_to_fast_dir1 = ! -go_to_fast_dir2 = @ -go_to_fast_dir3 = # -go_to_fast_dir4 = $ -go_to_fast_dir5 = % -go_to_fast_dir6 = ^ -go_to_fast_dir7 = & -go_to_fast_dir8 = * -go_to_fast_dir9 = ( -go_to_fast_dir10 = ) -go_to_playing_file = G -go_up = b - -# Playlist specific keys: -add_file = a -add_directory = A -plist_add_stream = ^u -delete_from_playlist = d -#playlist_full_paths = P -plist_move_up = u -#plist_move_down = j -save_playlist = V -remove_dead_entries = Y -clear_playlist = C - -# Queue manipulation keys: -enqueue_file = z -clear_queue = Z - -# User interaction control: -history_up = UP -history_down = DOWN -delete_to_start = ^u -delete_to_end = ^k -cancel = ^x ESCAPE -hide_message = M - -# Softmixer specific keys: -toggle_softmixer = w -toggle_make_mono = J - -# Equalizer specific keys: -toggle_equalizer = E -equalizer_refresh = e -equalizer_prev = K -#equalizer_next = k - -# External commands: -mark_start = ' -mark_end = " -exec_command1 = F1 -exec_command2 = F2 -exec_command3 = F3 -exec_command4 = F4 -exec_command5 = F5 -exec_command6 = F6 -exec_command7 = F7 -exec_command8 = F8 -exec_command9 = F9 -exec_command10 = F10 - -# The following commands are available but not assigned to any keys by -# default: -# -# toggle_percent Switch on/off play progress bar time percentage -# diff --git a/.moc/themes/30equals b/.moc/themes/30equals deleted file mode 100755 index 8b0b138..0000000 --- a/.moc/themes/30equals +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################## -# -# 30equals -# -############################################################################## - -background = default default -frame = default default -window_title = default default -directory = cyan default -selected_directory = cyan default reverse -playlist = default default -selected_playlist = default default reverse -file = default default -selected_file = default default reverse -marked_file = cyan default bold -marked_selected_file = cyan default reverse -info = default default -selected_info = default default -marked_info = cyan default bold -marked_selected_info = cyan default bold -status = default default -title = cyan default bold -state = default default -current_time = default default -time_left = default default -total_time = default default -time_total_frames = default default -sound_parameters = default default -legend = default default -disabled = default default -enabled = cyan default bold -empty_mixer_bar = default default -filled_mixer_bar = default default reverse -empty_time_bar = default default -filled_time_bar = default default reverse -entry = default default -entry_title = default default -error = default default bold -message = default default bold -plist_time = default default diff --git a/.moc/themes/README.md b/.moc/themes/README.md deleted file mode 100755 index ec85e43..0000000 --- a/.moc/themes/README.md +++ /dev/null @@ -1,173 +0,0 @@ -# mocp-themes -My collection of themes for the music on console player - -## 30equals - -``` -mocp -T 30equals -``` -<p align="center"><img width="75%" src="./Screenshots/30equals.png" alt="30equals"></p> - -## alldefault - -``` -mocp -T alldefault -``` -<p align="center"><img width="75%" src="./Screenshots/alldefault.png" alt="alldefault"></p> - -## alpha_green - -``` -mocp -T alpha_green -``` -<p align="center"><img width="75%" src="./Screenshots/alpha_green.png" alt="alpha_green"></p> - -## black_orange - -``` -mocp -T black_orange -``` -<p align="center"><img width="75%" src="./Screenshots/black_orange.png" alt="black_orange"></p> - -## black_red_white - -``` -mocp -T black_red_white -``` -<p align="center"><img width="75%" src="./Screenshots/black_red_white.png" alt="black_red_white"></p> - -## deephouse - -``` -mocp -T deephouse -``` -<p align="center"><img width="75%" src="./Screenshots/deephouse.png" alt="deephouse"></p> - -## dylanwh - -``` -mocp -T dylanwh -``` -<p align="center"><img width="75%" src="./Screenshots/dylanwh.png" alt="dylanwh"></p> - -## hybrid - -``` -mocp -T hybrid -``` -<p align="center"><img width="75%" src="./Screenshots/hybrid.png" alt="hybrid"></p> - -## hybrid-bright - -``` -mocp -T hybrid-bright -``` -<p align="center"><img width="75%" src="./Screenshots/hybrid-bright.png" alt="hybrid-bright"></p> - -## lcd - -``` -mocp -T lcd -``` -<p align="center"><img width="75%" src="./Screenshots/lcd.png" alt="lcd"></p> - -## mostly_green - -``` -mocp -T mostly_green -``` -<p align="center"><img width="75%" src="./Screenshots/mostly_green.png" alt="mostly_green"></p> - -## nes - -``` -mocp -T nes -``` -<p align="center"><img width="75%" src="./Screenshots/nes.png" alt="nes"></p> - -## nightly_enhanced - -``` -mocp -T nightly_enhanced -``` -<p align="center"><img width="75%" src="./Screenshots/nightly_enhanced.png" alt="nightly_enhanced"></p> - -## nightshade - -``` -mocp -T nightshade -``` -<p align="center"><img width="75%" src="./Screenshots/nightshade.png" alt="nightshade"></p> - -## orange - -``` -mocp -T orange -``` -<p align="center"><img width="75%" src="./Screenshots/orange.png" alt="orange"></p> - -## orpheus - -``` -mocp -T orpheus -``` -<p align="center"><img width="75%" src="./Screenshots/orpheus.png" alt="orpheus"></p> - -## paper_blue - -``` -mocp -T paper_blue -``` -<p align="center"><img width="75%" src="./Screenshots/paper_blue.png" alt="paper_blue"></p> - -## paper_white - -``` -mocp -T paper_white -``` -<p align="center"><img width="75%" src="./Screenshots/paper_white.png" alt="paper_white"></p> - -## rhowaldt - -``` -mocp -T rhowaldt -``` -<p align="center"><img width="75%" src="./Screenshots/rhowaldt.png" alt="rhowaldt"></p> - -## rteff_theme - -``` -mocp -T rteff_theme -``` -<p align="center"><img width="75%" src="./Screenshots/rteff_theme.png" alt="rteff_theme"></p> - -## solarized - -``` -mocp -T solarized -``` -<p align="center"><img width="75%" src="./Screenshots/solarized.png" alt="solarized"></p> - - -## transparent-light - -``` -mocp -T transparent-light -``` -<p align="center"><img width="75%" src="./Screenshots/transparent-light.png" alt="transparent-light"></p> - -## tty - -``` -mocp -T tty -``` -<p align="center"><img width="75%" src="./Screenshots/tty.png" alt="tty"></p> - -## variant_red - -``` -mocp -T variant_red -``` -<p align="center"><img width="75%" src="./Screenshots/variant_red.png" alt="variant_red"></p> - - diff --git a/.moc/themes/alldefault b/.moc/themes/alldefault deleted file mode 100755 index bb2a2c3..0000000 --- a/.moc/themes/alldefault +++ /dev/null @@ -1,43 +0,0 @@ -############################################################################## -# -# alldefault theme by azhag <[email protected]> -# this theme is modifiaction of -# Black theme by Arn <[email protected]> -# -############################################################################## - -background = default default -frame = default default -window_title = default default -directory = default default -selected_directory = default default reverse -playlist = default default -selected_playlist = default default reverse -file = default default -selected_file = default default reverse -marked_file = default default bold -marked_selected_file = default default bold,reverse -info = default default -selected_info = default default bold -marked_info = default default bold -marked_selected_info = default default bold -status = default default -title = default default bold -state = default default -current_time = default default bold -time_left = default default bold -total_time = default default bold -time_total_frames = default default -sound_parameters = default default bold -legend = default default -disabled = default default -enabled = default default bold -empty_mixer_bar = default default -filled_mixer_bar = default default reverse -empty_time_bar = default default -filled_time_bar = default default reverse -entry = default default -entry_title = default default -error = default default bold -message = default default -plist_time = default default diff --git a/.moc/themes/alpha_green b/.moc/themes/alpha_green deleted file mode 100755 index c75db4e..0000000 --- a/.moc/themes/alpha_green +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################## -# -# Alpha Green Theme -# by SrFreak -# Personal website http://juanjosalvador.github.io -# Email [email protected] -# -# Element Color 1 Color 2 -# -############################################################################## - -background = default default -frame = white default -window_title = white default -directory = white default bold -selected_directory = green black bold,reverse -playlist = white green bold -selected_playlist = white green bold -file = white default -selected_file = green default -marked_file = blue default bold -marked_selected_file = green default bold -info = green default bold -selected_info = green default bold -marked_info = red default bold -marked_selected_info = green default bold -status = white default -title = white default bold -state = white default bold -current_time = white default bold -time_left = white default bold -total_time = white default bold -time_total_frames = white default -sound_parameters = white default bold -legend = white default -disabled = green default bold -enabled = white default bold -empty_mixer_bar = white default -filled_mixer_bar = black white -empty_time_bar = white default -filled_time_bar = black white -entry = white default -entry_title = black default -error = red default bold -message = green default bold -plist_time = white default bold diff --git a/.moc/themes/black_orange b/.moc/themes/black_orange deleted file mode 100755 index 1ad1add..0000000 --- a/.moc/themes/black_orange +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# here's my theme for the great moc. -# it's black/orange (on xterm it's black/yellow :-) -# -############################################################################## - -background = white black -frame = yellow black -window_title = white black -directory = white black bold -selected_directory = black yellow -playlist = white black -selected_playlist = black yellow -file = white black -selected_file = black yellow -marked_file = yellow black -marked_selected_file = yellow black bold,reverse -info = yellow black -selected_info = yellow black bold -marked_info = yellow black bold -marked_selected_info = yellow black bold,reverse -status = white black -title = yellow black -state = yellow black -current_time = white black bold -time_left = white black bold -total_time = white black bold -time_total_frames = white black -sound_parameters = white black bold -legend = white black -disabled = black black bold -enabled = white black bold -empty_mixer_bar = white black -filled_mixer_bar = black yellow -empty_time_bar = white black -filled_time_bar = white yellow -entry = white black -entry_title = yellow black bold -error = yellow black bold -message = yellow black bold -plist_time = white black diff --git a/.moc/themes/black_red_white b/.moc/themes/black_red_white deleted file mode 100755 index 5d263e3..0000000 --- a/.moc/themes/black_red_white +++ /dev/null @@ -1,124 +0,0 @@ -############################################################################## -# -# Theme in black|red|white by Stefan Wimmer <[email protected]> -# -############################################################################## -# The format of this file is: -# Lines beginning with # are comments. -# Blank lines are ignored. -# Every other line is expected to be in format: -# -# ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]] -# -# or -# -# colordef COLOR = RED GREEN BLUE -# -# Where names are case insensitive. -# -# ELEMENT is an element of MOC interface. This can be: -# background - default background for regions when nothing is displayed -# frame - frames for windows -# window_title - the title of the window (eg name of the current -# directory) -# directory - a directory in the menu -# selected_directory - a directory that is selected using arrows -# playlist - playlist file -# selected_playlist - see selected directory -# file - an ordinary file in the menu (mp3, ogg, ...) -# selected_file - see selected directory -# marked_file - a file that is currently being played -# marked_selected_file - a file that is currently being played and is also -# selected using arrows -# info - information shown at the right side of files -# selected_info - see selected directory -# marked_info - a file (its time) that is currently being played -# marked_selected_info - a file (its time) that is currently being played -# and is also selected using arrows -# status - the status line with a message -# title - the title of the file that is currently being played -# state - the state: play, stop, or paused (>, [], ||) -# current_time - current time of playing -# time_left - the time left to the end of playing the current file -# total_time - the length of the currently played file -# time_total_frames - the brackets outside the total time of a file ([10:13]) -# sound_parameters - the frequency and bitrate numbers -# legend - "KHz" and "Kbps" -# disabled - disabled element ([STEREO]) -# enabled - enabled element -# empty_mixer_bar - "empty" part of the volume bar -# filled_mixer_bar - "filled" part of the volume bar -# empty_time_bar - "empty" part of the time bar -# filled_time_bar - "filled" part of the time bar -# entry - place wher user can type a search query or a file name -# entry_title - the title of an entry -# error - error message -# message - information message -# plist_time - total time of displayed items -# -# FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values: -# black, red, green, yellow, blue, magenta, cyan, white, default (can be -# transparent), grey (not standard, but works) -# -# Optional ATTRIBUTE parameters can be (from ncurses manual): -# normal - default (no highlight) -# standout - best highlighting mode of the terminal -# underline - underlining -# reverse - reverse video -# blink - blinking -# dim - half bright -# bold - extra bright or bold -# protect - protected mode -# -# You can specify a list of attributes separated by commas: attr1,attr2,attr3. -# Don't use spaces anywhere in such a list. -# -# With colordef you can change the definition of a color. It works only if -# your terminal supports it, if not those lines will be silently ignored. -# COLOR must be a valid color name and the RED GREEN and BLUE are numbers -# from 0 to 1000. Example: -# -# colordef red = 1000 0 0 -# -# HINT: you have only 8 colors, but combined with attributes bold and/or -# reversed you actually get more colors. -# -# If you don't specify some elements, the default values will be used. -# -############################################################################## - -background = default default -frame = red default bold -window_title = default default reverse -directory = default default dim -selected_directory = default default dim,reverse -playlist = default default -selected_playlist = default default reverse -file = default default -selected_file = default default reverse -marked_file = default default bold -marked_selected_file = default default bold,reverse -info = default default -selected_info = default default bold -marked_info = red default bold -marked_selected_info = red default bold,reverse -status = default default -title = default default bold,dim -state = default default -current_time = default default bold -time_left = default default bold -total_time = default default bold -time_total_frames = default default -sound_parameters = default default bold -legend = default default -disabled = default default -enabled = red default bold -empty_mixer_bar = default default -filled_mixer_bar = default default reverse -empty_time_bar = default default -filled_time_bar = default default dim,reverse -entry = default default -entry_title = default default -error = red default -message = default default standout,reverse -plist_time = default default bold diff --git a/.moc/themes/deephouse b/.moc/themes/deephouse deleted file mode 100755 index fae5b8d..0000000 --- a/.moc/themes/deephouse +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################## -# -# Deephouse theme for dark console By Leodelacruz -# -############################################################################## - -background = yellow default -frame = white default -window_title = white default underline,dim -directory = white default -selected_directory = cyan default underline -playlist = cyan default -selected_playlist = cyan default -file = cyan default -selected_file = grey default bold -marked_file = white default bold -marked_selected_file = white default bold,underline -info = white default -selected_info = blue default bold -marked_info = green default bold -marked_selected_info = green default bold -status = white default -title = white default -state = white default -current_time = white default -time_left = white default -total_time = white default -time_total_frames = white default -sound_parameters = white default -legend = white default -disabled = white default dim -enabled = white default bold -empty_mixer_bar = default default -filled_mixer_bar = black cyan -empty_time_bar = white default -filled_time_bar = default white -entry = white default -entry_title = white default bold -error = yellow default -message = white default -plist_time = white default diff --git a/.moc/themes/dylanwh b/.moc/themes/dylanwh deleted file mode 100755 index 055b501..0000000 --- a/.moc/themes/dylanwh +++ /dev/null @@ -1,121 +0,0 @@ -############################################################################## -# -# The format of this file is: -# Lines beginning with # are comments. -# Blank lines are ignored. -# Every other line is expected to be in format: -# -# ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]] -# -# or -# -# colordef COLOR = RED GREEN BLUE -# -# Where names are case insensitive. -# -# ELEMENT is an element of MOC interface. This can be: -# background - default background for regions when nothing is displayed -# frame - frames for windows -# window_title - the title of the window (eg name of the current -# directory) -# directory - a directory in the menu -# selected_directory - a directory that is selected using arrows -# playlist - playlist file -# selected_playlist - see selected directory -# file - an ordinary file in the menu (mp3, ogg, ...) -# selected_file - see selected directory -# marked_file - a file that is currently being played -# marked_selected_file - a file that is currently being played and is also -# selected using arrows -# info - information shown at the right side of files -# selected_info - see selected directory -# marked_info - a file (its time) that is currently being played -# marked_selected_info - a file (its time) that is currently being played -# and is also selected using arrows -# status - the status line with a message -# title - the title of the file that is currently being played -# state - the state: play, stop, or paused (>, [], ||) -# current_time - current time of playing -# time_left - the time left to the end of playing the current file -# total_time - the length of the currently played file -# time_total_frames - the brackets outside the total time of a file ([10:13]) -# sound_parameters - the frequency and bitrate numbers -# legend - "KHz" and "Kbps" -# disabled - disabled element ([STEREO]) -# enabled - enabled element -# empty_mixer_bar - "empty" part of the volume bar -# filled_mixer_bar - "filled" part of the volume bar -# empty_time_bar - "empty" part of the time bar -# filled_time_bar - "filled" part of the time bar -# entry - place wher user can type a search query or a file name -# entry_title - the title of an entry -# error - error message -# message - information message -# plist_time - total time of displayed items -# -# FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values: -# black, red, green, yellow, blue, magenta, cyan, white, default (can be -# transparent), grey (not standard, but works) -# -# Optional ATTRIBUTE parameters can be (from ncurses manual): -# normal - default (no highlight) -# standout - best highlighting mode of the terminal -# underline - underlining -# reverse - reverse video -# blink - blinking -# dim - half bright -# bold - extra bright or bold -# protect - protected mode -# -# You can specify a list of attributes separated by commas: attr1,attr2,attr3. -# Don't use spaces anywhere in such a list. -# -# With colordef you can change the definition of a color. It works only if -# your terminal supports it, if not those lines will be silently ignored. -# COLOR must be a valid color name and the RED GREEN and BLUE are numbers -# from 0 to 1000. Example: -# -# colordef red = 1000 0 0 -# -# HINT: you have only 8 colors, but combined with attributes bold and/or -# reversed you actually get more colors. -# -# If you don't specify some elements, the default values will be used. -# -############################################################################## - -background = default default -frame = default default -window_title = default default -directory = blue default -selected_directory = magenta black bold -file = yellow default bold -selected_file = white black -marked_file = cyan default bold -marked_selected_file = white black -info = default default -selected_info = default black bold -marked_info = default default bold -marked_selected_info = default black bold -status = default default -title = default default -state = default default -current_time = white default bold -playlist = yellow default bold -selected_playlist = white black -time_left = white default bold -total_time = white default bold -time_total_frames = white default -sound_parameters = white default bold -legend = white default -disabled = default default bold -enabled = white default bold -empty_mixer_bar = white default -filled_mixer_bar = black yellow -empty_time_bar = white default -filled_time_bar = black yellow -entry = white default -entry_title = black cyan -error = red default -message = green default -plist_time = white default diff --git a/.moc/themes/hybrid b/.moc/themes/hybrid deleted file mode 100755 index 3784e9c..0000000 --- a/.moc/themes/hybrid +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# based on hybrid -# best viewed on shaded or black terminal -# -############################################################################## - -background = white black -frame = blue default -window_title = green default -directory = red default -selected_directory = blue default -playlist = blue default -selected_playlist = magenta default -file = green default -selected_file = cyan default -marked_file = green default bold -marked_selected_file = cyan default bold -info = cyan default -selected_info = blue default bold -marked_info = green default bold -marked_selected_info = green default bold -status = magenta default -title = green default -state = magenta default -current_time = magenta default -time_left = cyan default -total_time = cyan default -time_total_frames = magenta default -sound_parameters = cyan default -legend = magenta default -disabled = black default -enabled = yellow default -empty_mixer_bar = green default -filled_mixer_bar = black green -empty_time_bar = green default -filled_time_bar = black green -entry = yellow default -entry_title = red default -error = red default -message = yellow default -plist_time = magenta default diff --git a/.moc/themes/hybrid-bright b/.moc/themes/hybrid-bright deleted file mode 100755 index 92aa1c7..0000000 --- a/.moc/themes/hybrid-bright +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# based on hybrid -# best viewed on shaded or black terminal -# -############################################################################## - -background = white black -frame = yellow black bold -window_title = yellow black bold -directory = white black -selected_directory = yellow black bold -playlist = white black bold -selected_playlist = green black bold -file = white black -selected_file = green black dim,underline -marked_file = yellow black bold -marked_selected_file = green black bold -info = blue black bold -selected_info = blue black bold -marked_info = green black bold -marked_selected_info = green black bold -status = white black -title = green black bold -state = yellow black bold -current_time = yellow black bold -time_left = yellow black bold -total_time = white black bold -time_total_frames = yellow black bold -sound_parameters = yellow black bold -legend = white black -disabled = blue black bold -enabled = white black bold -empty_mixer_bar = white black -filled_mixer_bar = black blue -empty_time_bar = white black -filled_time_bar = black blue -entry = white blue -entry_title = yellow black bold -error = red black bold -message = green black bold -plist_time = white black bold diff --git a/.moc/themes/lcd b/.moc/themes/lcd deleted file mode 100755 index 3d87c9a..0000000 --- a/.moc/themes/lcd +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# LCD theme for MOC by orveldv (version 2) -# 06/May/2007 -# -############################################################################## - -background = white white normal -frame = white white bold -window_title = white white bold -directory = black white normal -selected_directory = white black bold -playlist = cyan default -selected_playlist = white black bold -file = black white normal -selected_file = white black bold -marked_file = white white bold -marked_selected_file = cyan black bold -info = cyan white bold -selected_info = blue black bold -marked_info = green white bold -marked_selected_info = green white bold -status = white cyan bold -title = white white bold -state = red white blink -current_time = blue white normal -time_left = cyan white bold -total_time = black white bold -time_total_frames = black white normal -sound_parameters = white white bold -legend = black white normal -disabled = cyan white normal -enabled = blue white bold -empty_mixer_bar = black white bold -filled_mixer_bar = black cyan bold -empty_time_bar = white white normal -filled_time_bar = black cyan bold -entry = black white normal -entry_title = black cyan normal -error = red white normal -message = magenta white normal -plist_time = blue default diff --git a/.moc/themes/mostly_green b/.moc/themes/mostly_green deleted file mode 100755 index 4ac056b..0000000 --- a/.moc/themes/mostly_green +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# mostly green theme by Jiri Golembiovsky <[email protected]> -# best viewed on shaded or black terminal -# -############################################################################## - -background = default default -frame = green default -window_title = green default -directory = green default -selected_directory = black green -playlist = green default -selected_playlist = magenta green -file = green default -selected_file = black green -marked_file = green default bold -marked_selected_file = green default reverse,underline -info = green default -selected_info = green default bold -marked_info = white default bold -marked_selected_info = white default bold -status = green default -title = green default -state = green default bold -current_time = green default bold -time_left = green default -total_time = green default -time_total_frames = green default -sound_parameters = green default bold -legend = green default -disabled = green default -enabled = black green -empty_mixer_bar = green default -filled_mixer_bar = black green -empty_time_bar = green default -filled_time_bar = black green -entry = green default -entry_title = green default bold -error = red default bold -message = yellow default bold -plist_time = green default diff --git a/.moc/themes/nes b/.moc/themes/nes deleted file mode 100755 index 4c495d8..0000000 --- a/.moc/themes/nes +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################## -# -# Theme inspired by the NES -# -############################################################################## - -background = white black -frame = grey black bold -window_title = red black -directory = grey black bold -selected_directory = red black bold -playlist = grey black bold -selected_playlist = red black bold -file = white black -selected_file = red black -marked_file = red black bold -marked_selected_file = red black reverse -info = grey black bold -selected_info = white black bold -marked_info = blue black bold -marked_selected_info = white black bold -status = white black -title = red black bold -state = red black bold -current_time = white black bold -time_left = white black bold -total_time = white black bold -time_total_frames = white black -sound_parameters = white black bold -legend = white black -disabled = red black bold -enabled = white black bold -empty_mixer_bar = red black -filled_mixer_bar = black red -empty_time_bar = white black -filled_time_bar = black red -entry = white black -entry_title = grey black bold -error = red black bold -message = red black bold -plist_time = grey black bold diff --git a/.moc/themes/nightly_enhanced b/.moc/themes/nightly_enhanced deleted file mode 100755 index 34a71aa..0000000 --- a/.moc/themes/nightly_enhanced +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# this is a modification of the -# nightly theme by Wim Speekenbrink <[email protected]> -# -############################################################################## - -background = blue default -frame = blue default bold -window_title = blue default bold -directory = blue default bold -selected_directory = black magenta -playlist = blue default bold -selected_playlist = black magenta -file = blue default bold -selected_file = black magenta -marked_file = green default bold -marked_selected_file = magenta default bold -info = green default bold -selected_info = black magenta -marked_info = green default bold -marked_selected_info = green default bold -status = blue default bold -title = green default bold -state = blue default bold -current_time = magenta default bold -time_left = magenta default bold -total_time = magenta default bold -time_total_frames = blue default bold -sound_parameters = magenta default bold -legend = blue default bold -disabled = black default -enabled = blue default bold -empty_mixer_bar = blue default bold -filled_mixer_bar = black magenta -empty_time_bar = blue default bold -filled_time_bar = black magenta -entry = green default bold -entry_title = green default bold -error = red default bold -message = green default bold -plist_time = green default bold diff --git a/.moc/themes/nightshade b/.moc/themes/nightshade deleted file mode 100755 index 769b7a5..0000000 --- a/.moc/themes/nightshade +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################## -# -# Nightshade theme (Version 6) by Dreyeth ([email protected]) -# -############################################################################## - -background = blue black normal -frame = magenta black normal -window_title = magenta black bold -directory = blue black normal -selected_directory = black magenta normal -playlist = magenta black normal -selected_playlist = black magenta normal -file = blue black normal -selected_file = black magenta normal -marked_file = magenta black bold -marked_selected_file = black magenta bold -info = magenta black normal -selected_info = black magenta normal -marked_info = magenta black normal -marked_selected_info = black magenta normal -status = magenta black bold -title = magenta black bold -state = magenta black bold -current_time = magenta black normal -time_left = magenta black normal -total_time = magenta black normal -time_total_frames = magenta black normal -sound_parameters = magenta black normal -legend = blue black normal -disabled = blue black normal -enabled = magenta black normal -empty_mixer_bar = black blue normal -filled_mixer_bar = black magenta normal -empty_time_bar = black blue normal -filled_time_bar = black magenta normal -entry = black blue normal -entry_title = black magenta normal -error = magenta black bold -message = blue black bold -plist_time = magenta black normal diff --git a/.moc/themes/orange b/.moc/themes/orange deleted file mode 100755 index 092a640..0000000 --- a/.moc/themes/orange +++ /dev/null @@ -1,124 +0,0 @@ -############################################################################## -# -# Theme in yellow|red by Stefan Wimmer <[email protected]> -# -############################################################################## -# The format of this file is: -# Lines beginning with # are comments. -# Blank lines are ignored. -# Every other line is expected to be in format: -# -# ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]] -# -# or -# -# colordef COLOR = RED GREEN BLUE -# -# Where names are case insensitive. -# -# ELEMENT is an element of MOC interface. This can be: -# background - default background for regions when nothing is displayed -# frame - frames for windows -# window_title - the title of the window (eg name of the current -# directory) -# directory - a directory in the menu -# selected_directory - a directory that is selected using arrows -# playlist - playlist file -# selected_playlist - see selected directory -# file - an ordinary file in the menu (mp3, ogg, ...) -# selected_file - see selected directory -# marked_file - a file that is currently being played -# marked_selected_file - a file that is currently being played and is also -# selected using arrows -# info - information shown at the right side of files -# selected_info - see selected directory -# marked_info - a file (its time) that is currently being played -# marked_selected_info - a file (its time) that is currently being played -# and is also selected using arrows -# status - the status line with a message -# title - the title of the file that is currently being played -# state - the state: play, stop, or paused (>, [], ||) -# current_time - current time of playing -# time_left - the time left to the end of playing the current file -# total_time - the length of the currently played file -# time_total_frames - the brackets outside the total time of a file ([10:13]) -# sound_parameters - the frequency and bitrate numbers -# legend - "KHz" and "Kbps" -# disabled - disabled element ([STEREO]) -# enabled - enabled element -# empty_mixer_bar - "empty" part of the volume bar -# filled_mixer_bar - "filled" part of the volume bar -# empty_time_bar - "empty" part of the time bar -# filled_time_bar - "filled" part of the time bar -# entry - place wher user can type a search query or a file name -# entry_title - the title of an entry -# error - error message -# message - information message -# plist_time - total time of displayed items -# -# FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values: -# black, red, green, yellow, blue, magenta, cyan, white, default (can be -# transparent), grey (not standard, but works) -# -# Optional ATTRIBUTE parameters can be (from ncurses manual): -# normal - default (no highlight) -# standout - best highlighting mode of the terminal -# underline - underlining -# reverse - reverse video -# blink - blinking -# dim - half bright -# bold - extra bright or bold -# protect - protected mode -# -# You can specify a list of attributes separated by commas: attr1,attr2,attr3. -# Don't use spaces anywhere in such a list. -# -# With colordef you can change the definition of a color. It works only if -# your terminal supports it, if not those lines will be silently ignored. -# COLOR must be a valid color name and the RED GREEN and BLUE are numbers -# from 0 to 1000. Example: -# -# colordef red = 1000 0 0 -# -# HINT: you have only 8 colors, but combined with attributes bold and/or -# reversed you actually get more colors. -# -# If you don't specify some elements, the default values will be used. -# -############################################################################## - -background = red default -frame = red default -window_title = red default -directory = yellow default -selected_directory = red default -playlist = yellow default -selected_playlist = yellow default -file = yellow default -selected_file = black yellow -marked_file = red default -marked_selected_file = red yellow -info = yellow default -selected_info = yellow default bold -marked_info = yellow default bold,reverse -marked_selected_info = red default bold -status = yellow default -title = yellow default -state = yellow default -current_time = yellow default -time_left = yellow default -total_time = yellow default -time_total_frames = yellow default -sound_parameters = yellow default -legend = yellow default -disabled = red default dim -enabled = yellow default bold -empty_mixer_bar = black red -filled_mixer_bar = black yellow -empty_time_bar = yellow default -filled_time_bar = default yellow -entry = yellow default -entry_title = yellow default -error = cyan default -message = yellow default -plist_time = yellow default diff --git a/.moc/themes/orpheus b/.moc/themes/orpheus deleted file mode 100755 index 3cd8bf3..0000000 --- a/.moc/themes/orpheus +++ /dev/null @@ -1,46 +0,0 @@ -############################################################################## -# -# Copy what's below and save it in ~/.moc/themes/moc-orpheus -# moc-orpheus is the name of the file; don't give it an extension. -# Also, create the themes folder if it doesn't exist. -# I found this theme at this address: -# http://nic-nac-project.org/~orveldv/wiki/doku.php?id=moc -# A couple ather themes are also available there. -# -############################################################################## - -background = black black normal -frame = blue black bold -window_title = black black bold -directory = cyan black normal -selected_directory = cyan black bold -playlist = white black normal -selected_playlist = cyan black bold -file = green black normal -selected_file = green black bold -marked_file = yellow black bold -marked_selected_file = white black bold -info = blue black bold -selected_info = blue black bold -marked_info = white black bold -marked_selected_info = white black bold -status = black white normal -title = yellow black bold -state = green black bold,blink -current_time = white black normal -time_left = black black bold -total_time = green black normal -time_total_frames = black black bold -sound_parameters = white black normal -legend = green black normal -disabled = black black bold -enabled = white black normal -empty_mixer_bar = white black normal -filled_mixer_bar = black white normal -empty_time_bar = black black normal -filled_time_bar = black white bold -entry = white black normal -entry_title = black white normal -error = yellow black bold -message = yellow black bold -plist_time = blue black normal diff --git a/.moc/themes/paper_blue b/.moc/themes/paper_blue deleted file mode 100755 index 14237c5..0000000 --- a/.moc/themes/paper_blue +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# paper_blue theme for MOC by orveldv (version 2) -# 06/May/2007 -# -############################################################################## - -background = white white normal -frame = white white bold -window_title = white white bold -directory = blue white normal -selected_directory = white black bold -playlist = cyan white bold -selected_playlist = white black bold -file = blue white normal -selected_file = white black bold -marked_file = white white bold -marked_selected_file = cyan black bold -info = cyan white bold -selected_info = blue black bold -marked_info = green black bold -marked_selected_info = green black bold -status = white cyan bold -title = white white bold -state = red white blink -current_time = black white normal -time_left = cyan white bold -total_time = black white bold -time_total_frames = black white normal -sound_parameters = white white bold -legend = blue white normal -disabled = cyan white normal -enabled = black white normal -empty_mixer_bar = black white bold -filled_mixer_bar = blue default bold -empty_time_bar = white white normal -filled_time_bar = white default bold -entry = black white normal -entry_title = black cyan normal -error = red white normal -message = magenta white normal -plist_time = white cyan bold diff --git a/.moc/themes/paper_white b/.moc/themes/paper_white deleted file mode 100755 index 5281566..0000000 --- a/.moc/themes/paper_white +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# paper_white theme for MOC by orveldv (version 2) -# 06/May/2007 -# -############################################################################## - -background = white white normal -frame = black white normal -window_title = black white normal -directory = white white bold -selected_directory = white black bold -playlist = cyan white bold -selected_playlist = white black bold -file = white white bold -selected_file = white black bold -marked_file = blue white normal -marked_selected_file = cyan black bold -info = cyan white bold -selected_info = blue black bold -marked_info = green black bold -marked_selected_info = green black bold -status = white cyan bold -title = blue white normal -state = red white blink -current_time = white white bold -time_left = cyan white bold -total_time = black white bold -time_total_frames = black white normal -sound_parameters = black white normal -legend = white white bold -disabled = cyan white normal -enabled = blue white bold -empty_mixer_bar = black white bold -filled_mixer_bar = cyan default bold -empty_time_bar = white white normal -filled_time_bar = white default bold -entry = black white normal -entry_title = black cyan normal -error = red white normal -message = magenta white normal -plist_time = white cyan bold diff --git a/.moc/themes/rhowaldt b/.moc/themes/rhowaldt deleted file mode 100755 index e860403..0000000 --- a/.moc/themes/rhowaldt +++ /dev/null @@ -1,123 +0,0 @@ -############################################################################## -# -# Thank you Gutterslob & pvsage from #! forums! -# -# The format of this file is: -# Lines beginning with # are comments. -# Blank lines are ignored. -# Every other line is expected to be in format: -# -# ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]] -# -# or -# -# colordef COLOR = RED GREEN BLUE -# -# Where names are case insensitive. -# -# ELEMENT is an element of MOC interface. This can be: -# background - default background for regions when nothing is displayed -# frame - frames for windows -# window_title - the title of the window (eg name of the current -# directory) -# directory - a directory in the menu -# selected_directory - a directory that is selected using arrows -# playlist - playlist file -# selected_playlist - see selected directory -# file - an ordinary file in the menu (mp3, ogg, ...) -# selected_file - see selected directory -# marked_file - a file that is currently being played -# marked_selected_file - a file that is currently being played and is also -# selected using arrows -# info - information shown at the right side of files -# selected_info - see selected directory -# marked_info - a file (its time) that is currently being played -# marked_selected_info - a file (its time) that is currently being played -# and is also selected using arrows -# status - the status line with a message -# title - the title of the file that is currently being played -# state - the state: play, stop, or paused (>, [], ||) -# current_time - current time of playing -# time_left - the time left to the end of playing the current file -# total_time - the length of the currently played file -# time_total_frames - the brackets outside the total time of a file ([10:13]) -# sound_parameters - the frequency and bitrate numbers -# legend - "KHz" and "Kbps" -# disabled - disabled element ([STEREO]) -# enabled - enabled element -# empty_mixer_bar - "empty" part of the volume bar -# filled_mixer_bar - "filled" part of the volume bar -# empty_time_bar - "empty" part of the time bar -# filled_time_bar - "filled" part of the time bar -# entry - place wher user can type a search query or a file name -# entry_title - the title of an entry -# error - error message -# message - information message -# plist_time - total time of displayed items -# -# FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values: -# black, red, green, yellow, blue, magenta, cyan, white, default (can be -# transparent), grey (not standard, but works) -# -# Optional ATTRIBUTE parameters can be (from ncurses manual): -# normal - default (no highlight) -# standout - best highlighting mode of the terminal -# underline - underlining -# reverse - reverse video -# blink - blinking -# dim - half bright -# bold - extra bright or bold -# protect - protected mode -# -# You can specify a list of attributes separated by commas: attr1,attr2,attr3. -# Don't use spaces anywhere in such a list. -# -# With colordef you can change the definition of a color. It works only if -# your terminal supports it, if not those lines will be silently ignored. -# COLOR must be a valid color name and the RED GREEN and BLUE are numbers -# from 0 to 1000. Example: -# -# colordef red = 1000 0 0 -# -# HINT: you have only 8 colors, but combined with attributes bold and/or -# reversed you actually get more colors. -# -# If you don't specify some elements, the default values will be used. -############################################################################## -# - -background = default default -frame = default default -window_title = default default -directory = blue default -selected_directory = blue default reverse -playlist = default default -selected_playlist = default default reverse -file = default default -selected_file = default default reverse -marked_file = blue default bold -marked_selected_file = blue default reverse -info = default default -selected_info = default default -marked_info = blue default bold -marked_selected_info = blue default bold -status = default default -title = blue default bold -state = default default -current_time = default default -time_left = default default -total_time = default default -time_total_frames = default default -sound_parameters = default default -legend = default default -disabled = default default -enabled = blue default bold -empty_mixer_bar = default default -filled_mixer_bar = default default reverse -empty_time_bar = default default -filled_time_bar = default default reverse -entry = default default -entry_title = default default -error = default default bold -message = default default bold -plist_time = default default diff --git a/.moc/themes/rteff_theme b/.moc/themes/rteff_theme deleted file mode 100755 index c6933ff..0000000 --- a/.moc/themes/rteff_theme +++ /dev/null @@ -1,41 +0,0 @@ -########################################################### -# -# Rteff Theme -# -# Email [email protected] -# GitHub https://github.com/rteff -# -########################################################## - -background = black black -frame = cyan black -window_title = cyan black bold,underline -directory = blue black bold -selected_directory = cyan black bold,underline -playlist = white black bold -selected_playlist = cyan black bold,underline -file = white black -selected_file = cyan black bold,underline -marked_file = grey black bold -marked_selected_file = grey black bold,underline -info = cyan black -status = blue black -title = blue black bold -state = cyan black -current_time = grey black -time_left = red black -total_time = white black -time_total_frames = white black -sound_parameters = grey black bold -legend = white black bold -disabled = red black -enabled = grey black bold -empty_mixer_bar = white black bold,underline -filled_mixer_bar = cyan black underline -empty_time_bar = white black underline -filled_time_bar = cyan black underline -entry = white black -entry_title = white black -error = red black bold,underline -message = blue black bold -plist_time = cyan black underline diff --git a/.moc/themes/solarized b/.moc/themes/solarized deleted file mode 100755 index ee09a23..0000000 --- a/.moc/themes/solarized +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# based on solarized -# best viewed on shaded or black terminal -# -############################################################################## - -background = default default -frame = black default -window_title = green default -directory = red default -selected_directory = blue default -playlist = blue default -selected_playlist = magenta default -file = green default -selected_file = cyan default -marked_file = green default bold -marked_selected_file = cyan default bold -info = cyan default -selected_info = cyan default -marked_info = green default bold -marked_selected_info = cyan default bold -status = magenta default -title = green default -state = magenta default -current_time = magenta default -time_left = cyan default -total_time = cyan default -time_total_frames = magenta default -sound_parameters = cyan default -legend = magenta default -disabled = black default -enabled = yellow default -empty_mixer_bar = green default -filled_mixer_bar = black green -empty_time_bar = green default -filled_time_bar = black green -entry = yellow default -entry_title = red default -error = red default -message = yellow default -plist_time = magenta default diff --git a/.moc/themes/transparent-light b/.moc/themes/transparent-light deleted file mode 100755 index 3c80315..0000000 --- a/.moc/themes/transparent-light +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################## -# -# transparent_forlightbg theme for MOC by orveldv (version 2) -# 06/May/2007 -# -############################################################################## - -background = default default normal -frame = blue default bold -window_title = blue default bold -directory = black default normal -selected_directory = white black bold -playlist = blue default normal -selected_playlist = white black bold -file = black default normal -selected_file = white black bold -marked_file = blue default bold -marked_selected_file = cyan black bold -info = cyan default normal -selected_info = white black bold -marked_info = blue default bold -marked_selected_info = cyan black bold -status = black cyan bold -title = blue default normal -state = red default bold,blink -current_time = blue default bold -time_left = cyan default normal -total_time = black default bold -time_total_frames = black default normal -sound_parameters = black default bold -legend = black default normal -disabled = cyan default bold -enabled = blue default bold -empty_mixer_bar = blue default bold -filled_mixer_bar = white cyan bold -empty_time_bar = white default normal -filled_time_bar = white cyan bold -entry = black default normal -entry_title = black cyan normal -error = red default normal -message = magenta default normal -plist_time = white cyan bold diff --git a/.moc/themes/tty b/.moc/themes/tty deleted file mode 100755 index 19a7b46..0000000 --- a/.moc/themes/tty +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################## -# -# tty -# -############################################################################## -background = default default -frame = default default -window_title = default default -directory = default default -selected_directory = default default reverse -playlist = default default -selected_playlist = default default reverse -file = default default -selected_file = default default reverse -marked_file = green default bold -marked_selected_file = green default reverse,bold -info = default default -selected_info = default default bold,reverse -marked_info = green default bold -marked_selected_info = green default bold,reverse -status = default default -title = default default bold -state = default default -current_time = default default bold -time_left = default default bold -total_time = default default bold -time_total_frames = default default -sound_parameters = default default bold -legend = default default -disabled = red default -enabled = green default bold -empty_mixer_bar = default default -filled_mixer_bar = default default reverse -empty_time_bar = default default -filled_time_bar = default default reverse -entry = default default -entry_title = default default -error = red default -message = green default -plist_time = default default diff --git a/.moc/themes/variant_red b/.moc/themes/variant_red deleted file mode 100755 index 9caa118..0000000 --- a/.moc/themes/variant_red +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################## -# -# Variant Red Theme by centralkidede -# -############################################################################## - -background = default default normal -frame = white default normal -window_title = white default normal -directory = white default bold -selected_directory = white red bold -playlist = white default bold -selected_playlist = white red bold -file = white default normal -selected_file = white red normal -marked_file = red default bold -marked_selected_file = white red bold -info = red default bold -selected_info = red default bold -marked_info = red default bold -marked_selected_info = white red bold -status = black default normal -title = black white bold -state = black white bold -current_time = black white bold -time_left = black white bold -total_time = black white bold -time_total_frames = black white normal -sound_parameters = black white bold -legend = black white normal -disabled = black default bold -enabled = white default bold -empty_mixer_bar = default red dim -filled_mixer_bar = red default normal -empty_time_bar = white default normal -filled_time_bar = black red normal -entry = white red normal -entry_title = black red normal -error = red default bold -message = red default bold -plist_time = default default bold |