Update 2024-02-14 09:01 OpenBSD/amd64-x13

This commit is contained in:
c0dev0id 2024-02-14 09:01:09 +01:00
parent f1c2dd4fb7
commit 82147c04ac
204 changed files with 16576 additions and 0 deletions

12
.abook/abookrc Normal file
View File

@ -0,0 +1,12 @@
set www_command=chrome
set show_cursor=false
set sort_field=name|nick
set index_format=" {name:24|nick} | {phone:14|workphone|mobile} | {email:40}"
field birthday = Birthday, date
view Main = name, nick, email, mobile, phone, workphone, notes, birthday, anniversary
#, address_lines, city, state, zip, birthday, url

11
.config/mpv/mpv.conf Normal file
View File

@ -0,0 +1,11 @@
volume-max=250 # max volume
volume=100 # default volume
profile=sw-fast # default preset/profile
vo=gpu
ao=sndio
audio-channels=stereo
#loop-file=inf
no-audio-display
#autofit-larger=70%
force-window=immediate
script-opts="ytdl_hook-try_ytdl_first=yes"

444
.config/picom/picom.conf Normal file
View File

@ -0,0 +1,444 @@
#################################
# Shadows #
#################################
transition-length = 300
transition-pow-x = 1.1
transition-pow-y = 1.1
transition-pow-w = 1.1
transition-pow-h = 1.1
size-transition = true
# Enabled client-side shadows on windows. Note desktop windows
# (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow,
# unless explicitly requested using the wintypes option.
#
# shadow = false
shadow = true;
# The blur radius for shadows, in pixels. (defaults to 12)
shadow-radius = 12
# The opacity of shadows. (0.0 - 1.0, defaults to 0.75)
shadow-opacity = .5
# The left offset for shadows, in pixels. (defaults to -15)
# shadow-offset-x = -15
# shadow-offset-x = -7;
# The top offset for shadows, in pixels. (defaults to -15)
# shadow-offset-y = -15
# shadow-offset-y = -7;
# Red color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-red = 0
# Green color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-green = 0
# Blue color value of shadow (0.0 - 1.0, defaults to 0).
# shadow-blue = 0
# Hex string color value of shadow (#000000 - #FFFFFF, defaults to #000000). This option will override options set shadow-(red/green/blue)
# shadow-color = "#000000"
# Specify a list of conditions of windows that should have no shadow.
#
# examples:
shadow-exclude = [ "name = 'dmenu'" ];
#
# shadow-exclude = []
# shadow-exclude = [
# "name = 'Notification'",
# "class_g = 'Conky'",
# "class_g ?= 'Notify-osd'",
# "class_g = 'Cairo-clock'",
# "_GTK_FRAME_EXTENTS@:c"
# ];
# Specify a list of conditions of windows that should have no shadow painted over, such as a dock window.
# clip-shadow-above = []
# Specify a X geometry that describes the region in which shadow should not
# be painted in, such as a dock window region. Use
# shadow-exclude-reg = "x10+0+0"
# for example, if the 10 pixels on the bottom of the screen should not have shadows painted on.
#
# shadow-exclude-reg = ""
# Crop shadow of a window fully on a particular monitor to that monitor. This is
# currently implemented using the X RandR extension.
# crop-shadow-to-monitor = false
#################################
# Fading #
#################################
# Fade windows in/out when opening/closing and when opacity changes,
# unless no-fading-openclose is used.
# fading = false
fading = true;
# Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028)
# fade-in-step = 0.028
fade-in-step = 0.08;
# Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03)
# fade-out-step = 0.03
fade-out-step = 0.08;
# The time between steps in fade step, in milliseconds. (> 0, defaults to 10)
fade-delta = 10
# Specify a list of conditions of windows that should not be faded.
# fade-exclude = []
# Do not fade on window open/close.
# no-fading-openclose = false
# Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc.
# no-fading-destroyed-argb = false
#################################
# Transparency / Opacity #
#################################
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
# inactive-opacity = 1
# inactive-opacity = 0.2
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
# frame-opacity = 1.0
# frame-opacity = 0.7
# Let inactive opacity set by -i override the '_NET_WM_WINDOW_OPACITY' values of windows.
# inactive-opacity-override = true
# inactive-opacity-override = false;
# Default opacity for active windows. (0.0 - 1.0, defaults to 1.0)
# active-opacity = 0.8
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
# inactive-dim = 0.5
# Specify a list of conditions of windows that should never be considered focused.
# focus-exclude = []
# focus-exclude = [ "class_g = 'Cairo-clock'" ];
# Use fixed inactive dim value, instead of adjusting according to window opacity.
# inactive-dim-fixed = 0.2
# Specify a list of opacity rules, in the format `PERCENT:PATTERN`,
# like `50:name *= "Firefox"`. picom-trans is recommended over this.
# Note we don't make any guarantee about possible conflicts with other
# programs that set '_NET_WM_WINDOW_OPACITY' on frame or client windows.
# example:
# opacity-rule = [ "80:class_g = 'URxvt'" ];
#
# opacity-rule = [ "90:class_g = 'xterm-256color'",
# "90:class_g = 'scratchpad'" ];
#################################
# Corners #
#################################
# Sets the radius of rounded window corners. When > 0, the compositor will
# round the corners of windows. Does not interact well with
# `transparent-clipping`.
corner-radius = 10
# Exclude conditions for rounded corners.
# rounded-corners-exclude = [
# "window_type = 'dock'",
# "window_type = 'desktop'"
# ];
#################################
# Background-Blurring #
#################################
# Parameters for background blurring, see the *BLUR* section for more information.
blur-method = "dual_kawase"
#blur-method = "kernel"
#blur-size = 20
#blur-kern = "11x11gaussian"
#blur-kern = "7x7box"
#
#blur-deviation = true
#
blur-strength = 7
# Blur background of semi-transparent / ARGB windows.
# Bad in performance, with driver-dependent behavior.
# The name of the switch may change without prior notifications.
#
# blur-background = true
# Blur background of windows when the window frame is not opaque.
# Implies:
# blur-background
# Bad in performance, with driver-dependent behavior. The name may change.
#
# blur-background-frame = false
# Use fixed blur strength rather than adjusting according to window opacity.
# blur-background-fixed = false
# Specify the blur convolution kernel, with the following format:
# example:
# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
#
# blur-kern = ""
# blur-kern = "3x3box";
# Exclude conditions for background blur.
# blur-background-exclude = []
# blur-background-exclude = [
# "window_type = 'dock'",
# "window_type = 'desktop'",
# "_GTK_FRAME_EXTENTS@:c"
# ];
#################################
# General Settings #
#################################
# Enable remote control via D-Bus. See the man page for more details.
# dbus = false
# Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers.
# daemon = false
# Specify the backend to use: `xrender`, `glx`, `egl` or `xr_glx_hybrid`.
# `xrender` is the default one.
#
# backend = "glx"
# backend = "xr_glx_hybrid"
backend = "glx";
# Use higher precision during rendering, and apply dither when presenting the
# rendered screen. Reduces banding artifacts, but might cause performance
# degradation. Only works with OpenGL.
dithered-present = false;
# Enable/disable VSync.
# vsync = false
vsync = true;
# Enable remote control via D-Bus. See the *D-BUS API* section below for more details.
# dbus = false
# Try to detect WM windows (a non-override-redirect window with no
# child that has 'WM_STATE') and mark them as active.
#
# mark-wmwin-focused = false
# mark-wmwin-focused = true;
# Mark override-redirect windows that doesn't have a child window with 'WM_STATE' focused.
# mark-ovredir-focused = false
# mark-ovredir-focused = false;
# Try to detect windows with rounded corners and don't consider them
# shaped windows. The accuracy is not very high, unfortunately.
#
# detect-rounded-corners = false
# detect-rounded-corners = true;
# Detect '_NET_WM_WINDOW_OPACITY' on client windows, useful for window managers
# not passing '_NET_WM_WINDOW_OPACITY' of client windows to frame windows.
#
# detect-client-opacity = false
# detect-client-opacity = true;
# Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window,
# rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy,
# provided that the WM supports it.
#
use-ewmh-active-win = true
# Unredirect all windows if a full-screen opaque window is detected,
# to maximize performance for full-screen windows. Known to cause flickering
# when redirecting/unredirecting windows.
#
# unredir-if-possible = false
# Delay before unredirecting the window, in milliseconds. Defaults to 0.
# unredir-if-possible-delay = 0
# Conditions of windows that shouldn't be considered full-screen for unredirecting screen.
# unredir-if-possible-exclude = []
# Use 'WM_TRANSIENT_FOR' to group windows, and consider windows
# in the same group focused at the same time.
#
# detect-transient = false
detect-transient = true;
# Use 'WM_CLIENT_LEADER' to group windows, and consider windows in the same
# group focused at the same time. This usually means windows from the same application
# will be considered focused or unfocused at the same time.
# 'WM_TRANSIENT_FOR' has higher priority if detect-transient is enabled, too.
#
# detect-client-leader = false
# Resize damaged region by a specific number of pixels.
# A positive value enlarges it while a negative one shrinks it.
# If the value is positive, those additional pixels will not be actually painted
# to screen, only used in blur calculation, and such. (Due to technical limitations,
# with use-damage, those pixels will still be incorrectly painted to screen.)
# Primarily used to fix the line corruption issues of blur,
# in which case you should use the blur radius value here
# (e.g. with a 3x3 kernel, you should use `--resize-damage 1`,
# with a 5x5 one you use `--resize-damage 2`, and so on).
# May or may not work with *--glx-no-stencil*. Shrinking doesn't function correctly.
#
# resize-damage = 1
# Specify a list of conditions of windows that should be painted with inverted color.
# Resource-hogging, and is not well tested.
#
# invert-color-include = []
# GLX backend: Avoid using stencil buffer, useful if you don't have a stencil buffer.
# Might cause incorrect opacity when rendering transparent content (but never
# practically happened) and may not work with blur-background.
# My tests show a 15% performance boost. Recommended.
#
# glx-no-stencil = false
# GLX backend: Avoid rebinding pixmap on window damage.
# Probably could improve performance on rapid window content changes,
# but is known to break things on some drivers (LLVMpipe, xf86-video-intel, etc.).
# Recommended if it works.
#
# glx-no-rebind-pixmap = false
# Disable the use of damage information.
# This cause the whole screen to be redrawn every time, instead of the part of the screen
# has actually changed. Potentially degrades the performance, but might fix some artifacts.
# The opposing option is use-damage
#
# no-use-damage = false
use-damage = true;
# Use X Sync fence to sync clients' draw calls, to make sure all draw
# calls are finished before picom starts drawing. Needed on nvidia-drivers
# with GLX backend for some users.
#
# xrender-sync-fence = false
# GLX backend: Use specified GLSL fragment shader for rendering window
# contents. Read the man page for a detailed explanation of the interface.
#
# window-shader-fg = "default"
# Use rules to set per-window shaders. Syntax is SHADER_PATH:PATTERN, similar
# to opacity-rule. SHADER_PATH can be "default". This overrides window-shader-fg.
#
# window-shader-fg-rule = [
# "my_shader.frag:window_type != 'dock'"
# ]
# Force all windows to be painted with blending. Useful if you
# have a glx-fshader-win that could turn opaque pixels transparent.
#
# force-win-blend = false
# Do not use EWMH to detect fullscreen windows.
# Reverts to checking if a window is fullscreen based only on its size and coordinates.
#
# no-ewmh-fullscreen = false
# Dimming bright windows so their brightness doesn't exceed this set value.
# Brightness of a window is estimated by averaging all pixels in the window,
# so this could comes with a performance hit.
# Setting this to 1.0 disables this behaviour. Requires --use-damage to be disabled. (default: 1.0)
#
# max-brightness = 1.0
# Make transparent windows clip other windows like non-transparent windows do,
# instead of blending on top of them.
#
transparent-clipping = false
# Specify a list of conditions of windows that should never have transparent
# clipping applied. Useful for screenshot tools, where you need to be able to
# see through transparent parts of the window.
#
# transparent-clipping-exclude = []
# Set the log level. Possible values are:
# "trace", "debug", "info", "warn", "error"
# in increasing level of importance. Case doesn't matter.
# If using the "TRACE" log level, it's better to log into a file
# using *--log-file*, since it can generate a huge stream of logs.
#
# log-level = "debug"
log-level = "warn";
# Set the log file.
# If *--log-file* is never specified, logs will be written to stderr.
# Otherwise, logs will to written to the given file, though some of the early
# logs might still be written to the stderr.
# When setting this option from the config file, it is recommended to use an absolute path.
#
# log-file = "/path/to/your/log/file"
# Show all X errors (for debugging)
# show-all-xerrors = false
# Write process ID to a file.
# write-pid-path = "/path/to/your/log/file"
# Window type settings
#
# 'WINDOW_TYPE' is one of the 15 window types defined in EWMH standard:
# "unknown", "desktop", "dock", "toolbar", "menu", "utility",
# "splash", "dialog", "normal", "dropdown_menu", "popup_menu",
# "tooltip", "notification", "combo", and "dnd".
#
# Following per window-type options are available: ::
#
# fade, shadow:::
# Controls window-type-specific shadow and fade settings.
#
# opacity:::
# Controls default opacity of the window type.
#
# focus:::
# Controls whether the window of this type is to be always considered focused.
# (By default, all window types except "normal" and "dialog" has this on.)
#
# full-shadow:::
# Controls whether shadow is drawn under the parts of the window that you
# normally won't be able to see. Useful when the window has parts of it
# transparent, and you want shadows in those areas.
#
# clip-shadow-above:::
# Controls whether shadows that would have been drawn above the window should
# be clipped. Useful for dock windows that should have no shadow painted on top.
#
# redir-ignore:::
# Controls whether this type of windows should cause screen to become
# redirected again after been unredirected. If you have unredir-if-possible
# set, and doesn't want certain window to cause unnecessary screen redirection,
# you can set this to `true`.
#
wintypes:
{
tooltip = { fade = true; shadow = true; opacity = 0.9; focus = true; full-shadow = false; };
dock = { shadow = false; clip-shadow-above = true; }
dnd = { shadow = false; }
popup_menu = { opacity = 0.9; }
dropdown_menu = { opacity = 0.9; }
};

104
.config/polybar/config.ini Normal file
View File

