too many things

This commit is contained in:
fbachus
2025-09-02 03:32:47 +02:00
parent c26d3a64b0
commit f19e8a00c7
81 changed files with 2724 additions and 1549 deletions

View File

@@ -0,0 +1,152 @@
include = config
font-size = 17
###----
### Text theming
#
# Default text color
#
# All text defaults to this color if not otherwise specified.
text-color = #FFFFFF
# Selection text
selection-color = #9cd3ff
# Matching portion of selection text
selection-match-color = #9cd3ff
default-result-color = #FFFFFF
alternate-result-color = #808080
#
### Text cursor theme
#
# Style of the optional text cursor.
#
# Supported values: bar, block, underscore
text-cursor-style = underscore
# Color of the text cursor
#
# If unspecified, defaults to the same as input-color
# text-cursor-color = #FFFFFF
# Color of text behind the text cursor when text-cursor-style = block
#
# If unspecified, defaults to the same as background-color
# text-cursor-background = #000000
# Corner radius of the text cursor
text-cursor-corner-radius = 0
# Thickness of the bar and underscore text cursors.
#
# If unspecified, defaults to a font-dependent value when
# text-cursor-style = underscore, or to 2 otherwise.
# text-cursor-thickness = 2
#
### Text layout
#
# Prompt to display.
prompt-text = "Brightness"
# Extra horizontal padding between prompt and input.
prompt-padding = 8
# Placeholder input text.
placeholder-text = ""
# Maximum number of results to display.
# If 0, tofi will draw as many results as it can fit in the window.
num-results = 7
# Spacing between results in pixels. Can be negative.
result-spacing = 6
# List results horizontally.
horizontal = true
# Minimum width of input in horizontal mode.
min-input-width = 0
#
### Window theming
#
width = 330
height = 50
# Width and height of the window. Can be pixels or a percentage.
# Window background color
background-color = #191A1CF0
# Width of the border outlines in pixels.
outline-width = 0
# Border outline color
outline-color = #080800
# Radius of window corners in pixels.
corner-radius = 0
# Whether to scale the window by the output's scale factor.
scale = true
#
### Window positioning
#
# The name of the output to appear on. An empty string will use the
# default output chosen by the compositor.
output = ""
# Location on screen to anchor the window to.
#
# Supported values: top-left, top, top-right, right, bottom-right,
# bottom, bottom-left, left, center.
anchor = top
margin-top = 5%
# Set the size of the exclusive zone.
#
# A value of -1 means ignore exclusive zones completely.
# A value of 0 will move tofi out of the way of other windows' zones.
# A value greater than 0 will set that much space as an exclusive zone.
#
# Values greater than 0 are only meaningful when tofi is anchored to a
# single edge.
exclusive-zone = -1
#
### Behaviour
#
# Hide the mouse cursor.
hide-cursor = true
# Show a text cursor in the input field.
text-cursor = false
# Sort results by number of usages in run and drun modes.
history = false
require-match = true
auto-accept-single = true
# If true, typed input will be hidden, and what is displayed (if
# anything) is determined by the hidden-character option.
hide-input = true
# Replace displayed input characters with a character. If the empty
# string is given, input will be completely hidden.
# This option only has an effect when hide-input is set to true.
hidden-character = ""
#
### Inclusion
#
# Configs can be split between multiple files, and then included
# within each other.
# include = /path/to/config

View File

@@ -13,13 +13,14 @@
# characters not in the chosen font will fail to render.
#
# Otherwise, fonts are interpreted in Pango format.
# font = "Nimbus Mono PS"
# font = "hurmit nerd font"
#font = "Nimbus Mono PS"
#font = "hurmit nerd font"
#font = /usr/share/fonts/TTF/SauceCodeProNerdFont-Regular.ttf
font = /usr/share/fonts/OTF/HurmitNerdFont-Light.otf
# font = /usr/share/fonts/OTF/HurmitNerdFont-Regular.otf
#font = /usr/share/fonts/OTF/HurmitNerdFont-Regular.otf
# Point size of text.
font-size = 19
font-size = 20
# Comma separated list of OpenType font feature settings to apply,
# if supported by the chosen font. The format is similar to the CSS
@@ -45,7 +46,7 @@
# specified via `font`. Disabling font hinting speeds up text
# rendering appreciably, but will likely look poor at small font pixel
# sizes.
hint-font = true
hint-font = false
#
### Text theming
@@ -72,27 +73,27 @@
# Prompt text theme
# prompt-color = #FFFFFF
prompt-background = #00000000
prompt-background-padding = 0
prompt-background-corner-radius = 0
#prompt-background = #00000000
#prompt-background-padding = 0
#prompt-background-corner-radius = 0
# Placeholder text theme
placeholder-color = #FFFFFFA8
placeholder-background = #00000000
placeholder-background-padding = 0
placeholder-background-corner-radius = 15
#placeholder-background = #00000000
#placeholder-background-padding = 0
#placeholder-background-corner-radius = 15
# Input text theme
# input-color = #FFFFFF
input-background = #00000000
input-background-padding = 0
input-background-corner-radius = 15
#input-background = #00000000
#input-background-padding = 0
#input-background-corner-radius = 15
# Default result text theme
# default-result-color = #FFFFFF
default-result-background = #00000000
default-result-background-padding = 0
default-result-background-corner-radius = 15
#default-result-background = #00000000
#default-result-background-padding = 0
#default-result-background-corner-radius = 15
# Alternate (even-numbered) result text theme
#
@@ -106,12 +107,12 @@
# Selection text
selection-color = #33ccff
selection-background = #00000000
selection-background-padding = 0
selection-background-corner-radius = 15
#selection-background = #00000000
#selection-background-padding = 0
#selection-background-corner-radius = 15
# Matching portion of selection text
selection-match-color = #00ff99
selection-match-color = #00ff99
#
@@ -120,7 +121,7 @@
# Style of the optional text cursor.
#
# Supported values: bar, block, underscore
text-cursor-style = bar
text-cursor-style = underscore
# Color of the text cursor
#
@@ -145,17 +146,17 @@
### Text layout
#
# Prompt to display.
prompt-text = "> "
prompt-text = ">"
# Extra horizontal padding between prompt and input.
prompt-padding = 0
prompt-padding = 8
# Placeholder input text.
placeholder-text = ""
# Maximum number of results to display.
# If 0, tofi will draw as many results as it can fit in the window.
num-results = 5
#num-results = 5
# Spacing between results in pixels. Can be negative.
result-spacing = 0
@@ -174,10 +175,10 @@
height = 270
# Window background color
background-color = #191A1CA0
background-color = #191A1CC0
# Width of the border outlines in pixels.
outline-width = 1
outline-width = 0
# Border outline color
outline-color = #080800
@@ -186,10 +187,10 @@
border-width = 2
# Border color
border-color = #00ff99
border-color = #00ff99aa
# Radius of window corners in pixels.
corner-radius = 10
corner-radius = 0
# Padding between borders and text. Can be pixels or a percentage.
padding-top = 8
@@ -231,7 +232,7 @@
# Window offset from edge of screen. Only has an effect when anchored
# to the relevant edge. Can be pixels or a percentage.
margin-top = 20%
margin-bottom = 0
margin-bottom = 0%
margin-left = 0
margin-right = 3%

