Update dotfiles/.local/share/chezmoi/private_dot_config/batrc, dotfiles/.local/share/chezmoi/private_dot_config/gtkrc, dotfiles/.config/kcminputrc, dotfiles/.local/share/chezmoi/private_dot_config/kcminputrc, dotfiles/.local/share/chezmoi/private_dot_config/konsolerc, dotfiles/.local/share/chezmoi/private_dot_config/ksplashrc, dotfiles/.local/share/chezmoi/private_dot_config/ktimezonedrc, dotfiles/.local/share/chezmoi/private_dot_config/kwinrc, dotfiles/.local/share/chezmoi/private_dot_config/plasma-localerc, dotfiles/.local/share/chezmoi/private_dot_config/plasmarc, dotfiles/.local/share/chezmoi/private_dot_config/ripgreprc, dotfiles/.local/share/chezmoi/private_dot_config/wgetrc, dotfiles/.config/ripgreprc, dotfiles/.local/share/chezmoi/private_dot_config/whalebrew

This commit is contained in:
Brian Zalewski 2022-11-22 01:51:31 +00:00
parent d64804184c
commit 80ca7ba6db
14 changed files with 154 additions and 2 deletions

View file

@ -1,2 +1,2 @@
[Mouse]
cursorTheme=Sweet-cursors
cursorTheme=Betelgeuse

View file

@ -0,0 +1,11 @@
# Set the theme to "TwoDark"
--theme="TwoDark"
# Show line numbers, Git modifications and file header (but no grid)
--style="numbers,changes,header"
# Use italic text on the terminal (not supported on all terminals)
--italic-text=always
# Use C++ syntax for Arduino .ino files
--map-syntax "*.ino:C++"

View file

@ -0,0 +1,48 @@
style "default"
{
bg[NORMAL] = { 0.094, 0.106, 0.157 }
bg[SELECTED] = { 0.773, 0.055, 0.824 }
bg[INSENSITIVE] = { 0.094, 0.106, 0.157 }
bg[ACTIVE] = { 0.082, 0.090, 0.137 }
bg[PRELIGHT] = { 0.094, 0.106, 0.157 }
base[NORMAL] = { 0.086, 0.098, 0.145 }
base[SELECTED] = { 0.773, 0.055, 0.824 }
base[INSENSITIVE] = { 0.094, 0.106, 0.157 }
base[ACTIVE] = { 0.773, 0.055, 0.824 }
base[PRELIGHT] = { 0.773, 0.055, 0.824 }
text[NORMAL] = { 0.827, 0.855, 0.890 }
text[SELECTED] = { 0.996, 0.996, 0.996 }
text[INSENSITIVE] = { 0.082, 0.090, 0.137 }
text[ACTIVE] = { 0.996, 0.996, 0.996 }
text[PRELIGHT] = { 0.996, 0.996, 0.996 }
fg[NORMAL] = { 0.827, 0.855, 0.890 }
fg[SELECTED] = { 0.996, 0.996, 0.996 }
fg[INSENSITIVE] = { 0.082, 0.090, 0.137 }
fg[ACTIVE] = { 0.827, 0.855, 0.890 }
fg[PRELIGHT] = { 0.827, 0.855, 0.890 }
}
class "*" style "default"
style "ToolTip"
{
bg[NORMAL] = { 0.208, 0.224, 0.271 }
base[NORMAL] = { 0.208, 0.224, 0.271 }
text[NORMAL] = { 0.827, 0.855, 0.890 }
fg[NORMAL] = { 0.827, 0.855, 0.890 }
}
widget "gtk-tooltip" style "ToolTip"
widget "gtk-tooltips" style "ToolTip"
widget "gtk-tooltip*" style "ToolTip"
style "MenuItem"
{
bg[PRELIGHT] = { 0.773, 0.055, 0.824 }
fg[PRELIGHT] = { 0.996, 0.996, 0.996 }
}
class "*MenuItem" style "MenuItem"

View file

@ -0,0 +1,2 @@
[Mouse]
cursorTheme=Betelgeuse

View file

@ -0,0 +1,19 @@
[Desktop Entry]
DefaultProfile=Betelgeuse
[Favorite Profiles]
Favorites=Betelgeuse
[MainWindow]
RestorePositionForNextInstance=false
[SearchSettings]
SearchRegExpression=true
[TabBar]
NewTabButton=true
TabBarPosition=Top
TabBarVisibility=AlwaysShowTabBar
[ThumbnailsSettings]
ThumbnailCtrl=true

View file

@ -0,0 +1,3 @@
[KSplash]
Engine=KSplashQML
Theme=Betelgeuse

View file

@ -0,0 +1,2 @@
[TimeZones]
LocalZone=America/New_York

View file

@ -0,0 +1,3 @@
[org.kde.kdecoration2]
library=org.kde.kwin.aurorae
theme=_aurorae__svg__Betelgeuse

View file

@ -0,0 +1,2 @@
[Formats]
LANG=en_US.UTF-8

View file

@ -0,0 +1,2 @@
[Theme]
name=Betelgeuse

View file

@ -0,0 +1,21 @@
# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
--max-columns=150
--max-columns-preview
# Add my 'web' type.
--type-add
web:*.{html,css,js}*
# Using glob patterns to include/exclude files or folders
--glob=!git/*
# or
--glob
!git/*
# Set the colors.
--colors=line:none
--colors=line:style:bold
# Because who cares about case!?
--smart-case

View file

@ -0,0 +1,38 @@
# Use the server-provided last modification date, if available
timestamping = on
# Do not go up in the directory structure when downloading recursively
no_parent = on
# Wait 60 seconds before timing out. This applies to all timeouts: DNS, connect and read. (The default read timeout is 15 minutes!)
timeout = 60
# Retry a few times when a download fails, but dont overdo it. (The default is 20!)
tries = 3
# Retry even when the connection was refused
retry_connrefused = on
# Use the last component of a redirection URL for the local file name
trust_server_names = on
# Follow FTP links from HTML documents by default
follow_ftp = on
# Add a `.html` extension to `text/html` or `application/xhtml+xml` files that lack one, or a `.css` extension to `text/css` files that lack one
adjust_extension = on
# Use UTF-8 as the default system encoding
# Disabled as it makes `wget` builds that dont support this feature unusable.
# Does anyone know how to conditionally configure a wget setting?
# http://unix.stackexchange.com/q/34730/6040
#local_encoding = UTF-8
# Ignore `robots.txt` and `<meta name=robots content=nofollow>`
robots = off
# Print the HTTP and FTP server responses
server_response = on
# Disguise as IE 9 on Windows 7
user_agent = Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)

View file

@ -0,0 +1 @@