@ -0,0 +1,104 @@
[colors]
background = #002020
background-alt = #004040
foreground = #EEEEEE
primary = #FF6A00
secondary = #CCCCCC
alert = #A54242
disabled = #707880
[bar/openbsd]
width = 100%
height = 17pt
#radius = 10
background = ${colors.background}
foreground = ${colors.foreground}
line-size = 2pt
border-size = 0pt
border-color = #222222
padding-left = 1
padding-right = 1
module-margin = 1
# separator = |
# separator-foreground = ${colors.disabled}
font-0 = "TerminessNerdFontMono:weight=0:pixelsize=16;3"
modules-left = xworkspaces xwindow
modules-right = cbar
cursor-click = pointer
cursor-scroll = ns-resize
enable-ipc = true
wm-restack = generic
; wm-restack = bspwm
; wm-restack = i3
; override-redirect = true
[module/cbar]
type = custom/script
; Available tokens:
; %counter%
; Command to be executed (using "/bin/sh -c [command]")
exec = cbar
; Conditional command that, if defined, needs to exit successfully
; before the main exec command is invoked.
; Default: ""
# exec-if = pgrep -x cbar
; Set this to true for scripts that continuously produce output
; If set to 'true', everytime the script produces a new line of output, the module updates.
; Otherwise, only the first line of output is considered and all later lines are discarded.
; Default: false
tail = true
; Seconds to sleep between updates
; Default: 5 (0 if `tail = true`)
interval = 0
; Set environment variables in the 'exec' script
; New in version 3.6.0
; env-NAME = VALUE
; env-FOO = BAR
[module/xworkspaces]
type = internal/xworkspaces
label-active = %nwin%
label-active-background = ${colors.background-alt}
#label-active-underline= ${colors.primary}
label-active-foreground = ${colors.secondary}
label-active-padding = 1
label-occupied = %nwin%
label-occupied-padding = 1
label-occupied-foreground = ${colors.secondary}
label-urgent = %nwin%
label-urgent-background = ${colors.alert}
label-urgent-padding = 1
label-empty = %nwin%
label-empty-foreground = ${colors.disabled}
label-empty-padding = 1
[module/xwindow]
type = internal/xwindow
label = %title:0:60:...%
[settings]
screenchange-reload = false
pseudo-transparency = false
; vim:ft=dosini

2
.config/rofi/config.rasi Normal file
View File

@ -0,0 +1,2 @@
@theme "/home/sdk/.config/rofi/themes/nord.rasi"
@theme "/home/sdk/.config/rofi/themes/nord-sdk.rasi"

View File

@ -0,0 +1,74 @@
* {
bg: #282c34;
bg-alt: #21252b;
fg: #FFFFFF;
fg-alt: #828791;
/* accent-color: #5C6370; */
accent-color: #2D333B;
background-color: transparent;
border: 0;
margin: 0;
padding: 0;
spacing: 0;
}
window {
width: 35%;
/* border: 2;
border-color: #3477ad; */
}
element {
padding: 8 0;
text-color: @fg-alt;
}
element selected {
background-color: @accent-color;
text-color: @fg;
/* border-radius: 15px; */
}
element-text {
text-color: inherit;
vertical-align: 0.5;
highlight: none;
}
element-icon {
size: 25;
padding: 0 10 0 10;
}
entry {
background-color: @bg-alt;
padding: 12;
text-color: @fg;
}
inputbar {
children: [prompt, entry];
}
listview {
padding: 8 12;
background-color: @bg;
columns: 1;
lines: 8;
}
mainbox {
background-color: @bg;
children: [inputbar, listview];
}
prompt {
background-color: @bg-alt;
enabled: true;
padding: 12 0 0 12;
text-color: @fg;
}

View File

@ -0,0 +1,73 @@
@import "shared/settings.rasi"
* {
background-color: @bg;
font: "Rubik Regular 9";
}
window {
width: 700px;
height: 520px;
border-radius: 6px;
}
mainbox {
background-color: @bg;
}
inputbar {
padding: 0px 0px 0px 0px;
background-color: transparent;
children: [entry];
padding: 50px 0px;
background-image: @launcher-header;
}
entry {
background-color: @bg-light;
padding: 5px;
margin: 0px 200px;
horizontal-align: 0.5;
color: @fg;
border-radius: 5px;
placeholder: "Search";
placeholder-color: #b3b7bd;
}
listview {
columns: 4;
spacing: 5px;
fixed-columns: true;
background-color: transparent;
padding: 3%;
}
element {
orientation: vertical;
background-color: transparent;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
element selected {
background-color: @bg-hover;
}
element-icon {
background-color: transparent;
size: 48;
horizontal-align: 0.5;
cursor: inherit;
}
element-text {
horizontal-align: 0.5;
color: @fg;
background-color: transparent;
padding: 10px 5px;
cursor: inherit;
}
element-text selected {
color: @fg-hover;
}

View File

@ -0,0 +1,94 @@
/*******************************************************************************
* 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;
}

View File

@ -0,0 +1,75 @@
* {
bg: #1e1e2e;
bg-alt: #313244;
fg: #11111b;
fg-alt: #cdd6f4;
/* accent-color: #5C6370; */
accent-color: #a6e3a1;
background-color: transparent;
border: 0;
margin: 0;
padding: 0;
spacing: 0;
}
window {
width: 35%;
/* border: 2;
border-color: #3477ad; */
}
element {
padding: 8 0;
text-color: @fg-alt;
}
element selected {
background-color: @accent-color;
text-color: @fg;
/* border-radius: 15px; */
}
element-text {
text-color: inherit;
vertical-align: 0.5;
highlight: none;
}
element-icon {
size: 25;
padding: 0 10 0 10;
}
entry {
background-color: @bg-alt;
padding: 12;
text-color: @fg-alt;
}
inputbar {
children: [prompt, entry];
}
listview {
padding: 8 12;
background-color: @bg;
columns: 1;
lines: 8;
}
mainbox {
background-color: @bg;
children: [inputbar, listview];
}
prompt {
background-color: @bg-alt;
enabled: true;
padding: 12 0 0 12;
text-color: @fg-alt;
}

View File

@ -0,0 +1,106 @@
/*******************************************************************************
* ROFI ONELINE 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: "Fira Code 10";
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 {
location: north;
width: 100%;
background-color: @nord0;
children: [ mainbox,message ];
}
mainbox {
orientation: horizontal;
children: [ inputbar,listview ];
}
inputbar {
width: 25%;
padding: 1px 8px;
spacing: 8px;
children: [ prompt, entry ];
}
prompt, entry, element-text, element-icon {
vertical-align: 0.5;
}
prompt {
text-color: @accent-color;
}
listview {
layout: horizontal;
}
element {
padding: 1px 8px;
spacing: 4px;
}
element normal urgent {
text-color: @nord13;
}
element normal active {
text-color: @accent-color;
}
element selected {
text-color: @nord0;
}
element selected normal {
background-color: @accent-color;
}
element selected urgent {
background-color: @nord13;
}
element selected active {
background-color: @nord8;
}
element-icon {
size: 0.75em;
}
element-text {
text-color: inherit;
}

View File

@ -0,0 +1,91 @@
/*******************************************************************************
* 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: "Terminess 12";
COLORNB: #181818;
COLORNF: #707070;
COLORSB: #333333;
COLORSF: #CCCCCC;
background-color: transparent;
text-color: @COLORNF;
accent-color: @COLORSF;
margin: 0px;
padding: 0px;
spacing: 0px;
}
window {
background-color: @COLORNB;
border-color: @COLORNF;
location: center;
width: 50%;
height: 50%;
border: 1px;
}
inputbar {
padding: 4px 4px;
spacing: 6px;
children: [ prompt, entry ];
}
prompt, entry, element-text, element-icon {
vertical-align: 0.5;
}
prompt {
text-color: @COLORSF;
}
listview {
lines: 8;
columns: 1;
fixed-height: false;
}
element {
padding: 4px;
spacing: 4px;
}
element normal urgent {
text-color: @COLORNF;
}
element normal active {
text-color: @COLORNF;
}
element selected {
text-color: @COLORSF;
}
element selected normal {
background-color: @COLORSB;
}
element selected urgent {
background-color: @COLORSF;
}
element selected active {
background-color: @COLORSF;
}
element-icon {
size: 0.75em;
}
element-text {
text-color: inherit;
}

View File

@ -0,0 +1,101 @@
/*******************************************************************************
* ROFI TWO LINES 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: "Fira Code 10";
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;
location: north;
width: 100%;
}
inputbar {
padding: 2px 8px;
spacing: 8px;
children: [ prompt, entry ];
}
prompt, entry, element-text, element-icon {
vertical-align: 0.5;
}
prompt {
text-color: @accent-color;
}
listview {
lines: 1;
columns: 4;
}
element {
padding: 1px 8px;
spacing: 4px;
}
element normal urgent {
text-color: @nord13;
}
element normal active {
text-color: @accent-color;
}
element selected {
text-color: @nord0;
}
element selected normal {
background-color: @accent-color;
}
element selected urgent {
background-color: @nord13;
}
element selected active {
background-color: @nord8;
}
element-icon {
size: 0.75em;
}
element-text {
text-color: inherit;
}

View File

@ -0,0 +1,105 @@
/*******************************************************************************
* 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;
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;
}

View File

@ -0,0 +1,37 @@
@import "shared/settings.rasi"
* {
icon-font: "feather 18";
background-color: @bg;
}
window {
width: 460px;
border-radius: 8px;
}
mainbox {
children: [listview];
}
listview {
columns: 5;
lines: 1;
children: [element-text];
padding: 10px 15px 10px -5px;
}
element-text {
background-color: @bg-semilight;
horizontal-align: 0.5;
padding: 20px 10px 23px 10px;
font: @icon-font;
border-radius: 10px;
color: @fg-unhover;
cursor: pointer;
}
element-text selected {
background-color: @bg-hover;
color: @fg-hover;
}

View File

@ -0,0 +1,50 @@
@import "shared/settings.rasi"
* {
icon-font: "feather 24";
background-color: @bg;
}
window {
width: 200px;
border-radius: 8px;
}
mainbox {
children: [inputbar,listview];
padding: 5px 0px;
}
inputbar {
orientation: horizontal;
children: [prompt];
padding: 10px 0px;
}
prompt {
color: @bg-hover;
font: "Rubik Regular 12";
padding: 0px 70px 0px 40px;
}
listview {
columns: 2;
lines: 1;
children: [element-text];
padding: 10px 15px 10px -5px;
}
element-text {
background-color: @bg-semilight;
horizontal-align: 0.5;
padding: 20px 10px 15px 10px;
font: @icon-font;
border-radius: 10px;
color: @fg-unhover;
cursor: pointer;
}
element-text selected {
background-color: @bg-hover;
color: @fg-hover;
}

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #1A73E8F2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,93 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
font: "Roboto 12";
background-color: transparent;
text-color: @fg0;
margin: 0px;
padding: 0px;
spacing: 0px;
}
window {
location: center;
width: 480;
border-radius: 24px;
background-color: @bg0;
}
mainbox {
padding: 12px;
}
inputbar {
background-color: @bg1;
border-color: @bg3;
border: 2px;
border-radius: 16px;
padding: 8px 16px;
spacing: 8px;
children: [ prompt, entry ];
}
prompt {
text-color: @fg2;
}
entry {
placeholder: "Search";
placeholder-color: @fg3;
}
message {
margin: 12px 0 0;
border-radius: 16px;
border-color: @bg2;
background-color: @bg2;
}
textbox {
padding: 8px 24px;
}
listview {
background-color: transparent;
margin: 12px 0 0;
lines: 8;
columns: 1;
fixed-height: false;
}
element {
padding: 8px 16px;
spacing: 8px;
border-radius: 16px;
}
element normal active {
text-color: @bg3;
}
element selected normal, element selected active {
background-color: @bg3;
}
element-icon {
size: 1em;
vertical-align: 0.5;
}
element-text {
text-color: inherit;
}

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #616161F2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #4CAF50F2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,22 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #2E3440F2;
bg1: #3B4252;
bg2: #4C566A80;
bg3: #88C0D0F2;
fg0: #D8DEE9;
fg1: #ECEFF4;
fg2: #D8DEE9;
fg3: #4C566A;
}
@import "rounded-common.rasi"
element selected {
text-color: @bg1;
}

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #F57C00F2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #EC407AF2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #AB47BCF2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #E53935F2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

@ -0,0 +1,18 @@
/*******************************************************************************
* ROUNDED THEME FOR ROFI
* User : LR-Tech
* Theme Repo : https://github.com/lr-tech/rofi-themes-collection
*******************************************************************************/
* {
bg0: #212121F2;
bg1: #2A2A2A;
bg2: #3D3D3D80;
bg3: #FBC02DF2;
fg0: #E6E6E6;
fg1: #FFFFFF;
fg2: #969696;
fg3: #3D3D3D;
}
@import "rounded-common.rasi"

View File

View File

@ -0,0 +1,41 @@
@import "shared/settings.rasi"
* {
icon-font: "feather 18";
background-color: @bg;
}
window {
width: 100px;
height: 260px;
location: east;
x-offset: -6px;
border-radius: 8px;
}
mainbox {
children: [listview];
}
listview {
spacing: 15px;
columns: 1;
lines: 3;
children: [element-text];
padding: 10px 15px 10px -5px;
}
element-text {
background-color: @bg-semilight;
horizontal-align: 0.5;
padding: 20px 10px 23px 10px;
font: @icon-font;
border-radius: 10px;
color: @fg-unhover;
cursor: pointer;
}
element-text selected {
background-color: @bg-hover;
color: @fg-hover;
}

View File

@ -0,0 +1,15 @@
* {
bg: #15191f;
bg-semilight: #181C22;
bg-light: #21252b;
fg: #ecf2f2;
red: #FF598B;
wifi-accent: #FF598B;
blue: #33AEFF;
green: #1FE0A6;
bg-hover: #33AEFF;
fg-hover: #15191f;
fg-unhover: #33AEFF;
network-header: url("assets/dark/network-header.png", height);
launcher-header: url("assets/dark/launcher-header.png", height);
}

View File

@ -0,0 +1,15 @@
* {
bg: #ECF2F2;
bg-semilight: #E5EBEB;
bg-light: #f9f9f9;
fg: #15191f;
red: #F865A5;
wifi-accent: #33AEFF;
blue: #33AEFF;
green: #29EDBE;
bg-hover: #F865A5;
fg-hover: #ecf2f2;
fg-unhover: #33AEFF;
network-header: url("assets/light/network-header.png", height);
launcher-header: url("assets/light/launcher-header.png", height);
}

View File

@ -0,0 +1 @@
@import "colorschemes/color-light.rasi"

View File

@ -0,0 +1,111 @@
* {
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;
}

View File

