mirror of
https://github.com/StepanovPlaton/dotfiles.git
synced 2026-04-03 20:30:46 +04:00
Clear
This commit is contained in:
Binary file not shown.
@@ -1,25 +0,0 @@
|
|||||||
# Recommended location for database
|
|
||||||
db_file "~/.config/mpd/database"
|
|
||||||
|
|
||||||
# If running mpd using systemd, delete this line to log directly to systemd.
|
|
||||||
log_file "syslog"
|
|
||||||
|
|
||||||
# The music directory is by default the XDG directory, uncomment to amend and choose a different directory
|
|
||||||
music_directory "~/Music"
|
|
||||||
music_directory "~/Data/Music"
|
|
||||||
music_directory "~/Sync/Music"
|
|
||||||
music_directory "~/Mount/Sync/Music"
|
|
||||||
|
|
||||||
# Uncomment to refresh the database whenever files in the music_directory are changed
|
|
||||||
#auto_update "yes"
|
|
||||||
|
|
||||||
# Uncomment to enable the functionalities
|
|
||||||
playlist_directory "~/.config/mpd/playlists"
|
|
||||||
pid_file "~/.config/mpd/pid"
|
|
||||||
state_file "~/.local/state/mpd/state"
|
|
||||||
sticker_file "~/.config/mpd/sticker.sql"
|
|
||||||
|
|
||||||
audio_output {
|
|
||||||
type "pulse"
|
|
||||||
name "pulse audio"
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
1073
|
|
||||||
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
[R]
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
right: run bspc node -f east
|
|
||||||
left: run bspc node -f west
|
|
||||||
up: run bspc node -f north
|
|
||||||
down: run bspc node -f south
|
|
||||||
|
|
||||||
git status: type git status
|
|
||||||
git commit: type git commit -m "`date`+'%Y-%m-%d %H:%M:%S'"
|
|
||||||
git push: type git push
|
|
||||||
git commit and push: type git commit -m "`date`+'%Y-%m-%d %H:%M:%S'" \
|
|
||||||
run git push
|
|
||||||
|
|
||||||
mute: run pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
||||||
|
|
||||||
power off: run export SUDO_ASKPASS=".scripts/dpass.sh" && sudo -A poweroff
|
|
||||||
reboot: run export SUDO_ASKPASS=".scripts/dpass.sh" && sudo -A reboot
|
|
||||||
|
|
||||||
deactivate: run pkill numen
|
|
||||||
bye: run echo load $HOME/.config/numen/startup.phrases | numenc && echo "[R]" > ~/.config/numen/current_mode
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
enable voice assistant: run echo load $HOME/.config/numen/phrases.phrases | numenc && echo "[W]" > ~/.config/numen/current_mode
|
|
||||||
deactivate: run pkill numen
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# If a config.py file exists, this file is ignored unless it's explicitly loaded
|
|
||||||
# via config.load_autoconfig(). For more information, see:
|
|
||||||
# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml
|
|
||||||
# DO NOT edit this file by hand, qutebrowser will overwrite it.
|
|
||||||
# Instead, create a config.py - see :help for details.
|
|
||||||
|
|
||||||
config_version: 2
|
|
||||||
settings:
|
|
||||||
colors.webpage.darkmode.enabled:
|
|
||||||
global: false
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
config.load_autoconfig()
|
|
||||||
config.set("colors.webpage.darkmode.enabled", True)
|
|
||||||
config.source('qutewal.py')
|
|
||||||
@@ -1,325 +0,0 @@
|
|||||||
import json
|
|
||||||
import os
|
|
||||||
|
|
||||||
home = os.getenv('HOME')
|
|
||||||
colors_relative = '.cache/wal/colors.json'
|
|
||||||
colors_absolute = os.path.join(home, colors_relative)
|
|
||||||
|
|
||||||
if os.path.isfile(colors_absolute):
|
|
||||||
with open(colors_absolute) as colorfile:
|
|
||||||
colors = json.load(colorfile)
|
|
||||||
|
|
||||||
## Background color of the completion widget category headers.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.category.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Bottom border color of the completion widget category headers.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.category.border.bottom = colors['special']['background']
|
|
||||||
|
|
||||||
## Top border color of the completion widget category headers.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.category.border.top = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of completion widget category headers.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.completion.category.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the completion widget for even rows.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.even.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Background color of the completion widget for odd rows.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.odd.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Text color of the completion widget.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.completion.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the selected completion item.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.item.selected.bg = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Bottom border color of the selected completion item.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.item.selected.border.bottom = colors['special'][
|
|
||||||
'background']
|
|
||||||
|
|
||||||
## Top border color of the completion widget category headers.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.item.selected.border.top = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of the selected completion item.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.completion.item.selected.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Foreground color of the matched text in the completion.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.match.fg = colors['colors']['color3']
|
|
||||||
|
|
||||||
## Color of the scrollbar in completion view
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.scrollbar.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Color of the scrollbar handle in completion view.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.completion.scrollbar.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color for the download bar.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.downloads.bar.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Background color for downloads with errors.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.downloads.error.bg = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Foreground color for downloads with errors.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.downloads.error.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Color gradient stop for download backgrounds.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.downloads.stop.bg = colors['colors']['color6']
|
|
||||||
|
|
||||||
## Color gradient interpolation system for download backgrounds.
|
|
||||||
## Type: ColorSystem
|
|
||||||
## Valid values:
|
|
||||||
## - rgb: Interpolate in the RGB color system.
|
|
||||||
## - hsv: Interpolate in the HSV color system.
|
|
||||||
## - hsl: Interpolate in the HSL color system.
|
|
||||||
## - none: Don't show a gradient.
|
|
||||||
c.colors.downloads.system.bg = 'none'
|
|
||||||
|
|
||||||
## Background color for hints. Note that you can use a `rgba(...)` value
|
|
||||||
## for transparency.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.hints.bg = colors['colors']['color3']
|
|
||||||
|
|
||||||
## Font color for hints.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.hints.fg = colors['special']['background']
|
|
||||||
|
|
||||||
## Font color for the matched part of hints.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.hints.match.fg = colors['colors']['color4']
|
|
||||||
|
|
||||||
## Background color of the keyhint widget.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.keyhint.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Text color for the keyhint widget.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.keyhint.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Highlight color for keys to complete the current keychain.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.keyhint.suffix.fg = colors['colors']['color3']
|
|
||||||
|
|
||||||
## Background color of an error message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.error.bg = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Border color of an error message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.error.border = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Foreground color of an error message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.error.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of an info message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.info.bg = colors['colors']['color4']
|
|
||||||
|
|
||||||
## Border color of an info message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.info.border = colors['colors']['color4']
|
|
||||||
|
|
||||||
## Foreground color an info message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.info.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of a warning message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.warning.bg = colors['colors']['color1']
|
|
||||||
|
|
||||||
## Border color of a warning message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.warning.border = colors['colors']['color1']
|
|
||||||
|
|
||||||
## Foreground color a warning message.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.messages.warning.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color for prompts.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.prompts.bg = colors['special']['background']
|
|
||||||
|
|
||||||
# ## Border used around UI elements in prompts.
|
|
||||||
# ## Type: String
|
|
||||||
c.colors.prompts.border = '1px solid ' + colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color for prompts.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.prompts.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color for the selected item in filename prompts.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.prompts.selected.bg = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Background color of the statusbar in caret mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.caret.bg = colors['colors']['color6']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in caret mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.caret.fg = colors['special']['cursor']
|
|
||||||
|
|
||||||
## Background color of the statusbar in caret mode with a selection.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.caret.selection.bg = colors['colors']['color6']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in caret mode with a selection.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.caret.selection.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the statusbar in command mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.command.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in command mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.command.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the statusbar in private browsing + command mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.command.private.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in private browsing + command mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.command.private.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the statusbar in insert mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.insert.bg = colors['colors']['color2']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in insert mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.insert.fg = colors['special']['background']
|
|
||||||
|
|
||||||
## Background color of the statusbar.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.normal.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.normal.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the statusbar in passthrough mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.passthrough.bg = colors['colors']['color4']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in passthrough mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.passthrough.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the statusbar in private browsing mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.private.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of the statusbar in private browsing mode.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.private.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color of the progress bar.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.progress.bg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Foreground color of the URL in the statusbar on error.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.error.fg = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Default foreground color of the URL in the statusbar.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Foreground color of the URL in the statusbar for hovered links.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.hover.fg = colors['colors']['color4']
|
|
||||||
|
|
||||||
## Foreground color of the URL in the statusbar on successful load
|
|
||||||
## (http).
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.success.http.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Foreground color of the URL in the statusbar on successful load
|
|
||||||
## (https).
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.success.https.fg = colors['colors']['color2']
|
|
||||||
|
|
||||||
## Foreground color of the URL in the statusbar when there's a warning.
|
|
||||||
## Type: QssColor
|
|
||||||
c.colors.statusbar.url.warn.fg = colors['colors']['color1']
|
|
||||||
|
|
||||||
## Background color of the tab bar.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.bar.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Background color of unselected even tabs.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.even.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of unselected even tabs.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.even.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Color for the tab indicator on errors.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.indicator.error = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Color gradient start for the tab indicator.
|
|
||||||
## Type: QtColor
|
|
||||||
# c.colors.tabs.indicator.start = colors['colors']['color5']
|
|
||||||
|
|
||||||
## Color gradient end for the tab indicator.
|
|
||||||
## Type: QtColor
|
|
||||||
# c.colors.tabs.indicator.stop = colors['colors']['color1']
|
|
||||||
|
|
||||||
## Color gradient interpolation system for the tab indicator.
|
|
||||||
## Type: ColorSystem
|
|
||||||
## Valid values:
|
|
||||||
## - rgb: Interpolate in the RGB color system.
|
|
||||||
## - hsv: Interpolate in the HSV color system.
|
|
||||||
## - hsl: Interpolate in the HSL color system.
|
|
||||||
## - none: Don't show a gradient.
|
|
||||||
c.colors.tabs.indicator.system = 'none'
|
|
||||||
|
|
||||||
## Background color of unselected odd tabs.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.odd.bg = colors['special']['background']
|
|
||||||
|
|
||||||
## Foreground color of unselected odd tabs.
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.tabs.odd.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
# ## Background color of selected even tabs.
|
|
||||||
# ## Type: QtColor
|
|
||||||
c.colors.tabs.selected.even.bg = colors['colors']['color4']
|
|
||||||
|
|
||||||
# ## Foreground color of selected even tabs.
|
|
||||||
# ## Type: QtColor
|
|
||||||
c.colors.tabs.selected.even.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
# ## Background color of selected odd tabs.
|
|
||||||
# ## Type: QtColor
|
|
||||||
c.colors.tabs.selected.odd.bg = colors['colors']['color4']
|
|
||||||
|
|
||||||
# ## Foreground color of selected odd tabs.
|
|
||||||
# ## Type: QtColor
|
|
||||||
c.colors.tabs.selected.odd.fg = colors['special']['foreground']
|
|
||||||
|
|
||||||
## Background color for webpages if unset (or empty to use the theme's
|
|
||||||
## color)
|
|
||||||
## Type: QtColor
|
|
||||||
c.colors.webpage.bg = colors['special']['background']
|
|
||||||
Reference in New Issue
Block a user