View File

@@ -0,0 +1,181 @@
# Default config for tofi
#
# Copy this file to ~/.config/tofi/config and get customising!
#
# A complete reference of available options can be found in `man 5 tofi`.
include = ~/.config/tofi/config
#
### Fonts
#
font = /usr/share/fonts/OTF/HurmitNerdFont-Light.otf
font-size = 17
# font-features = "smcp, c2sc" (all small caps)
# font-features = "liga 0" (disable ligatures)
font-features = "smcp"
# Comma separated list of OpenType font variation settings to apply
# to variable fonts. The format is similar to the CSS
# "font-variation-settings" property.
#
# Examples:
#
# font-variations = "wght 900" (Extra bold)
# font-variations = "wdth 25, slnt -10" (Narrow and slanted)
font-variations = ""
hint-font = false
#
### Text theming
#
# Default text color
#
# All text defaults to this color if not otherwise specified.
text-color = #FFFFFF
# Selection text
selection-color = #ffbb00
# Matching portion of selection text
selection-match-color = #ff7700
#
### Text cursor theme
#
# Style of the optional text cursor.
#
# Supported values: bar, block, underscore
text-cursor-style = underscore
# Color of the text cursor
#
# If unspecified, defaults to the same as input-color
# text-cursor-color = #FFFFFF
# Color of text behind the text cursor when text-cursor-style = block
#
# If unspecified, defaults to the same as background-color
# text-cursor-background = #000000
# Corner radius of the text cursor
text-cursor-corner-radius = 0
# Thickness of the bar and underscore text cursors.
#
# If unspecified, defaults to a font-dependent value when
# text-cursor-style = underscore, or to 2 otherwise.
# text-cursor-thickness = 2
#
### Text layout
#
# Prompt to display.
prompt-text = ""
# Extra horizontal padding between prompt and input.
prompt-padding = 8
# Placeholder input text.
placeholder-text = ""
# Maximum number of results to display.
# If 0, tofi will draw as many results as it can fit in the window.
#num-results = 5
# Spacing between results in pixels. Can be negative.
result-spacing = 15
# List results horizontally.
horizontal = false
# Minimum width of input in horizontal mode.
min-input-width = 0
#
### Window theming
#
# Width and height of the window. Can be pixels or a percentage.
width = 100%
height = 100%
border-width = 0
border-color = #ffbb00ab
# Padding between borders and text. Can be pixels or a percentage.
padding-top = 35%
padding-left = 35%
# Window background color
background-color = #191A1CF0
# Width of the border outlines in pixels.
outline-width = 0
# Border outline color
outline-color = #080800
# Radius of window corners in pixels.
corner-radius = 0
# Whether to scale the window by the output's scale factor.
scale = true
#
### Window positioning
#
# The name of the output to appear on. An empty string will use the
# default output chosen by the compositor.
output = ""
# Location on screen to anchor the window to.
#
# Supported values: top-left, top, top-right, right, bottom-right,
# bottom, bottom-left, left, center.
anchor = center
# Set the size of the exclusive zone.
#
# A value of -1 means ignore exclusive zones completely.
# A value of 0 will move tofi out of the way of other windows' zones.
# A value greater than 0 will set that much space as an exclusive zone.
#
# Values greater than 0 are only meaningful when tofi is anchored to a
# single edge.
exclusive-zone = -1
#
### Behaviour
#
# Hide the mouse cursor.
hide-cursor = true
# Show a text cursor in the input field.
text-cursor = false
# Sort results by number of usages in run and drun modes.
history = false
require-match = true
auto-accept-single = false
# If true, typed input will be hidden, and what is displayed (if
# anything) is determined by the hidden-character option.
hide-input = true
# Replace displayed input characters with a character. If the empty
# string is given, input will be completely hidden.
# This option only has an effect when hide-input is set to true.
hidden-character = ""
#
### Inclusion
#
# Configs can be split between multiple files, and then included
# within each other.
# include = /path/to/config