@ -0,0 +1,98 @@
/*******************************************************************************
* 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;
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;
}

View File

@ -0,0 +1,98 @@
/*******************************************************************************
* 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;
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;
}

View File

@ -0,0 +1,95 @@
/*******************************************************************************
* 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;
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;
}

View File

@ -0,0 +1,95 @@
/*******************************************************************************
* 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;
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;
}

View File

@ -0,0 +1,95 @@
/*******************************************************************************
* 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;
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;
}

116
.config/sdorfehs/config Normal file
View File

@ -0,0 +1,116 @@
set gap 12
set ignoreresizehints 1
#set onlyborder 0
# #set rudeness 12
# swap workspaces, but define it in 'top' to avoid having to prefix with C-a
definekey top M-1 vselect 0
definekey top M-2 vselect 1
definekey top M-3 vselect 2
definekey top M-4 vselect 3
# prevent accidental closes
unbind k
# i like tab just going between the same two windows
definekey top M-Tab focuslast
definekey top M-Left focusleft
definekey top M-Right focusright
definekey top M-Up focusup
definekey top M-Down focusdown
definekey top M-f only
definekey top M-k readkey _k
newkmap _k
definekey _k k hsplit
definekey _k M-k hsplit
definekey _k K vsplit
definekey _k M-K vsplit
definekey top M-a readkey _a
newkmap _a
definekey _a M-Right hsplit
definekey _a M-Left hsplit
definekey _a M-Up vsplit
definekey _a M-Down vsplit
definekey _a colon colon
definekey top M-Prior next
definekey top M-Next prev
# definekey top M-Return exec bterm
# definekey top M-S-Return exec hterm
# bind Right split
# bind Down hsplit
bind c exec bterm
definekey top M-Return exec bterm
definekey top M-q delete
definekey top M-Q remove
bind minus split
bind bar hsplit
definekey top M-F exec dexec_browser
definekey top M-P exec dexec_pass
definekey top M-S exec dexec_ssh
definekey top M-A exec dexec_apps
definekey top M-d exec dexec
# things from jcs
# set barpadding 20 10
# set gap 26
# set ignoreresizehints 1
# set onlyborder 0
#
# bind s split
# bind C-s split
# bind S hsplit
# bind C-S hsplit
#
# bind c exec bterm
# bind C-c exec bterm
#
# # lock the screen
# bind L exec pkill -USR1 xidle
#
#
#
# # quickly jump to music
# definekey root 9 exec sdorfehs -c "vselect 0" -c "fselect 2" -c "select 9"
#
# # map to matebook F keys
# definekey top F1 exec sdorfehs -c "echo backlight: `xbacklight -dec 5 -time 0; xbacklight | sed 's/\..*//'`"
# definekey top F2 exec sdorfehs -c "echo backlight: `xbacklight -inc 5 -time 0; xbacklight | sed 's/\..*//'`"
# definekey top F4 exec sndioctl -q output.mute=!; pkill -USR1 i3status; true
# definekey top F5 exec sndioctl -q output.mute=0; sndioctl -q output.level=-0.025; pkill -USR1 i3status; true
# definekey top F6 exec sndioctl -q output.mute=0; sndioctl -q output.level=+0.025; pkill -USR1 i3status; true
#
# definekey top F10 exec ~/bin/music prev
# definekey top F11 exec ~/bin/music playpause
# definekey top F12 exec ~/bin/music next
# definekey top M-F12 exec ~/bin/music nextalbum
#
#
# # act normal but prevent firefox raising itself when links are opened from
# # other apps
# #set rudeness 12
#
# # let popups stay centered
# unmanage xmessage
# unmanage xprompt
# unmanage OpenSSH Authentication Passphrase Request
# unmanage dzen title
#
# # startup configuration
# #exec ruby ~/code/sdorfehs-bar/sdorfehs-bar.rb
# frestore (frame :number 0 :x 0 :y 40 :width 1080 :height 1400 :screenw 2160 :screenh 1440 :window 27262985 :last-access 29 :dedicated 0),(frame :number 1 :x 1080 :y 40 :width 1080 :height 1150 :screenw 2160 :screenh 1440 :window 18874377 :last-access 28 :dedicated 0),(frame :number 2 :x 1080 :y 1190 :width 1080 :height 250 :screenw 2160 :screenh 1440 :window 20971523 :last-access 26 :dedicated 0)
# execf 0 env RUN_AND_RETURN=mutt bterm -title mutt
# execf 1 env RUN_AND_RETURN=irc bterm -title irssi
# fselect 2
# execf 2 cmus
# exec sleep 2; sdorfehs -c "fselect 1" -c "fselect 0"

48
.config/sdorfehs/mybar.c Normal file
View File

@ -0,0 +1,48 @@
/***************************************/
/*** c0dev0ids lazy ass sdorfehs bar ***/
/***************************************/
static char * fifo_path = "/home/sdk/.config/sdorfehs/bar";
#include <stdio.h>
//#include <string.h>
//#include <fcntl.h>
//#include <sys/ioctl.h>
//#include <sys/stat.h>
//#include <sys/types.h>
//#include <unistd.h>
//#include <machine/apmvar.h>
char * juice()
{
int fd;
char buf[2];
struct apm_power_info pi;
if ((fd = open("/dev/apm", O_RDONLY)) == -1 ||
ioctl(fd, APM_IOC_GETPOWER, &pi) == -1 ||
close(fd) == -1)
return "??";
if (pi.battery_state == APM_BATT_UNKNOWN ||
pi.battery_state == APM_BATTERY_ABSENT)
return "??";
return snprintf(buf, sizeof(buf), "%i", pi.battery_life);
}
int main() {
int fifo_fd;
int i = 0;
while(1) {
fifo_fd = open(fifo_path, O_NONBLOCK | O_WRONLY);
char str[255] = "";
snprintf(str, sizeof(str), "Battery: %s%%\n",juice());
write(fifo_fd, str, strlen(str)+1);
close(fifo_fd);
sleep(1);
}
return 0;
}

View File

@ -0,0 +1,65 @@
" You can edit this file by hand.
" The " character at the beginning of a line comments out the line.
" Blank lines are ignored.
" The Default color scheme is used for any directory that does not have
" a specified scheme and for parts of user interface like menus. A
" color scheme set for a base directory will also
" be used for the sub directories.
" The standard ncurses colors are:
" Default = -1 = None, can be used for transparency or default color
" Black = 0
" Red = 1
" Green = 2
" Yellow = 3
" Blue = 4
" Magenta = 5
" Cyan = 6
" White = 7
" Light versions of colors are also available (set bold attribute):
" LightBlack
" LightRed
" LightGreen
" LightYellow
" LightBlue
" LightMagenta
" LightCyan
" LightWhite
" Available attributes (some of them can be combined):
" bold
" underline
" reverse or inverse
" standout
" none
" Vifm supports 256 colors you can use color numbers 0-255
" (requires properly set up terminal: set your TERM environment variable
" (directly or using resources) to some color terminal name (e.g.
" xterm-256color) from /usr/lib/terminfo/; you can check current number
" of colors in your terminal with tput colors command)
" highlight group cterm=attrs ctermfg=foreground_color ctermbg=background_color
highlight clear
highlight Win cterm=none ctermfg=white ctermbg=black
highlight Directory cterm=bold ctermfg=cyan ctermbg=default
highlight Link cterm=bold ctermfg=yellow ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=magenta ctermbg=default
highlight Device cterm=bold ctermfg=red ctermbg=default
highlight Fifo cterm=bold ctermfg=cyan ctermbg=default
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CurrLine cterm=bold ctermfg=default ctermbg=blue
highlight TopLine cterm=none ctermfg=black ctermbg=white
highlight TopLineSel cterm=bold ctermfg=black ctermbg=default
highlight StatusLine cterm=bold ctermfg=black ctermbg=white
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Border cterm=none ctermfg=black ctermbg=white
highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white

View File

@ -0,0 +1,44 @@
" afterglow
" by danilo-augusto
"
" afterglow color scheme converted from the one for vim
" by romic
" Reset all styles first
highlight clear
highlight Win cterm=none ctermfg=253 ctermbg=default
highlight TabLine cterm=none ctermfg=default ctermbg=239
highlight TabLineSel cterm=none ctermfg=default ctermbg=235
highlight TopLine cterm=none ctermfg=243 ctermbg=default
highlight TopLineSel cterm=none ctermfg=253 ctermbg=default
highlight JobLine cterm=bold,inverse ctermfg=238 ctermbg=179
highlight StatusLine cterm=bold,inverse ctermfg=238 ctermbg=179
highlight Border cterm=none ctermfg=default ctermbg=default
highlight CurrLine ctermfg=default ctermbg=default cterm=inverse
highlight OtherLine ctermfg=default ctermbg=default cterm=none
highlight LineNr ctermfg=243 ctermbg=default cterm=inverse
highlight Selected cterm=none ctermfg=default ctermbg=60
highlight CmpMismatch cterm=none ctermfg=179 ctermbg=225
highlight SuggestBox cterm=none ctermfg=253 ctermbg=default
highlight WildMenu cterm=none ctermfg=179 ctermbg=232
highlight CmdLine cterm=none ctermfg=253 ctermbg=default
highlight ErrorMsg ctermfg=Red ctermbg=default cterm=none
highlight Directory cterm=none ctermfg=179 ctermbg=default
highlight Executable cterm=none ctermfg=108 ctermbg=default
highlight Socket cterm=none ctermfg=67 ctermbg=default
highlight Device cterm=none ctermfg=67 ctermbg=default
highlight Fifo cterm=none ctermfg=179 ctermbg=default
highlight Link cterm=none ctermfg=139 ctermbg=default
highlight BrokenLink cterm=none ctermfg=131 ctermbg=default

View File

@ -0,0 +1,39 @@
"
" Ansa theme for vifm
"
hi clear
" UI elements
hi Border cterm=none ctermfg=235 ctermbg=0
hi CmdLine cterm=none ctermfg=250 ctermbg=0
hi CurrLine cterm=none ctermfg=default ctermbg=236
hi ErrorMsg cterm=italic ctermfg=9 ctermbg=52
hi JobLine cterm=none ctermfg=220 ctermbg=1
hi LineNr cterm=none ctermfg=237 ctermbg=0
hi OtherLine cterm=none ctermfg=default ctermbg=234
hi Selected cterm=none ctermfg=default ctermbg=17
hi StatusLine cterm=none ctermfg=243 ctermbg=235
hi SuggestBox cterm=none ctermfg=243 ctermbg=0
hi TopLine cterm=none ctermfg=239 ctermbg=235
hi TopLineSel cterm=none ctermfg=248 ctermbg=235
hi WildMenu cterm=none ctermfg=254 ctermbg=237
hi Win cterm=none ctermfg=249 ctermbg=0
" Filetypes
hi BrokenLink cterm=italic ctermfg=9 ctermbg=52
hi CmpMismatch cterm=italic ctermfg=9 ctermbg=52
hi Device cterm=italic ctermfg=1 ctermbg=default
hi Directory cterm=none ctermfg=12 ctermbg=default
hi Executable cterm=none ctermfg=2 ctermbg=default
hi Fifo cterm=italic ctermfg=14 ctermbg=default
hi HardLink cterm=bold ctermfg=3 ctermbg=default
hi Link cterm=italic ctermfg=3 ctermbg=default
hi Socket cterm=italic ctermfg=13 ctermbg=default
if $USER == 'root'
hi StatusLine ctermbg=52 ctermfg=248
hi TopLineSel ctermbg=52 ctermfg=252
hi TopLine ctermbg=52 ctermfg=245
endif
finish

View File

@ -0,0 +1,33 @@
" by astrell
" with builtin regular/root user differentiation
highlight clear
highlight Border cterm=none ctermfg=black ctermbg=131
highlight TopLine cterm=none ctermfg=black ctermbg=white
highlight TopLineSel cterm=bold ctermfg=default ctermbg=default
highlight StatusLine cterm=none ctermfg=black ctermbg=white
highlight WildMenu cterm=none ctermfg=default ctermbg=153
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=default
highlight Win cterm=none ctermfg=0 ctermbg=224
highlight Directory cterm=bold ctermfg=17 ctermbg=default
highlight Link cterm=none ctermfg=94 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=160 ctermbg=default
highlight Socket cterm=bold ctermfg=91 ctermbg=default
highlight Device cterm=bold ctermfg=52 ctermbg=default
highlight Fifo cterm=bold ctermfg=105 ctermbg=default
highlight Executable cterm=bold ctermfg=23 ctermbg=default
highlight Selected cterm=bold ctermfg=default ctermbg=182
highlight CurrLine cterm=bold ctermfg=238 ctermbg=153
highlight OtherLine cterm=none ctermfg=default ctermbg=default
" overwrite some colors for root user
if $USER == 'root'
highlight Win cterm=none ctermfg=0 ctermbg=182
highlight Selected cterm=bold ctermfg=default ctermbg=217
endif

View File

@ -0,0 +1,29 @@
" crown vifm color scheme for 256 and 24-bit colors
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=235 ctermbg=None guifg=#262626 guibg=None
highlight TopLine cterm=none ctermfg=247 ctermbg=232 guifg=#9e9e9e guibg=#080808
highlight TopLineSel cterm=inverse ctermfg=236 ctermbg=254 guifg=#f5dabf guibg=#2a2016
highlight Win cterm=none ctermfg=188 ctermbg=None guifg=#d7d7d7 guibg=None
highlight Directory cterm=bold ctermfg=255 ctermbg=None gui=bold guifg=#f5dabf guibg=None
highlight CurrLine cterm=inverse ctermfg=137 ctermbg=232 gui=inverse guifg=#af875f guibg=#080808
highlight OtherLine cterm=none ctermfg=Default ctermbg=None guifg=Default guibg=None
highlight Selected cterm=none ctermfg=None ctermbg=238 guifg=None guibg=#444444
highlight JobLine cterm=bold ctermfg=116 ctermbg=238 guifg=#87d7d7 guibg=#444444
highlight StatusLine cterm=bold ctermfg=251 ctermbg=233 guifg=#c6c6c6 guibg=#121212
highlight ErrorMsg cterm=bold ctermfg=115 ctermbg=237 guifg=#87d7af guibg=#3a3a3a
highlight WildMenu cterm=bold ctermfg=235 ctermbg=144 guifg=#262626 guibg=#afafff
highlight CmdLine cterm=none ctermfg=252 ctermbg=None guifg=#d0d0d0 guibg=None
highlight Executable cterm=none ctermfg=131 ctermbg=None guifg=#af5f5f guibg=None
highlight Link cterm=none ctermfg=142 ctermbg=None guifg=#afaf00 guibg=None
highlight BrokenLink cterm=none ctermfg=174 ctermbg=None guifg=#d787d7 guibg=None
highlight Device cterm=none ctermfg=228 ctermbg=None guifg=#ffff87 guibg=None
highlight Fifo cterm=none ctermfg=109 ctermbg=None guifg=#87afaf guibg=None
highlight Socket cterm=none ctermfg=110 ctermbg=None guifg=#87afd7 guibg=None

View File

@ -0,0 +1,24 @@
" Dark Desert
" by Karol M. Langner
" based on Desert by Michael jubalh Vetter
" https://github.com/vifm/vifm-colors
highlight clear
highlight Win cterm=none ctermfg=220 ctermbg=233
highlight Directory cterm=bold ctermfg=77 ctermbg=default
highlight Link cterm=bold ctermfg=239 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=24 ctermbg=default
highlight Device cterm=bold ctermfg=31 ctermbg=default
highlight Fifo cterm=bold ctermfg=31 ctermbg=default
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CurrLine cterm=bold ctermfg=131 ctermbg=228
highlight TopLine cterm=none ctermfg=124 ctermbg=235
highlight TopLineSel cterm=bold ctermfg=124 ctermbg=235
highlight StatusLine cterm=bold ctermfg=124 ctermbg=235
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=217 ctermbg=black
highlight ErrorMsg cterm=none ctermfg=7 ctermbg=1
highlight Border cterm=none ctermfg=black ctermbg=235

View File

@ -0,0 +1,23 @@
" Desert
" by Michael jubalh Vetter
" https://github.com/jubalh/vifm-colors
highlight clear
highlight Win cterm=none ctermfg=220 ctermbg=237
highlight Directory cterm=bold ctermfg=77 ctermbg=default
highlight Link cterm=bold ctermfg=239 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=24 ctermbg=default
highlight Device cterm=bold ctermfg=31 ctermbg=default
highlight Fifo cterm=bold ctermfg=31 ctermbg=default
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CurrLine cterm=bold ctermfg=131 ctermbg=228
highlight TopLine cterm=none ctermfg=black ctermbg=white
highlight TopLineSel cterm=bold ctermfg=red ctermbg=default
highlight StatusLine cterm=bold ctermfg=red ctermbg=white
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=217 ctermbg=black
highlight ErrorMsg cterm=none ctermfg=7 ctermbg=1
highlight Border cterm=none ctermfg=black ctermbg=white

View File

@ -0,0 +1,45 @@
" VIFM COLORS
" dracula
" based on: https://github.com/istib/dotfiles/blob/master/vifm/vifm-colors
" Default = -1 = None, can be used for transparency or default color
" Black = 0
" Red = 1
" Green = 2
" Yellow = 3
" Blue = 4
" Magenta = 5
" Cyan = 6
" White = 7
" STYLES
" bold
" underline
" reverse or inverse
" standout
" none
highlight clear
highlight Win cterm=none ctermfg=default ctermbg=none
highlight TopLine cterm=none ctermfg=blue ctermbg=none
highlight TopLineSel cterm=none ctermfg=magenta ctermbg=none
highlight StatusLine cterm=none ctermfg=blue ctermbg=none
highlight Border cterm=none ctermfg=blue ctermbg=none
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CurrLine cterm=bold ctermfg=236 ctermbg=blue
highlight WildMenu cterm=none,reverse ctermfg=blue ctermbg=236
highlight CmdLine cterm=none ctermfg=255 ctermbg=236
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Directory cterm=none ctermfg=blue ctermbg=default
highlight Link cterm=none ctermfg=cyan ctermbg=default
highlight BrokenLink cterm=none ctermfg=red ctermbg=default
highlight Socket cterm=none ctermfg=magenta ctermbg=black
highlight Device cterm=none ctermfg=red ctermbg=default
highlight Fifo cterm=none ctermfg=yellow ctermbg=black
highlight Executable cterm=none ctermfg=green ctermbg=default

View File

@ -0,0 +1,74 @@
" dwmlight
" Author: SaeidSaati
" I suggest you to use PaperColor colorscheme in vim/nvim, then this theme will match with it
" SEE THIS WEBSITE: https://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
" https://github.com/vifm/vifm-colors
" =============================
" The standard ncurses colors are:
" =============================
" Default = -1 = None, can be used for transparency or default color
" Black = 0 = 16
" Red = 1
" Green = 2
" Yellow = 3
" Blue = 4
" Magenta = 5
" Cyan = 6
" White = 7 = 231
" =============================
" Available attributes (some of them can be combined):
" =============================
" bold
" underline
" reverse or inverse
" standout
" italic (on unsupported systems becomes reverse)
" none
" =============================
" export TERM=xterm-256color (in your .bashrc or .zshrc)
" =============================
" Vifm supports 256 colors you can use color numbers 0-255
" (requires properly set up terminal: set your TERM environment variable
" (directly or using resources) to some color terminal name (e.g.
" xterm-256color) from /usr/lib/terminfo/; you can check current number
" of colors in your terminal with tput colors command)
" =============================
" Explanation
" =============================
" highlight group cterm=attrs ctermfg=foreground_color ctermbg=background_color
" =============================
" Color Scheme
" =============================
highlight clear
highlight SuggestBox cterm=none ctermfg=24 ctermbg=255
highlight Win cterm=none ctermfg=238 ctermbg=255
highlight Directory cterm=bold ctermfg=25 ctermbg=255
highlight Link cterm=none ctermfg=27 ctermbg=255
highlight BrokenLink cterm=bold ctermfg=196 ctermbg=255
highlight Socket cterm=bold ctermfg=24 ctermbg=251
highlight Device cterm=none ctermfg=57 ctermbg=255
highlight Fifo cterm=none ctermfg=24 ctermbg=255
highlight Executable cterm=none ctermfg=125 ctermbg=255
highlight Selected cterm=none ctermfg=16 ctermbg=154
highlight CurrLine cterm=reverse ctermfg=-1 ctermbg=-1 " none 238 254
highlight TopLineSel cterm=none ctermfg=255 ctermbg=31
highlight TopLine cterm=none ctermfg=255 ctermbg=24
"highlight TopLineSel cterm=none ctermfg=240 ctermbg=254
highlight StatusLine cterm=none ctermfg=255 ctermbg=24
highlight WildMenu cterm=none ctermfg=255 ctermbg=31
highlight CmdLine cterm=none ctermfg=255 ctermbg=24
highlight ErrorMsg cterm=bold ctermfg=16 ctermbg=166
highlight Border cterm=none ctermfg=255 ctermbg=255

View File

@ -0,0 +1,21 @@
" Fargo theme for vifm
highlight clear
highlight Win cterm=bold ctermfg=118 ctermbg=0
highlight Directory cterm=bold ctermfg=15 ctermbg=33
highlight Link cterm=bold ctermfg=yellow ctermbg=0
highlight BrokenLink cterm=bold ctermfg=red ctermbg=none
highlight Socket cterm=bold ctermfg=magenta ctermbg=black
highlight Device cterm=bold ctermfg=red ctermbg=black
highlight Fifo cterm=bold ctermfg=cyan ctermbg=none
highlight Executable cterm=bold ctermfg=118 ctermbg=0
highlight Selected cterm=bold ctermfg=0 ctermbg=34
highlight CurrLine cterm=bold ctermfg=0 ctermbg=199
highlight TopLine cterm=bold ctermfg=118 ctermbg=0
highlight TopLineSel cterm=bold ctermfg=0 ctermbg=118
highlight StatusLine cterm=bold ctermfg=15 ctermbg=57
highlight WildMenu cterm=bold ctermfg=57 ctermbg=15
highlight CmdLine cterm=none ctermfg=white ctermbg=0
highlight ErrorMsg cterm=none ctermfg=15 ctermbg=21
highlight Border cterm=none ctermfg=0 ctermbg=0

View File

@ -0,0 +1,28 @@
" G80
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=237 ctermbg=237
highlight TopLine cterm=none ctermfg=188 ctermbg=237
highlight TopLineSel cterm=underline ctermfg=188 ctermbg=237
highlight Win cterm=none ctermfg=188 ctermbg=237
highlight Directory cterm=none ctermfg=188 ctermbg=237
highlight CurrLine cterm=none ctermfg=188 ctermbg=236
highlight OtherLine cterm=none ctermfg=247 ctermbg=237
highlight Selected cterm=none ctermfg=188 ctermbg=238
highlight JobLine cterm=bold ctermfg=188 ctermbg=238
highlight StatusLine cterm=none ctermfg=188 ctermbg=235
highlight WildMenu cterm=none ctermfg=188 ctermbg=238
highlight CmdLine cterm=none ctermfg=188 ctermbg=237
highlight ErrorMsg cterm=none ctermfg=188 ctermbg=237
highlight Executable cterm=none ctermfg=188 ctermbg=237
highlight Link cterm=none ctermfg=188 ctermbg=237
highlight BrokenLink cterm=none ctermfg=188 ctermbg=237
highlight Device cterm=none ctermfg=188 ctermbg=237
highlight Fifo cterm=none ctermfg=188 ctermbg=237
highlight Socket cterm=none ctermfg=188 ctermbg=237

View File

@ -0,0 +1,30 @@
" gruvbox color scheme approximation for vifm
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=235 ctermbg=default
highlight TopLine cterm=none ctermfg=214 ctermbg=235
highlight TopLineSel cterm=bold ctermfg=214 ctermbg=237
highlight Win cterm=none ctermfg=223 ctermbg=default
"highlight OtherWin cterm=none ctermfg=223 ctermbg=236
highlight Directory cterm=bold ctermfg=109 ctermbg=default
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=235
highlight Selected cterm=none ctermfg=223 ctermbg=237
highlight JobLine cterm=bold ctermfg=116 ctermbg=238
highlight StatusLine cterm=bold ctermfg=144 ctermbg=236
highlight ErrorMsg cterm=bold ctermfg=167 ctermbg=default
highlight WildMenu cterm=bold ctermfg=235 ctermbg=144
highlight CmdLine cterm=none ctermfg=223 ctermbg=default
highlight Executable cterm=bold ctermfg=142 ctermbg=default
highlight Link cterm=none ctermfg=132 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=167 ctermbg=default
highlight Device cterm=none,standout ctermfg=214 ctermbg=default
highlight Fifo cterm=none ctermfg=172 ctermbg=default
highlight Socket cterm=bold ctermfg=223 ctermbg=default

View File

@ -0,0 +1,29 @@
" iceberg
" by puven12
"
" This colorscheme is based on iceberg colorscheme for vim
" by cocopon
highlight clear
highlight Win cterm=none ctermfg=255 ctermbg=234
highlight Directory cterm=bold ctermfg=109 ctermbg=default
highlight Link cterm=bold ctermfg=216 ctermbg=234
highlight BrokenLink cterm=bold ctermfg=red ctermbg=239
highlight Socket cterm=bold ctermfg=green ctermbg=default
highlight Device cterm=bold ctermfg=red ctermbg=default
highlight Fifo cterm=bold ctermfg=150 ctermbg=default
highlight Executable cterm=none ctermfg=150 ctermbg=default
highlight Selected cterm=none ctermfg=255 ctermbg=236
highlight CurrLine cterm=reverse
highlight TopLine cterm=none ctermfg=255 ctermbg=234
highlight TopLineSel cterm=bold ctermfg=110 ctermbg=default
highlight StatusLine cterm=none ctermfg=240 ctermbg=235
highlight WildMenu cterm=underline,reverse ctermfg=255 ctermbg=black
highlight CmdLine cterm=none ctermfg=255 ctermbg=234
highlight ErrorMsg cterm=none ctermfg=203 ctermbg=234
highlight Border cterm=none ctermfg=black ctermbg=234
highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=255
highlight SuggestBox cterm=bold ctermfg=default ctermbg=default
highlight CmpMismatch cterm=bold ctermfg=255 ctermbg=red
highlight AuxWin cterm=bold,underline,reverse,standout ctermfg=default ctermbg=default

View File

@ -0,0 +1,25 @@
" lucius
" by francogonzaga
"
" https://gist.github.com/francogonzaga/5509523
"
" This color scheme is loosely based on the lucius color scheme for vim
highlight clear
highlight Win cterm=none ctermfg=250 ctermbg=236
highlight Directory cterm=bold ctermfg=4 ctermbg=236
highlight Link cterm=bold ctermfg=yellow ctermbg=236
highlight BrokenLink cterm=bold ctermfg=red ctermbg=none
highlight Socket cterm=bold ctermfg=magenta ctermbg=black
highlight Device cterm=bold ctermfg=red ctermbg=black
highlight Fifo cterm=bold ctermfg=cyan ctermbg=none
highlight Executable cterm=bold ctermfg=112 ctermbg=236
highlight Selected cterm=none ctermfg=236 ctermbg=208
highlight CurrLine cterm=bold ctermfg=251 ctermbg=240
highlight TopLine cterm=none ctermfg=black ctermbg=240
highlight TopLineSel cterm=none ctermfg=250 ctermbg=12
highlight StatusLine cterm=bold ctermfg=255 ctermbg=12
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=240
highlight ErrorMsg cterm=none ctermfg=250 ctermbg=124
highlight Border cterm=none ctermfg=236 ctermbg=236

View File

@ -0,0 +1,27 @@
" Matrix
" by Michael jubalh Vetter
" https://github.com/jubalh/vifm-colors
highlight clear
highlight Win cterm=none ctermfg=green ctermbg=black
highlight TopLine cterm=none ctermfg=green ctermbg=none
highlight TopLineSel cterm=none ctermfg=green ctermbg=none
highlight StatusLine cterm=none ctermfg=green ctermbg=none
highlight Border cterm=none ctermfg=green ctermbg=none
highlight Selected cterm=bold ctermfg=red ctermbg=default
highlight CurrLine cterm=bold ctermfg=black ctermbg=green
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Directory cterm=none ctermfg=blue ctermbg=default
highlight Link cterm=none ctermfg=yellow ctermbg=default
highlight BrokenLink cterm=none ctermfg=red ctermbg=default
highlight Socket cterm=none ctermfg=yellow ctermbg=default
highlight Device cterm=none ctermfg=yellow ctermbg=default
highlight Fifo cterm=none ctermfg=yellow ctermbg=default
highlight Executable cterm=none ctermfg=green ctermbg=default

View File

@ -0,0 +1,26 @@
" mimicking midnight commander
" by Petteri Knihti, update by Jose Riha
highlight clear
highlight Win cterm=none ctermfg=white ctermbg=blue
highlight CurrLine cterm=none ctermfg=black ctermbg=cyan
highlight Selected cterm=bold ctermfg=yellow ctermbg=default
highlight TopLine cterm=none ctermfg=white ctermbg=blue
highlight TopLineSel cterm=none ctermfg=black ctermbg=white
highlight StatusLine cterm=none ctermfg=black ctermbg=cyan
highlight Border cterm=none ctermfg=none ctermbg=blue
highlight WildMenu cterm=reverse ctermfg=black ctermbg=white
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Directory cterm=none ctermfg=lightwhite ctermbg=default
highlight Link cterm=none ctermfg=white ctermbg=default
highlight BrokenLink cterm=none ctermfg=lightred ctermbg=default
highlight Socket cterm=none ctermfg=lightmagenta ctermbg=default
highlight Device cterm=none ctermfg=lightmagenta ctermbg=default
highlight Fifo cterm=none ctermfg=black ctermbg=default
highlight Executable cterm=none ctermfg=lightgreen ctermbg=default

View File

@ -0,0 +1,31 @@
" Molokai
" by Miguel Madrid Mencia
" https://github.com/vifm/vifm-colors
highlight clear
highlight Border cterm=none ctermfg=black ctermbg=232
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight CurrLine cterm=bold ctermfg=default ctermbg=208
highlight Device cterm=bold ctermfg=red ctermbg=default
highlight Directory cterm=bold ctermfg=12 ctermbg=default
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Fifo cterm=bold ctermfg=cyan ctermbg=default
highlight Link cterm=bold ctermfg=green ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=130
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight Socket cterm=bold ctermfg=magenta ctermbg=default
highlight StatusLine cterm=none ctermfg=white ctermbg=233
highlight SuggestBox cterm=none ctermfg=white ctermbg=black
highlight TopLine cterm=none ctermfg=15 ctermbg=233
highlight TopLineSel cterm=none ctermfg=148 ctermbg=default
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight Win cterm=none ctermfg=white ctermbg=black
if $USER == 'root'
highlight Border cterm=none ctermfg=default ctermbg=red
highlight StatusLine cterm=none ctermfg=white ctermbg=red
highlight TopLine cterm=none ctermfg=default ctermbg=red
endif

View File

@ -0,0 +1,27 @@
hi clear
hi Win cterm=none ctermfg=-1 ctermbg=-1
hi Directory cterm=none ctermfg=-1 ctermbg=-1
hi Executable cterm=none ctermfg=-1 ctermbg=-1
hi Link cterm=none ctermfg=-1 ctermbg=-1
hi BrokenLink cterm=none ctermfg=-1 ctermbg=-1
hi HardLink cterm=none ctermfg=-1 ctermbg=-1
hi Socket cterm=none ctermfg=-1 ctermbg=-1
hi Device cterm=none ctermfg=-1 ctermbg=-1
hi Fifo cterm=none ctermfg=-1 ctermbg=-1
hi LineNr cterm=none ctermfg=-1 ctermbg=-1
hi Selected cterm=reverse ctermfg=-1 ctermbg=-1
hi CurrLine cterm=reverse ctermfg=-1 ctermbg=-1
hi OtherLine cterm=none ctermfg=-1 ctermbg=-1
hi TopLine cterm=reverse ctermfg=-1 ctermbg=-1
hi TopLineSel cterm=reverse ctermfg=-1 ctermbg=-1
hi StatusLine cterm=reverse ctermfg=-1 ctermbg=-1
hi TabLine cterm=none ctermfg=-1 ctermbg=-1
hi TabLineSel cterm=reverse ctermfg=-1 ctermbg=-1
hi WildMenu cterm=reverse ctermfg=-1 ctermbg=-1
hi CmdLine cterm=none ctermfg=-1 ctermbg=-1
hi ErrorMsg cterm=reverse ctermfg=-1 ctermbg=-1
hi Border cterm=none ctermfg=-1 ctermbg=-1
hi AuxWin cterm=none ctermfg=-1 ctermbg=-1

View File

@ -0,0 +1,89 @@
" vim: filetype=vifm :
" xterm color customization:
"
" ! regular (not bold) red
" XTerm*color1: #ff3030
" ! regular (not bold) green
" XTerm*color2: #70dd70
" ! regular (not bold) yellow
" XTerm*color3: #f0f000
" ! regular (not bold) blue
" XTerm*color4: #6060dd
" ! bold red
" XTerm*color9: #ff8080
" ! bold green
" XTerm*color10: #20dd20
" ! bold yellow
" XTerm*color11: #e0e000
" ! bold blue
" XTerm*color12: #a8a8ff
highlight clear
highlight Win cterm=none ctermfg=white ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=magenta ctermbg=default
highlight Device cterm=bold,reverse ctermfg=red ctermbg=default
highlight Fifo cterm=bold,reverse ctermfg=cyan ctermbg=default
highlight CurrLine cterm=reverse,bold ctermfg=default ctermbg=default
highlight TopLine cterm=none ctermfg=black ctermbg=white
highlight TopLineSel cterm=underline ctermfg=black ctermbg=default
highlight StatusLine cterm=none ctermfg=black ctermbg=white
highlight WildMenu cterm=underline,bold,reverse ctermfg=yellow ctermbg=black
highlight CmdLine cterm=bold ctermfg=white ctermbg=default
highlight ErrorMsg cterm=bold ctermfg=white ctermbg=red
highlight Border cterm=none ctermfg=white ctermbg=default
highlight OtherLine cterm=reverse ctermfg=234 ctermbg=white
highlight SuggestBox cterm=bold,reverse ctermfg=cyan ctermbg=default
" no 256-color palette on Windows
if $OS == 'Windows_NT'
highlight Directory cterm=bold ctermfg=cyan ctermbg=default
highlight Link cterm=bold ctermfg=yellow ctermbg=default
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CmpMismatch cterm=bold ctermfg=white ctermbg=red
finish
endif
highlight Directory cterm=bold ctermfg=123 ctermbg=default
highlight Link cterm=bold ctermfg=229 ctermbg=default
highlight Executable cterm=bold ctermfg=119 ctermbg=default
highlight Selected cterm=bold ctermfg=213 ctermbg=default
highlight CmpMismatch cterm=bold ctermfg=white ctermbg=88
" software documentation
highlight {COPYRIGHT,COPYING*,BUGS,ChangeLog*,FAQ,INSTALL*,LICEN[CS]E,NEWS,
\README*,AUTHORS,TODO,THANKS}
\ cterm=none ctermfg=187 ctermbg=default
" build system files
highlight {Makefile,Makefile.am,Makefile.in,Makefile.win,*.mak,*.mk,
\CMakeLists.txt}
\ cterm=none ctermfg=121 ctermbg=default
" archives
highlight {*.7z,*.ace,*.arj,*.bz2,*.cpio,*.deb,*.dz,*.gz,*.jar,*.lzh,*.lzma,
\*.rar,*.rpm,*.rz,*.tar,*.taz,*.tb2,*.tbz,*.tbz2,*.tgz,*.tlz,*.trz,
\*.txz,*.tz,*.tz2,*.xz,*.z,*.zip,*.zoo}
\ cterm=none ctermfg=215 ctermbg=default
" documents
highlight {*.djvu,*.htm,*.html,*.shtml,*.css,*.markdown,*.md,*[^0-9].[1-9],
\*.mkd,*.org,*.pandoc,*.pdc,*.pdf,*.epub,*.fb2,*.tex,*.txt,*.xhtml,
\*.xml,*.pptx,*.ppt,*.doc,*.docx,*.xls,*.xls[mx],*.mobi}
\ cterm=none ctermfg=217 ctermbg=default
" media
highlight {*.aac,*.anx,*.asf,*.au,*.avi,*.ts,*.axa,*.axv,*.divx,*.flac,*.m2a,
\*.m2v,*.m4a,*.m4p,*.m4v,*.mid,*.midi,*.mka,*.mkv,*.mov,*.mp3,*.mp4,
\*.flv,*.mp4v,*.mpc,*.mpeg,*.mpg,*.nuv,*.oga,*.ogg,*.ogv,*.ogx,*.pbm,
\*.pgm,*.qt,*.ra,*.ram,*.rm,*.spx,*.vob,*.wav,*.wma,*.wmv,*.xvid,
\*.ac3}
\ cterm=none ctermfg=49 ctermbg=default
" images
highlight {*.bmp,*.gif,*.jpeg,*.jpg,*.ico,*.png,*.ppm,*.svg,*.svgz,*.tga,*.tif,
\*.tiff,*.xbm,*.xcf,*.xpm,*.xspf,*.xwd}
\ cterm=none ctermfg=117 ctermbg=default
" executables
highlight {*.sh,*.bash,*.bat,*.btm,*.cmd,*.com,*.dll,*.exe,*.run,*.msu,*.msi}
\ cterm=none ctermfg=77 ctermbg=default
" source code
highlight {*.patch,*.diff,*.py,*.[ch]pp,*.mk,*.c,*.h,*.[ch]pp,*.cc,*.hs,*.php}
\ cterm=none ctermfg=193 ctermbg=default

View File

@ -0,0 +1,29 @@
" nord color scheme approximation for vifm
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=default ctermbg=default
highlight TopLine cterm=none ctermfg=110 ctermbg=236
highlight TopLineSel cterm=bold ctermfg=110 ctermbg=237
highlight Win cterm=none ctermfg=7 ctermbg=default
highlight OtherWin cterm=none ctermfg=7 ctermbg=default
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=235
highlight Selected cterm=none ctermfg=7 ctermbg=237
highlight JobLine cterm=bold ctermfg=116 ctermbg=238
highlight StatusLine cterm=bold ctermfg=110 ctermbg=237
highlight ErrorMsg cterm=bold ctermfg=167 ctermbg=default
highlight WildMenu cterm=bold,inverse ctermfg=110 ctermbg=236
highlight CmdLine cterm=none ctermfg=7 ctermbg=default
highlight Executable cterm=bold ctermfg=003 ctermbg=default
highlight Directory cterm=bold ctermfg=110 ctermbg=default
highlight Link cterm=none ctermfg=005 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=007 ctermbg=167
highlight Device cterm=none,standout ctermfg=110 ctermbg=default
highlight Fifo cterm=none ctermfg=172 ctermbg=default
highlight Socket cterm=bold ctermfg=223 ctermbg=default

View File

@ -0,0 +1,29 @@
" onedark color scheme for vifm
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=035 ctermbg=default
highlight TopLine cterm=none ctermfg=002 ctermbg=default
highlight TopLineSel cterm=bold ctermfg=002 ctermbg=015
highlight Win cterm=none ctermfg=250 ctermbg=default
highlight Directory cterm=bold ctermfg=004 ctermbg=default
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=default
highlight Selected cterm=none ctermfg=003 ctermbg=008
highlight JobLine cterm=bold ctermfg=250 ctermbg=008
highlight StatusLine cterm=none ctermfg=250 ctermbg=015
highlight ErrorMsg cterm=bold ctermfg=001 ctermbg=default
highlight WildMenu cterm=bold ctermfg=015 ctermbg=250
highlight CmdLine cterm=none ctermfg=007 ctermbg=default
highlight Executable cterm=bold ctermfg=002 ctermbg=default
highlight Link cterm=bold ctermfg=006 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=001 ctermbg=default
highlight Device cterm=bold,standout ctermfg=000 ctermbg=011
highlight Fifo cterm=none ctermfg=003 ctermbg=default
highlight Socket cterm=bold ctermfg=005 ctermbg=default

View File

@ -0,0 +1,29 @@
" palenight color scheme for vifm
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=default ctermbg=default
highlight TopLine cterm=none ctermfg=002 ctermbg=default
highlight TopLineSel cterm=bold ctermfg=002 ctermbg=default
highlight Win cterm=none ctermfg=251 ctermbg=default
highlight Directory cterm=bold ctermfg=004 ctermbg=default
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=default
highlight Selected cterm=none ctermfg=003 ctermbg=008
highlight JobLine cterm=bold ctermfg=251 ctermbg=008
highlight StatusLine cterm=none ctermfg=008 ctermbg=default
highlight ErrorMsg cterm=bold ctermfg=001 ctermbg=default
highlight WildMenu cterm=bold ctermfg=015 ctermbg=008
highlight CmdLine cterm=none ctermfg=007 ctermbg=default
highlight Executable cterm=bold ctermfg=002 ctermbg=default
highlight Link cterm=bold ctermfg=006 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=001 ctermbg=default
highlight Device cterm=bold,standout ctermfg=000 ctermbg=011
highlight Fifo cterm=none ctermfg=003 ctermbg=default
highlight Socket cterm=bold ctermfg=005 ctermbg=default

View File

@ -0,0 +1,57 @@
" VIFM COLORS
" Paper Theme c/o Samuel Sinclair
" Original palette by @YorickPeterse
" default = -1 = None, can be used for transparency or default color
" black = 0
" red = 1
" green = 2
" yellow = 3
" blue = 4
" magenta = 5
" cyan = 6
" white = 7
"elseif g:solarized_termcolors != 256 && &t_Co >= 16
"let s:vmode = "cterm"
"let s:base03 = "8"
"let s:base02 = "0"
"let s:base01 = "10"
"let s:base00 = "11"
"let s:base0 = "12"
"let s:base1 = "14"
"let s:base2 = "7"
"let s:base3 = "15"
"let s:yellow = "3"
"let s:orange = "9"
"let s:red = "1"
"let s:magenta = "5"
"let s:violet = "13"
"let s:blue = "4"
"let s:cyan = "6"
"let s:green = "2"
highlight clear
highlight Win cterm=none ctermfg=default ctermbg=default
highlight OtherWin cterm=none ctermfg=default ctermbg=default
highlight TopLine cterm=none ctermfg=default ctermbg=default
highlight TopLineSel cterm=bold ctermfg=default ctermbg=default
highlight StatusLine cterm=reverse ctermfg=default ctermbg=default
highlight Border cterm=none ctermfg=default ctermbg=default
highlight Selected cterm=bold ctermfg=default ctermbg=default
highlight CurrLine cterm=reverse ctermfg=default ctermbg=default
highlight WildMenu cterm=underline,reverse ctermfg=11 ctermbg=white
highlight CmdLine cterm=none ctermfg=default ctermbg=default
highlight ErrorMsg cterm=none ctermfg=red ctermbg=default
highlight Directory cterm=none ctermfg=blue ctermbg=default
highlight Link cterm=none ctermfg=green ctermbg=default
highlight BrokenLink cterm=none ctermfg=red ctermbg=default
highlight Socket cterm=none ctermfg=red ctermbg=default
highlight Device cterm=none ctermfg=yellow ctermbg=default
highlight Fifo cterm=none ctermfg=cyan ctermbg=default
highlight Executable cterm=none ctermfg=green ctermbg=default

View File

@ -0,0 +1,29 @@
highlight clear
highlight Win cterm=none ctermfg=252 ctermbg=234
highlight OtherWin cterm=none ctermfg=252 ctermbg=234
highlight Border cterm=none ctermfg=252 ctermbg=234
highlight AuxWin cterm=none ctermfg=252 ctermbg=234
highlight TopLine cterm=bold ctermfg=71 ctermbg=235
highlight TopLineSel cterm=bold ctermfg=234 ctermbg=149
highlight CmdLine cterm=none ctermfg=252 ctermbg=234
highlight ErrorMsg cterm=bold ctermfg=160 ctermbg=234
highlight StatusLine cterm=bold ctermfg=71 ctermbg=235
highlight JobLine cterm=bold ctermfg=71 ctermbg=235
highlight SuggestBox cterm=bold ctermfg=71 ctermbg=235
highlight WildMenu cterm=bold ctermfg=71 ctermbg=235
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=235
highlight Selected cterm=bold ctermfg=173 ctermbg=235
highlight LineNr cterm=none ctermfg=244 ctermbg=234
highlight Directory cterm=bold ctermfg=74 ctermbg=234
highlight Link cterm=none ctermfg=173 ctermbg=234
highlight BrokenLink cterm=none ctermfg=160 ctermbg=234
highlight Socket cterm=bold ctermfg=140 ctermbg=234
highlight Device cterm=none ctermfg=125 ctermbg=234
highlight Fifo cterm=none ctermfg=74 ctermbg=234
highlight Executable cterm=bold ctermfg=70 ctermbg=234

View File

@ -0,0 +1,29 @@
highlight clear
highlight Win cterm=none ctermfg=234 ctermbg=255
highlight OtherWin cterm=none ctermfg=238 ctermbg=255
highlight Border cterm=none ctermfg=238 ctermbg=255
highlight AuxWin cterm=none ctermfg=238 ctermbg=255
highlight TopLine cterm=bold ctermfg=250 ctermbg=24
highlight TopLineSel cterm=bold ctermfg=255 ctermbg=31
highlight CmdLine cterm=none ctermfg=234 ctermbg=255
highlight ErrorMsg cterm=bold ctermfg=160 ctermbg=255
highlight StatusLine cterm=bold ctermfg=255 ctermbg=24
highlight JobLine cterm=bold ctermfg=255 ctermbg=31
highlight SuggestBox cterm=bold ctermfg=255 ctermbg=31
highlight WildMenu cterm=bold ctermfg=255 ctermbg=31
highlight CurrLine cterm=bold,inverse ctermfg=default ctermbg=default
highlight OtherLine cterm=bold ctermfg=default ctermbg=250
highlight Selected cterm=bold ctermfg=255 ctermbg=166
highlight LineNr cterm=none ctermfg=102 ctermbg=255
highlight Directory cterm=bold ctermfg=25 ctermbg=255
highlight Link cterm=none ctermfg=24 ctermbg=255
highlight BrokenLink cterm=none ctermfg=160 ctermbg=255
highlight Socket cterm=bold ctermfg=91 ctermbg=255
highlight Device cterm=none ctermfg=124 ctermbg=255
highlight Fifo cterm=none ctermfg=31 ctermbg=255
highlight Executable cterm=bold ctermfg=28 ctermbg=255

View File

@ -0,0 +1,27 @@
" ph
highlight clear
highlight Win cterm=none ctermfg=248 ctermbg=234
highlight Directory cterm=bold ctermfg=033 ctermbg=234
highlight Link cterm=bold ctermfg=yellow ctermbg=234
highlight BrokenLink cterm=reverse ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=125 ctermbg=default
highlight Device cterm=bold ctermfg=red ctermbg=default
highlight Fifo cterm=bold ctermfg=cyan ctermbg=default
highlight Executable cterm=bold ctermfg=166 ctermbg=default
highlight Selected cterm=bold ctermfg=255 ctermbg=237
highlight CurrLine cterm=bold ctermfg=default ctermbg=237
highlight TopLine cterm=bold ctermfg=black ctermbg=235
highlight TopLineSel cterm=bold ctermfg=black ctermbg=default
highlight StatusLine cterm=bold ctermfg=black ctermbg=235
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Border cterm=none ctermfg=black ctermbg=234
highlight JobLine cterm=bold,reverse ctermfg=black ctermbg=white
highlight SuggestBox cterm=bold ctermfg=default ctermbg=default
if $USER == 'root'
highlight Border ctermbg=red
endif

View File

@ -0,0 +1,28 @@
" vim: filetype=vifm :
" Author: Daniel R. (a.k.a. reicheltd)
highlight clear
highlight Win cterm=none ctermfg=236 ctermbg=255
highlight Directory cterm=bold ctermfg=21 ctermbg=255
highlight Link cterm=bold ctermfg=39 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=magenta ctermbg=default
highlight Device cterm=bold ctermfg=blue ctermbg=default
highlight Fifo cterm=bold ctermfg=cyan ctermbg=default
highlight Executable cterm=bold ctermfg=red ctermbg=default
highlight Selected cterm=bold ctermfg=200 ctermbg=default
highlight CurrLine cterm=bold ctermfg=255 ctermbg=27
highlight TopLine cterm=none ctermfg=236 ctermbg=255
highlight TopLineSel cterm=bold ctermfg=236 ctermbg=255
highlight StatusLine cterm=bold ctermfg=236 ctermbg=255
highlight WildMenu cterm=underline,reverse ctermfg=236 ctermbg=255
highlight CmdLine cterm=none ctermfg=236 ctermbg=255
highlight ErrorMsg cterm=none ctermfg=red ctermbg=236
highlight Border cterm=none ctermfg=236 ctermbg=255

View File

@ -0,0 +1,57 @@
" sandy
" Author: Nando, based on colorscheme snowhite by Jochen Schweizer
" xterm color customization:
"
" ! regular (not bold) red
" XTerm*color1: #ff3030
" ! regular (not bold) green
" XTerm*color2: #70dd70
" ! regular (not bold) yellow
" XTerm*color3: #f0f000
" ! regular (not bold) blue
" XTerm*color4: #6060dd
" ! bold red
" XTerm*color9: #ff8080
" ! bold green
" XTerm*color10: #20dd20
" ! bold yellow
" XTerm*color11: #e0e000
" ! bold blue
" XTerm*color12: #a8a8ff
highlight clear
highlight OtherLine cterm=reverse ctermfg=234 ctermbg=white
highlight SuggestBox cterm=none ctermfg=16 ctermbg=231
highlight Win cterm=none ctermfg=16 ctermbg=230
highlight Directory cterm=bold ctermfg=16 ctermbg=default
highlight Link cterm=none ctermfg=blue ctermbg=default
highlight BrokenLink cterm=bold ctermfg=196 ctermbg=default
highlight Socket cterm=none ctermfg=16 ctermbg=default
highlight Device cterm=none ctermfg=16 ctermbg=default
highlight Fifo cterm=none ctermfg=16 ctermbg=default
highlight Executable cterm=none ctermfg=red ctermbg=default
highlight Selected cterm=none ctermfg=208 ctermbg=default
highlight CurrLine cterm=none ctermfg=white ctermbg=LightCyan
highlight TopLine cterm=none ctermfg=16 ctermbg=255
highlight TopLineSel cterm=none ctermfg=231 ctermbg=blue
highlight StatusLine cterm=bold ctermfg=16 ctermbg=255
highlight WildMenu cterm=underline,reverse ctermfg=16 ctermbg=default
highlight CmdLine cterm=none ctermfg=black ctermbg=white
highlight ErrorMsg cterm=bold ctermfg=196 ctermbg=default
highlight Border cterm=none ctermfg=16 ctermbg=255
highlight AuxWin cterm=none ctermfg=default ctermbg=229
highlight JobLine cterm=bold ctermfg=black ctermbg=white
highlight CmpMismatch cterm=bold ctermfg=white ctermbg=red
" executables
highlight {*.sh,*.bash,*.bat,*.btm,*.cmd,*.com,*.dll,*.exe,*.run,*.msu,*.msi}
\ cterm=none ctermfg=red ctermbg=default

View File

@ -0,0 +1,23 @@
" SemiDarkDesert
" by Claus E. Durst, based on 'Desert' by Michael jubalh Vetter
" https://github.com/clausED/vifm-colors
highlight clear
highlight Win cterm=none ctermfg=220 ctermbg=233
highlight Directory cterm=bold ctermfg=77 ctermbg=default
highlight Link cterm=bold ctermfg=239 ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=24 ctermbg=default
highlight Device cterm=bold ctermfg=31 ctermbg=default
highlight Fifo cterm=bold ctermfg=31 ctermbg=default
highlight Executable cterm=bold ctermfg=green ctermbg=default
highlight Selected cterm=bold ctermfg=magenta ctermbg=default
highlight CurrLine cterm=bold ctermfg=131 ctermbg=228
highlight TopLine cterm=none ctermfg=black ctermbg=248
highlight TopLineSel cterm=bold ctermfg=red ctermbg=default
highlight StatusLine cterm=bold ctermfg=red ctermbg=248
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=217 ctermbg=black
highlight ErrorMsg cterm=none ctermfg=7 ctermbg=1
highlight Border cterm=none ctermfg=black ctermbg=240

View File

@ -0,0 +1,31 @@
" snowwhite
" Author: Jochen Schweizer
" https://github.com/durcheinandr/vifm-colors
highlight clear
highlight SuggestBox cterm=none ctermfg=16 ctermbg=231
highlight Win cterm=none ctermfg=16 ctermbg=231
highlight Directory cterm=bold ctermfg=16 ctermbg=231
highlight Link cterm=none ctermfg=16 ctermbg=231
highlight BrokenLink cterm=bold ctermfg=196 ctermbg=231
highlight Socket cterm=none ctermfg=16 ctermbg=231
highlight Device cterm=none ctermfg=16 ctermbg=231
highlight Fifo cterm=none ctermfg=16 ctermbg=231
highlight Executable cterm=none ctermfg=16 ctermbg=231
highlight Selected cterm=none ctermfg=208 ctermbg=231
highlight CurrLine cterm=none ctermfg=231 ctermbg=208
highlight TopLine cterm=none ctermfg=16 ctermbg=255
highlight TopLineSel cterm=none ctermfg=231 ctermbg=16
highlight StatusLine cterm=bold ctermfg=16 ctermbg=255
highlight WildMenu cterm=underline,reverse ctermfg=16 ctermbg=231
highlight CmdLine cterm=none ctermfg=16 ctermbg=231
highlight ErrorMsg cterm=bold ctermfg=196 ctermbg=231
highlight Border cterm=none ctermfg=16 ctermbg=255

View File

@ -0,0 +1,44 @@
" VIFM COLORS
" solarized dark
" based on: https://github.com/istib/dotfiles/blob/master/vifm/vifm-colors
" Default = -1 = None, can be used for transparency or default color
" Black = 0
" Red = 1
" Green = 2
" Yellow = 3
" Blue = 4
" Magenta = 5
" Cyan = 6
" White = 7
" STYLES
" bold
" underline
" reverse or inverse
" standout
" none
highlight clear
highlight Win cterm=none ctermfg=default ctermbg=none
highlight TopLine cterm=none ctermfg=blue ctermbg=none
highlight TopLineSel cterm=none ctermfg=blue ctermbg=none
highlight StatusLine cterm=none ctermfg=blue ctermbg=none
highlight Border cterm=none ctermfg=blue ctermbg=none
highlight Selected cterm=bold ctermfg=green ctermbg=none
highlight CurrLine cterm=bold,reverse ctermfg=default ctermbg=default
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Directory cterm=bold ctermfg=blue ctermbg=default
highlight Link cterm=none ctermfg=yellow ctermbg=default
highlight BrokenLink cterm=none ctermfg=red ctermbg=default
highlight Socket cterm=none ctermfg=magenta ctermbg=default
highlight Device cterm=none ctermfg=red ctermbg=default
highlight Fifo cterm=none ctermfg=cyan ctermbg=default
highlight Executable cterm=none ctermfg=green ctermbg=default

View File

@ -0,0 +1,58 @@
" VIFM COLORS
" solarized light
" based on: https://github.com/altercation/vim-colors-solarized/blob/master/colors/solarized.vim
" default = -1 = None, can be used for transparency or default color
" black = 0
" red = 1
" green = 2
" yellow = 3
" blue = 4
" magenta = 5
" cyan = 6
" white = 7
"elseif g:solarized_termcolors != 256 && &t_Co >= 16
"let s:vmode = "cterm"
"let s:base03 = "8"
"let s:base02 = "0"
"let s:base01 = "10"
"let s:base00 = "11"
"let s:base0 = "12"
"let s:base1 = "14"
"let s:base2 = "7"
"let s:base3 = "15"
"let s:yellow = "3"
"let s:orange = "9"
"let s:red = "1"
"let s:magenta = "5"
"let s:violet = "13"
"let s:blue = "4"
"let s:cyan = "6"
"let s:green = "2"
highlight clear
highlight Win cterm=none ctermfg=default ctermbg=none
highlight OtherWin cterm=none ctermfg=default ctermbg=white
highlight TopLine cterm=none ctermfg=blue ctermbg=white
highlight TopLineSel cterm=none,underline ctermfg=blue ctermbg=15
highlight StatusLine cterm=none ctermfg=12 ctermbg=white
highlight Border cterm=none ctermfg=blue ctermbg=white
highlight Selected cterm=reverse ctermfg=14 ctermbg=15
highlight CurrLine cterm=none ctermbg=white
highlight WildMenu cterm=underline,reverse ctermfg=11 ctermbg=white
highlight CmdLine cterm=none ctermfg=11 ctermbg=15
highlight ErrorMsg cterm=none ctermfg=red ctermbg=white
highlight Directory cterm=none ctermfg=blue ctermbg=default
highlight Link cterm=none ctermfg=magenta ctermbg=default
highlight BrokenLink cterm=bold ctermfg=red ctermbg=default
highlight Socket cterm=none ctermfg=violet ctermbg=default
highlight Device cterm=none ctermfg=green ctermbg=default
highlight Fifo cterm=none ctermfg=cyan ctermbg=default
highlight Executable cterm=none ctermfg=red ctermbg=default

View File

@ -0,0 +1,30 @@
" A true dark theme. For Vifm. Duh.
" by bratpeki (@GitHub)
" https://github.com/bratpeki/truedark-vifm
highlight clear
highlight Border ctermfg=238 ctermbg=248 cterm=none
highlight BrokenLink ctermfg=9 ctermbg=0 cterm=none
highlight CmdLine ctermfg=251 ctermbg=0
highlight CurrLine ctermfg=none ctermbg=236 cterm=bold
highlight Device ctermfg=202 ctermbg=0 cterm=none
highlight Directory ctermfg=93 ctermbg=0 cterm=none
highlight ErrorMsg ctermfg=9 ctermbg=black cterm=bold
highlight Executable ctermfg=51 ctermbg=0 cterm=none
highlight Fifo ctermfg=51 ctermbg=0 cterm=none
highlight HardLink ctermfg=130 ctermbg=0 cterm=none
highlight LineNr ctermfg=246 ctermbg=0 cterm=bold
highlight Link ctermfg=214 ctermbg=0 cterm=none
highlight OtherLine ctermfg=241 ctermbg=234 cterm=italic
highlight OtherWin ctermfg=241 ctermbg=0 cterm=italic
highlight Selected ctermfg=118 ctermbg=0 cterm=bold
highlight Socket ctermfg=200 ctermbg=0 cterm=none
highlight StatusLine ctermfg=238 ctermbg=248 cterm=none
highlight SuggestBox ctermfg=118 ctermbg=0 cterm=bold
highlight TabLine ctermfg=238 ctermbg=0 cterm=none
highlight TabLineSel ctermfg=254 ctermbg=0 cterm=bold
highlight TopLine ctermfg=238 ctermbg=248 cterm=none
highlight TopLineSel ctermfg=238 ctermbg=248 cterm=none
highlight WildMenu ctermfg=7 ctermbg=0 cterm=none
highlight Win ctermfg=251 ctermbg=0 cterm=none

View File

@ -0,0 +1,22 @@
highlight clear
highlight Win cterm=none ctermfg=245 ctermbg=234
highlight Directory cterm=bold ctermfg=166 ctermbg=234
highlight Link cterm=bold ctermfg=yellow ctermbg=234
highlight BrokenLink cterm=reverse ctermfg=red ctermbg=default
highlight Socket cterm=bold ctermfg=125 ctermbg=default
highlight Device cterm=bold ctermfg=red ctermbg=default
highlight Fifo cterm=bold ctermfg=cyan ctermbg=default
highlight Executable cterm=bold ctermfg=0x2aa198 ctermbg=default
highlight Selected cterm=bold ctermfg=125 ctermbg=235
highlight CurrLine cterm=bold ctermfg=245 ctermbg=235
highlight TopLine cterm=none ctermfg=black ctermbg=white
highlight TopLineSel cterm=bold ctermfg=black ctermbg=default
highlight StatusLine cterm=bold ctermfg=black ctermbg=white
highlight WildMenu cterm=underline,reverse ctermfg=white ctermbg=black
highlight CmdLine cterm=none ctermfg=white ctermbg=black
highlight ErrorMsg cterm=none ctermfg=red ctermbg=black
highlight Border cterm=none ctermfg=black ctermbg=white

View File

@ -0,0 +1,29 @@
" zenburn like color scheme for vifm
" http://kippura.org/zenburnpage/
" Reset all styles first
highlight clear
highlight Border cterm=none ctermfg=235 ctermbg=237
highlight TopLine cterm=none ctermfg=108 ctermbg=235
highlight TopLineSel cterm=bold ctermfg=186 ctermbg=235
highlight Win cterm=none ctermfg=188 ctermbg=237
highlight Directory cterm=none ctermfg=108 ctermbg=237
highlight CurrLine cterm=none ctermfg=223 ctermbg=235
highlight OtherLine cterm=none ctermfg=247 ctermbg=237
highlight Selected cterm=none ctermfg=116 ctermbg=238
highlight JobLine cterm=bold ctermfg=116 ctermbg=238
highlight StatusLine cterm=bold ctermfg=144 ctermbg=236
highlight ErrorMsg cterm=bold ctermfg=115 ctermbg=237
highlight WildMenu cterm=bold ctermfg=235 ctermbg=144
highlight CmdLine cterm=none ctermfg=188 ctermbg=237
highlight Executable cterm=none ctermfg=172 ctermbg=237
highlight Link cterm=none ctermfg=142 ctermbg=237
highlight BrokenLink cterm=none ctermfg=174 ctermbg=237
highlight Device cterm=none ctermfg=228 ctermbg=237
highlight Fifo cterm=none ctermfg=109 ctermbg=237
highlight Socket cterm=none ctermfg=110 ctermbg=237

View File

@ -0,0 +1,6 @@
This directory is dedicated for user-supplied scripts/executables.
vifm modifies its PATH environment variable to let user run those
scripts without specifying full path. All subdirectories are added
as well. File in a subdirectory overrules file with the same name
in parent directories. Restart might be needed to recognize files
in newly created or renamed subdirectories.

6568
.config/vifm/vifm-help.txt Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

507
.config/vifm/vifmrc Normal file
View File

@ -0,0 +1,507 @@
" vim: filetype=vifm :
" Sample configuration file for vifm (last updated: 31 August, 2021)
" You can edit this file by hand.
" The " character at the beginning of a line comments out the line.
" Blank lines are ignored.
" The basic format for each item is shown with an example.
" ------------------------------------------------------------------------------
" Command used to edit files in various contexts. The default is vim.
" If you would like to use another vi clone such as Elvis or Vile
" you will need to change this setting.
set vicmd=vim
" set vicmd=elvis\ -G\ termcap
" set vicmd=vile
" This makes vifm perform file operations on its own instead of relying on
" standard utilities like `cp`. While using `cp` and alike is a more universal
" solution, it's also much slower when processing large amounts of files and
" doesn't support progress measuring.
set syscalls
" Trash Directory
" The default is to move files that are deleted with dd or :d to
" the trash directory. If you change this you will not be able to move
" files by deleting them and then using p to put the file in the new location.
" I recommend not changing this until you are familiar with vifm.
" This probably shouldn't be an option.
set trash
set trashdir="~/.local/share/vifm/Trash"
" This is how many directories to store in the directory history.
set history=100
" Automatically resolve symbolic links on l or Enter.
set nofollowlinks
" Natural sort of (version) numbers within text.
set sortnumbers
" Display line numbers
set number
" Maximum number of changes that can be undone.
set undolevels=100
" Use Vim's format of help file (has highlighting and "hyperlinks").
" If you would rather use a plain text help file set novimhelp.
set vimhelp
" If you would like to run an executable file when you
" press Enter, l or Right Arrow, set this.
set norunexec
" List of color schemes to try (picks the first one supported by the terminal)
colorscheme gruvbox
" Format for displaying time in file list. For example:
" TIME_STAMP_FORMAT=%m/%d-%H:%M
" See man date or man strftime for details.
set timefmt=%m/%d\ %H:%M
" Show list of matches on tab completion in command-line mode
set wildmenu
" Display completions in a form of popup with descriptions of the matches
set wildstyle=popup
" Display suggestions in normal, visual and view modes for keys, marks and
" registers (at most 5 files). In other view, when available.
set suggestoptions=normal,visual,view,otherpane,keys,marks,registers
" Ignore case in search patterns unless it contains at least one uppercase
" letter
set ignorecase
set smartcase
" Don't highlight search results automatically
set hlsearch
" Use increment searching (search while typing)
set incsearch
" Try to leave some space from cursor to upper/lower border in lists
set scrolloff=3
" Don't do too many requests to slow file systems
if !has('win')
set slowfs=curlftpfs
endif
" Set custom status line look
set statusline=" Hint: %z%= %A %10u:%-7g %15s %20d "
" ------------------------------------------------------------------------------
" :mark mark /full/directory/path [filename]
mark b ~/.bin/
mark h ~/
mark t /tank/
mark c ~/.config/
" ------------------------------------------------------------------------------
" :com[mand][!] command_name action
" The following macros can be used in a command
" %a is replaced with the user arguments.
" %c the current file under the cursor.
" %C the current file under the cursor in the other directory.
" %f the current selected file, or files.
" %F the current selected file, or files in the other directory.
" %b same as %f %F.
" %d the current directory name.
" %D the other window directory name.
" %m run the command in a menu window
command! df df -h %m 2> /dev/null
command! diff vim -d %f %F
command! zip zip -r %c.zip %f
command! run !! ./%f
command! make !!make %a
command! mkcd :mkdir %a | cd %a
command! vgrep vim "+grep %a"
command! reload :write | restart full
command! pack tar czf %f.tgz %f && readlink -f %f.tgz | xclip
" ------------------------------------------------------------------------------
" The file type is for the default programs to be used with
" a file extension.
" :filetype pattern1,pattern2 defaultprogram,program2
" :fileviewer pattern1,pattern2 consoleviewer
" The other programs for the file type can be accessed with the :file command
" The command macros like %f, %F, %d, %D may be used in the commands.
" The %a macro is ignored. To use a % you must put %%.
" For automated FUSE mounts, you must register an extension with :file[x]type
" in one of following formats:
"
" :filetype extensions FUSE_MOUNT|some_mount_command using %SOURCE_FILE and %DESTINATION_DIR variables
" %SOURCE_FILE and %DESTINATION_DIR are filled in by vifm at runtime.
" A sample line might look like this:
" :filetype *.zip,*.jar,*.war,*.ear FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR
"
" :filetype extensions FUSE_MOUNT2|some_mount_command using %PARAM and %DESTINATION_DIR variables
" %PARAM and %DESTINATION_DIR are filled in by vifm at runtime.
" A sample line might look like this:
" :filetype *.ssh FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR
" %PARAM value is filled from the first line of file (whole line).
" Example first line for SshMount filetype: root@127.0.0.1:/
"
" You can also add %CLEAR if you want to clear screen before running FUSE
" program.
" Pdf
filextype {*.pdf},<application/pdf> zathura %c %i &, apvlv %c, xpdf %c
fileviewer {*.pdf},<application/pdf> pdftotext -nopgbrk %c -
" PostScript
filextype {*.ps,*.eps,*.ps.gz},<application/postscript>
\ {View in zathura}
\ zathura %f,
\ {View in gv}
\ gv %c %i &,
" Djvu
filextype {*.djvu},<image/vnd.djvu>
\ {View in zathura}
\ zathura %f,
\ {View in apvlv}
\ apvlv %f,
" Audio
filetype {*.wav,*.mp3,*.flac,*.m4a,*.wma,*.ape,*.ac3,*.og[agx],*.spx,*.opus},
\<audio/*>
\ {Play using ffplay}
\ ffplay -nodisp -autoexit %c,
\ {Play using MPlayer}
\ mplayer %f,
fileviewer {*.mp3},<audio/mpeg> mp3info
fileviewer {*.flac},<audio/flac> soxi
" Video
filextype {*.avi,*.mp4,*.wmv,*.dat,*.3gp,*.ogv,*.mkv,*.mpg,*.mpeg,*.vob,
\*.fl[icv],*.m2v,*.mov,*.webm,*.ts,*.mts,*.m4v,*.r[am],*.qt,*.divx,
\*.as[fx]},
\<video/*>
\ {View using ffplay}
\ ffplay -fs -autoexit %f,
\ {View using Dragon}
\ dragon %f:p,
\ {View using mplayer}
\ mplayer %f,
fileviewer {*.avi,*.mp4,*.wmv,*.dat,*.3gp,*.ogv,*.mkv,*.mpg,*.mpeg,*.vob,
\*.fl[icv],*.m2v,*.mov,*.webm,*.ts,*.mts,*.m4v,*.r[am],*.qt,*.divx,
\*.as[fx]},
\<video/*>
\ ffprobe -pretty %c 2>&1
" Web
filextype {*.html,*.htm},<text/html>
\ {Open with dwb}
\ dwb %f %i &,
\ {Open with firefox}
\ firefox %f &,
\ {Open with uzbl}
\ uzbl-browser %f %i &,
filetype {*.html,*.htm},<text/html> links, lynx
" Object
filetype {*.o},<application/x-object> nm %f | less
" Man page
filetype {*.[1-8]},<text/troff> man ./%c
fileviewer {*.[1-8]},<text/troff> man ./%c | col -b
" Images
filextype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
\ {View in sxiv}
\ sxiv %f,
\ {View in gpicview}
\ gpicview %c,
\ {View in shotwell}
\ shotwell,
fileviewer {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*>
\ identify %f
" OpenRaster
filextype *.ora
\ {Edit in MyPaint}
\ mypaint %f,
" Mindmap
filextype *.vym
\ {Open with VYM}
\ vym %f &,
" MD5
filetype *.md5
\ {Check MD5 hash sum}
\ md5sum -c %f %S,
" SHA1
filetype *.sha1
\ {Check SHA1 hash sum}
\ sha1sum -c %f %S,
" SHA256
filetype *.sha256
\ {Check SHA256 hash sum}
\ sha256sum -c %f %S,
" SHA512
filetype *.sha512
\ {Check SHA512 hash sum}
\ sha512sum -c %f %S,
" GPG signature
filetype {*.asc},<application/pgp-signature>
\ {Check signature}
\ !!gpg --verify %c,
" Torrent
filetype {*.torrent},<application/x-bittorrent> ktorrent %f &
fileviewer {*.torrent},<application/x-bittorrent> dumptorrent -v %c
" FuseZipMount
filetype {*.zip,*.jar,*.war,*.ear,*.oxt,*.apkg},
\<application/zip,application/java-archive>
\ {Mount with fuse-zip}
\ FUSE_MOUNT|fuse-zip %SOURCE_FILE %DESTINATION_DIR,
\ {View contents}
\ zip -sf %c | less,
\ {Extract here}
\ tar -xf %c,
fileviewer *.zip,*.jar,*.war,*.ear,*.oxt zip -sf %c
" ArchiveMount
filetype {*.tar,*.tar.bz2,*.tbz2,*.tgz,*.tar.gz,*.tar.xz,*.txz,*.tar.zst,*.tzst},
\<application/x-tar>
\ {Mount with archivemount}
\ FUSE_MOUNT|archivemount %SOURCE_FILE %DESTINATION_DIR,
fileviewer *.tgz,*.tar.gz tar -tzf %c
fileviewer *.tar.bz2,*.tbz2 tar -tjf %c
fileviewer *.tar.xz,*.txz tar -tJf %c
fileviewer *.tar.zst,*.tzst tar -t --zstd -f %c
fileviewer {*.tar},<application/x-tar> tar -tf %c
" Rar2FsMount and rar archives
filetype {*.rar},<application/x-rar>
\ {Mount with rar2fs}
\ FUSE_MOUNT|rar2fs %SOURCE_FILE %DESTINATION_DIR,
fileviewer {*.rar},<application/x-rar> unrar v %c
" IsoMount
filetype {*.iso},<application/x-iso9660-image>
\ {Mount with fuseiso}
\ FUSE_MOUNT|fuseiso %SOURCE_FILE %DESTINATION_DIR,
" SshMount
filetype *.ssh
\ {Mount with sshfs}
\ FUSE_MOUNT2|sshfs %PARAM %DESTINATION_DIR %FOREGROUND,
" FtpMount
filetype *.ftp
\ {Mount with curlftpfs}
\ FUSE_MOUNT2|curlftpfs -o ftp_port=-,,disable_eprt %PARAM %DESTINATION_DIR %FOREGROUND,
" Fuse7z and 7z archives
filetype {*.7z},<application/x-7z-compressed>
\ {Mount with fuse-7z}
\ FUSE_MOUNT|fuse-7z %SOURCE_FILE %DESTINATION_DIR,
fileviewer {*.7z},<application/x-7z-compressed> 7z l %c
" Office files
filextype {*.odt,*.doc,*.docx,*.xls,*.xlsx,*.odp,*.pptx,*.ppt},
\<application/vnd.openxmlformats-officedocument.*,
\application/msword,
\application/vnd.ms-excel>
\ libreoffice %f &
fileviewer {*.doc},<application/msword> catdoc %c
fileviewer {*.docx},
\<application/
\vnd.openxmlformats-officedocument.wordprocessingml.document>
\ docx2txt.pl %f -
" TuDu files
filetype *.tudu tudu -f %c
" Qt projects
filextype *.pro qtcreator %f &
" Directories
filextype */
\ {View in thunar}
\ Thunar %f &,
" Syntax highlighting in preview
"
" Explicitly set highlight type for some extensions
"
" 256-color terminal
" fileviewer *.[ch],*.[ch]pp highlight -O xterm256 -s dante --syntax c %c
" fileviewer Makefile,Makefile.* highlight -O xterm256 -s dante --syntax make %c
"
" 16-color terminal
" fileviewer *.c,*.h highlight -O ansi -s dante %c
"
" Or leave it for automatic detection
"
" fileviewer *[^/] pygmentize -O style=monokai -f console256 -g
" Displaying pictures in terminal
"
" fileviewer *.jpg,*.png shellpic %c
" Open all other files with default system programs (you can also remove all
" :file[x]type commands above to ensure they don't interfere with system-wide
" settings). By default all unknown files are opened with 'vi[x]cmd'
" uncommenting one of lines below will result in ignoring 'vi[x]cmd' option
" for unknown file types.
" For *nix:
" filetype * xdg-open
" For OS X:
" filetype * open
" For Windows:
" filetype * start, explorer %"f &
" ------------------------------------------------------------------------------
" What should be saved automatically between vifm sessions. Drop "savedirs"
" value if you don't want vifm to remember last visited directories for you.
set vifminfo=dhistory,state,tui,shistory,
\phistory,fhistory,dirstack,registers,bookmarks,bmarks
" ------------------------------------------------------------------------------
" Examples of configuring both panels
" Customize view columns a bit (enable ellipsis for truncated file names)
"
" set viewcolumns=-{name}..,6{}.
" Filter-out build and temporary files
"
" filter! {*.lo,*.o,*.d,*.class,*.pyc,*.pyo,.*~}
" ------------------------------------------------------------------------------
" Sample mappings
" Start shell in current directory
nnoremap s :shell<cr>
" Display sorting dialog
nnoremap S :sort<cr>
" Toggle visibility of preview window
nnoremap w :view<cr>
vnoremap w :view<cr>gv
" Open file in existing instance of gvim
nnoremap o :!gvim --remote-tab-silent %f<cr>
" Open file in new instance of gvim
nnoremap O :!gvim %f<cr>
" Open file in the background using its default program
nnoremap gb :file &<cr>l
" Interaction with system clipboard
if has('win')
" Yank current directory path to Windows clipboard with forward slashes
nnoremap yp :!echo %"d:gs!\!/! %i | clip<cr>
" Yank path to current file to Windows clipboard with forward slashes
nnoremap yf :!echo %"c:gs!\!/! %i | clip<cr>
elseif executable('xclip')
" Yank current directory path into the clipboard
nnoremap yd :!echo %d | xclip %i<cr>
" Yank current file path into the clipboard
nnoremap yf :!echo %c:p | xclip %i<cr>
elseif executable('xsel')
" Yank current directory path into primary and selection clipboards
nnoremap yd :!echo -n %d | xsel --input --primary %i &&
\ echo -n %d | xsel --clipboard --input %i<cr>
" Yank current file path into into primary and selection clipboards
nnoremap yf :!echo -n %c:p | xsel --input --primary %i &&
\ echo -n %c:p | xsel --clipboard --input %i<cr>
endif
" Mappings for faster renaming
nnoremap I cw<c-a>
nnoremap cc cw<c-u>
nnoremap A cw
" Open console in current directory
nnoremap ,t :!xterm &<cr>
" Open editor to edit vifmrc and apply settings after returning to vifm
nnoremap ,c :write | edit $MYVIFMRC | restart full<cr>
" Open gvim to edit vifmrc
nnoremap ,C :!gvim --remote-tab-silent $MYVIFMRC &<cr>
" Toggle wrap setting on ,w key
nnoremap ,w :set wrap!<cr>
" Example of standard two-panel file managers mappings
nnoremap <f3> :!less %f<cr>
nnoremap <f4> :edit<cr>
nnoremap <f5> :copy<cr>
nnoremap <f6> :move<cr>
nnoremap <f7> :mkdir<space>
nnoremap <f8> :delete<cr>
" Midnight commander alike mappings
" Open current directory in the other pane
nnoremap <a-i> :sync<cr>
" Open directory under cursor in the other pane
nnoremap <a-o> :sync %c<cr>
" Swap panes
nnoremap <c-u> <c-w>x
" ------------------------------------------------------------------------------
" Various customization examples
" Use ag (the silver searcher) instead of grep
"
" set grepprg='ag --line-numbers %i %a %s'
" Add additional place to look for executables
"
" let $PATH = $HOME.'/bin/fuse:'.$PATH
" Block particular shortcut
"
" nnoremap <left> <nop>
" Export IPC name of current instance as environment variable and use it to
" communicate with the instance later.
"
" It can be used in some shell script that gets run from inside vifm, for
" example, like this:
" vifm --server-name "$VIFM_SERVER_NAME" --remote +"cd '$PWD'"
"
" let $VIFM_SERVER_NAME = v:servername

69
.ctwm/img/X1.xpm Normal file
View File

@ -0,0 +1,69 @@
/* XPM */
static char * X1_xpm[] = {
"14 14 52 1",
" c None",
". c #6C7B8B",
"+ c #6D7C8B",
"@ c #A9B2BB",
"# c #FFFFFF",
"$ c #B9C0C8",
"% c #B6BEC6",
"& c #B2BAC2",
"* c #6E7D8C",
"= c #E9EBED",
"- c #FAFBFB",
"; c #808D9B",
"> c #85929F",
", c #FCFCFC",
"' c #E5E7EA",
") c #6E7D8D",
"! c #9AA4AF",
"~ c #D3D8DC",
"{ c #DFE3E6",
"] c #FDFDFE",
"^ c #8B97A4",
"/ c #DBDEE2",
"( c #D0D5DA",
"_ c #BFC6CC",
": c #8A96A3",
"< c #FEFEFE",
"[ c #EEEFF1",
"} c #728190",
"| c #EFF1F2",
"1 c #C1C7CE",
"2 c #AAB2BC",
"3 c #FBFBFC",
"4 c #83909D",
"5 c #758392",
"6 c #F4F5F6",
"7 c #F9FAFA",
"8 c #B1B9C2",
"9 c #DCDFE3",
"0 c #BDC4CB",
"a c #B5BCC4",
"b c #A6AFB8",
"c c #818E9B",
"d c #EBEDEF",
"e c #707F8E",
"f c #7C8A98",
"g c #F7F8F9",
"h c #F5F6F7",
"i c #798695",
"j c #D1D6DB",
"k c #99A3AE",
"l c #A9B1BB",
"m c #CCD1D6",
"..............",
"..+...........",
"..@#$...%#&...",
"..*=-;.>,')...",
"...!#~+{]^....",
"..../#(#_.....",
"....:<#[}.....",
"....*|#1......",
"....2##34.....",
"...5678#9.....",
"...0#a.~#b....",
"..c,de.fghi...",
"..j#k...l#m...",
".............."};

36
.ctwm/img/anim1.xpm Normal file
View File

@ -0,0 +1,36 @@
/* XPM */
static char * anim1_xpm[] = {
"16 16 17 1",
" c #6C7B8B",
". c #000000",
"+ c #3D0000",
"@ c #D01414",
"# c #D12020",
"$ c #DBDBDB",
"% c #D79292",
"& c #D00F0F",
"* c #D11B1B",
"= c #D78F8F",
"- c #D00D0D",
"; c #D01919",
"> c #D78C8C",
", c #D00909",
"' c #D00C0C",
") c #D00E0E",
"! c #D01010",
" ",
" ",
" ",
" .......... ",
" +@#$$$$#@+ ",
" .%&*$$*&%. ",
" .$=-;;-=$. ",
" .$$>,,>$$. ",
" .$$;'';$$. ",
" .$*)>>)*$. ",
" .#!=$$=!#. ",
" .......... ",
" ",
" ",
" ",
" "};

65
.ctwm/img/anim2.xpm Normal file
View File

@ -0,0 +1,65 @@
/* XPM */
static char * anim2_xpm[] = {
"16 16 46 1",
" c #6C7B8B",
". c #000000",
"+ c #DAC5C5",
"@ c #D45E5E",
"# c #D12D2D",
"$ c #D8A7A7",
"% c #DBDBDB",
"& c #DACACA",
"* c #D78F8F",
"= c #D79E9E",
"- c #D23333",
"; c #D45B5B",
"> c #DACECE",
", c #D79595",
"' c #D34C4C",
") c #D02727",
"! c #DACFCF",
"~ c #D56666",
"{ c #D11B1B",
"] c #D01818",
"^ c #D12020",
"/ c #D23D3D",
"( c #D67B7B",
"_ c #DBDADA",
": c #D24C4C",
"< c #CF0A0A",
"[ c #D00909",
"} c #D46868",
"| c #D8ADAD",
"1 c #DBD5D5",
"2 c #D13737",
"3 c #D12525",
"4 c #D12828",
"5 c #D01010",
"6 c #D24848",
"7 c #D68484",
"8 c #D89B9B",
"9 c #D34646",
"0 c #D13434",
"a c #D8AFAF",
"b c #D68080",
"c c #D9B7B7",
"d c #DBD4D4",
"e c #D79494",
"f c #D57070",
"g c #DBD3D3",
" ",
" ",
" ",
" .......... ",
" .+@#$%%&*. ",
" .%=-;>,'). ",
" .%!~{]^/(. ",
" ._&:<[}|1. ",
" .*2345@%%. ",
" .]67890a%. ",
" .bcd%e4fg. ",
" .......... ",
" ",
" ",
" ",
" "};

59
.ctwm/img/anim3.xpm Normal file
View File

@ -0,0 +1,59 @@
/* XPM */
static char * anim3_xpm[] = {
"16 16 40 1",
" c #6C7B8B",
". c #000000",
"+ c #DBDBDB",
"@ c #DBD4D4",
"# c #D35C5C",
"$ c #D12323",
"% c #D9B4B4",
"& c #D68484",
"* c #D01717",
"= c #D8A7A7",
"- c #D9B5B5",
"; c #D68585",
"> c #DBDADA",
", c #D79393",
"' c #D12C2C",
") c #D34444",
"! c #D11B1B",
"~ c #D01D1D",
"{ c #D57474",
"] c #D35252",
"^ c #CF1515",
"/ c #D00B0B",
"( c #D00909",
"_ c #D24545",
": c #D46C6C",
"< c #D68D8D",
"[ c #D13A3A",
"} c #D46262",
"| c #D23B3B",
"1 c #D01A1A",
"2 c #D78F8F",
"3 c #DBD3D3",
"4 c #D79E9E",
"5 c #D9B8B8",
"6 c #DAC6C6",
"7 c #D01010",
"8 c #D79B9B",
"9 c #D8AFAF",
"0 c #D23838",
"a c #D35A5A",
" ",
" ",
" ",
" .......... ",
" .+@#$%+++. ",
" .+@&*=+-;. ",
" .>+,'*)!~. ",
" .{]^/(_:<. ",
" .^[}|123+. ",
" .456278++. ",
" .+++90a++. ",
" .......... ",
" ",
" ",
" ",
" "};

49
.ctwm/img/anim4.xpm Normal file
View File

@ -0,0 +1,49 @@
/* XPM */
static char * anim4_xpm[] = {
"16 16 30 1",
" c #6C7B8B",
". c #000000",
"+ c #DBDBDB",
"@ c #DAC2C2",
"# c #D34E4E",
"$ c #D22E2E",
"% c #DACDCD",
"& c #D34040",
"* c #D24646",
"= c #D57676",
"- c #D67777",
"; c #D24040",
"> c #CF1515",
", c #D56A6A",
"' c #D46464",
") c #D67979",
"! c #D02424",
"~ c #D11D1D",
"{ c #D12E2E",
"] c #CF0B0B",
"^ c #CF0909",
"/ c #D12929",
"( c #D13030",
"_ c #D11F1F",
": c #D8ACAC",
"< c #D8AAAA",
"[ c #D79595",
"} c #D24141",
"| c #D12D2D",
"1 c #D8ADAD",
" ",
" ",
" ",
" .......... ",
" .++@#$%++. ",
" .++%&*+++. ",
" .=-#;>,'). ",
" .!~{]^/(_. ",
" .:<[}|1::. ",
" .++%&*+++. ",
" .++@#{%++. ",
" .......... ",
" ",
" ",
" ",
" "};

61
.ctwm/img/anim5.xpm Normal file
View File

@ -0,0 +1,61 @@
/* XPM */
static char * anim5_xpm[] = {
"16 16 42 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDBDB",
"# c #D9AFAF",
"$ c #D23737",
"% c #D45A5A",
"& c #D46767",
"* c #D68383",
"= c #D8AFAF",
"- c #D68F8F",
"; c #D01010",
"> c #D79A9A",
", c #D12121",
"' c #D01B1B",
") c #CF1919",
"! c #D12A2A",
"~ c #CF1111",
"{ c #D46060",
"] c #DAC7C7",
"^ c #D9B2B2",
"/ c #D78B8B",
"( c #D46A6A",
"_ c #CF0C0C",
": c #D00909",
"< c #D01717",
"[ c #D35353",
"} c #D79E9E",
"| c #D12D2D",
"1 c #D34949",
"2 c #D68181",
"3 c #D46464",
"4 c #D23C3C",
"5 c #DBD4D4",
"6 c #D68484",
"7 c #CF1818",
"8 c #D8A7A7",
"9 c #DACCCC",
"0 c #D9BABA",
"a c #D45C5C",
"b c #D12424",
"c c #D9B4B4",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@#$%@@+....",
"..+&*=-;>@@+....",
"..+,')!~{]@+....",
"..+^/(_:'<[+....",
"..+@@}|1234+....",
"..+@5678@90+....",
"..+@5abc@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

66
.ctwm/img/anim6.xpm Normal file
View File

@ -0,0 +1,66 @@
/* XPM */
static char * anim6_xpm[] = {
"16 16 47 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #D78F8F",
"# c #DACACA",
"$ c #DBDBDB",
"% c #D8A7A7",
"& c #D12D2D",
"* c #D45E5E",
"= c #DAC5C5",
"- c #D02727",
"; c #D34C4C",
"> c #D79595",
", c #DACECE",
"' c #D45B5B",
") c #D23333",
"! c #D79E9E",
"~ c #D67B7B",
"{ c #D23D3D",
"] c #D12020",
"^ c #D01818",
"/ c #D11B1B",
"( c #D56666",
"_ c #DACFCF",
": c #DBD5D5",
"< c #D8ADAD",
"[ c #D46868",
"} c #D00909",
"| c #CF0A0A",
"1 c #D24C4C",
"2 c #DBDADA",
"3 c #D01010",
"4 c #D12828",
"5 c #D12525",
"6 c #D13737",
"7 c #D8AFAF",
"8 c #D13434",
"9 c #D34646",
"0 c #D89B9B",
"a c #D68484",
"b c #D24848",
"c c #DBD3D3",
"d c #D57070",
"e c #D79494",
"f c #DBD4D4",
"g c #D9B7B7",
"h c #D68080",
"................",
"................",
"................",
"..++++++++++....",
"..+@#$$%&*=+....",
"..+-;>,')!$+....",
"..+~{]^/(_$+....",
"..+:<[}|1#2+....",
"..+$$*3456@+....",
"..+$7890ab^+....",
"..+cd4e$fgh+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA1.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA1_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #EF0000",
"# c #DBDADA",
"................",
"................",
"................",
"..++++++++++....",
"..+@#######+....",
"..+@#######+....",
"..+@#######+....",
"..+@#######+....",
"..+@#######+....",
"..+@#######+....",
"..+@#######+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA2.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA2_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..+@#@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA3.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA3_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..+@@#@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA4.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA4_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..+@@@#@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA5.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA5_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..+@@@@#@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA6.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA6_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..+@@@@@#@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA7.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA7_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..+@@@@@@#@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animA8.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animA8_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..+@@@@@@@#+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB1.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB1_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #EF0000",
"# c #DBDADA",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+########+....",
"..+########+....",
"..+########+....",
"..+########+....",
"..+########+....",
"..+########+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB2.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB2_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+########+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB3.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB3_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+########+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB4.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB4_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+########+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB5.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB5_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+########+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB6.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB6_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+########+....",
"..+@@@@@@@@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animB7.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animB7_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #DBDADA",
"# c #EF0000",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+@@@@@@@@+....",
"..+########+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

24
.ctwm/img/animC1.xpm Normal file
View File

@ -0,0 +1,24 @@
/* XPM */
static char * animC1_xpm[] = {
"16 16 5 1",
" c None",
". c #6C7B8B",
"+ c #000000",
"@ c #EF0000",
"# c #DBDADA",
"................",
"................",
"................",
"..++++++++++....",
"..+@@@@@@@@+....",
"..+#######@+....",
"..+#######@+....",
"..+#######@+....",
"..+#######@+....",
"..+#######@+....",
"..+#######@+....",
"..++++++++++....",
"................",
"................",
"................",
"................"};

Some files were not shown because too many files have changed in this diff Show More