initial commit

This commit is contained in:
Frank Zechert
2026-07-24 02:44:00 +02:00
commit 181b339296
30 changed files with 3821 additions and 0 deletions
+286
View File
@@ -0,0 +1,286 @@
#? Config file for btop v.1.4.7
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
color_theme = "/home/frank/.config/btop/themes/catppuccin_macchiato.theme"
#* If the theme set background should be shown, set to False if you want terminal background transparency.
theme_background = true
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
truecolor = true
#* Set to true to force tty mode regardless if a real tty has been detected or not.
#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
force_tty = false
#* Option to disable presets. Either the default preset, custom presets, or all presets.
#* "Off" All presets are enabled.
#* "Default" preset is disabled.#* "Custom" presets are disabled.#* "All" presets are disabled.
disable_presets = "Off"
#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
#* Use whitespace " " as separator between different presets.
#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists.
#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
vim_keys = false
#* Disable all mouse events.
disable_mouse = false
#* Rounded corners on boxes, is ignored if TTY mode is ON.
rounded_corners = true
#* Use terminal synchronized output sequences to reduce flickering on supported terminals.
terminal_sync = true
#* Default symbols to use for graph creation, "braille", "block" or "tty".
#* "braille" offers the highest resolution but might not be included in all fonts.
#* "block" has half the resolution of braille but uses more common characters.
#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY.
#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view.
graph_symbol = "braille"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_cpu = "default"
# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
graph_symbol_gpu = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_mem = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_net = "default"
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
graph_symbol_proc = "default"
#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
shown_boxes = "cpu mem net proc"
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
update_ms = 2000
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "cpu lazy"
#* Reverse sorting order, True or False.
proc_reversed = false
#* Show processes as a tree.
proc_tree = false
#* Use the cpu graph colors in the process list.
proc_colors = true
#* Use a darkening gradient in the process list.
proc_gradient = true
#* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
proc_per_core = false
#* Show process memory as bytes instead of percent.
proc_mem_bytes = true
#* Show cpu graph for each process.
proc_cpu_graphs = true
#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
proc_info_smaps = false
#* Show proc box on left side of screen instead of right.
proc_left = false
#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
proc_filter_kernel = false
#* Should the process list follow the selected process when detailed view is open.
proc_follow_detailed = true
#* In tree-view, always accumulate child process resources in the parent process.
proc_aggregate = false
#* Should cpu and memory usage display be preserved for dead processes when paused.
keep_dead_proc_usage = false
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.
cpu_graph_upper = "Auto"
#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.
cpu_graph_lower = "Auto"
#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
show_gpu_info = "Auto"
#* Toggles if the lower CPU graph should be inverted.
cpu_invert_lower = true
#* Set to True to completely disable the lower CPU graph.
cpu_single_graph = false
#* Show cpu box at bottom of screen instead of top.
cpu_bottom = false
#* Shows the system uptime in the CPU box.
show_uptime = true
#* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo.
show_cpu_watts = true
#* Show cpu temperature.
check_temp = true
#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
cpu_sensor = "Auto"
#* Show temperatures for cpu cores also if check_temp is True and sensors has been found.
show_coretemp = true
#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.
#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.
#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.
#* Example: "4:0 5:1 6:3"
cpu_core_map = ""
#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
temp_scale = "celsius"
#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
base_10_sizes = false
#* Show CPU frequency.
show_cpu_freq = true
#* How to calculate CPU frequency, available values: "first", "range", "lowest", "highest" and "average".
freq_mode = "first"
#* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
#* Special formatting: /host = hostname | /user = username | /uptime = system uptime
clock_format = "%X"
#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
background_update = true
#* Custom cpu model name, empty string to disable.
custom_cpu_name = ""
#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user"
disks_filter = ""
#* Show graphs instead of meters for memory values.
mem_graphs = true
#* Show mem box below net box instead of above.
mem_below_net = false
#* Count ZFS ARC in cached and available memory.
zfs_arc_cached = true
#* If swap memory should be shown in memory box.
show_swap = true
#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
swap_disk = true
#* If mem box should be split to also show disks info.
show_disks = true
#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
only_physical = true
#* Read disks list from /etc/fstab. This also disables only_physical.
use_fstab = true
#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
zfs_hide_datasets = false
#* Set to true to show available disk space for privileged users.
disk_free_priv = false
#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
show_io_stat = true
#* Toggles io mode for disks, showing big graphs for disk read/write speeds.
io_mode = false
#* Set to True to show combined read/write io graphs in io mode.
io_graph_combined = false
#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ".
#* Example: "/mnt/media:100 /:20 /boot:1".
io_graph_speeds = ""
#* Swap the positions of the upload and download speed graphs. When true, upload will be on top.
swap_upload_download = false
#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False.
net_download = 100
net_upload = 100
#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
net_auto = true
#* Sync the auto scaling for download and upload to whichever currently has the highest scale.
net_sync = true
#* Starts with the Network Interface specified here.
net_iface = ""
#* "True" shows bitrates in base 10 (Kbps, Mbps). "False" shows bitrates in binary sizes (Kibps, Mibps, etc.). "Auto" uses base_10_sizes.
base_10_bitrate = "Auto"
#* Show battery stats in top right if battery is present.
show_battery = true
#* Which battery to use if multiple are present. "Auto" for auto detection.
selected_battery = "Auto"
#* Show power stats of battery next to charge indicator.
show_battery_watts = true
#* Set loglevel for "~/.local/state/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
log_level = "WARNING"
#* Automatically save current settings to config file on exit.
save_config_on_exit = true
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
nvml_measure_pcie_speeds = true
#* Measure PCIe throughput on AMD cards, may impact performance on certain cards.
rsmi_measure_pcie_speeds = true
#* Horizontally mirror the GPU graph.
gpu_mirror_graph = true
#* Set which GPU vendors to show. Available values are "nvidia amd intel apple"
shown_gpus = "nvidia amd intel apple"
#* Custom gpu0 model name, empty string to disable.
custom_gpu_name0 = ""
#* Custom gpu1 model name, empty string to disable.
custom_gpu_name1 = ""
#* Custom gpu2 model name, empty string to disable.
custom_gpu_name2 = ""
#* Custom gpu3 model name, empty string to disable.
custom_gpu_name3 = ""
#* Custom gpu4 model name, empty string to disable.
custom_gpu_name4 = ""
#* Custom gpu5 model name, empty string to disable.
custom_gpu_name5 = ""
+45
View File
@@ -0,0 +1,45 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:font.dtd">
<fontconfig>
<!-- Enable typographic features of FiraCode font, for all applications. -->
<match target="font">
<test name="family" compare="contains" ignore-blanks="true" qual="any">
<string>FiraCode</string>
</test>
<edit name="fontfeatures" mode="append">
<string>ss02 on</string>
<string>cv19 on</string>
<string>cv23 on</string>
<string>ss08 on</string>
</edit>
</match>
<!-- Apply text rasterization, hinting, and anti-aliasing -->
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
<edit name="lcdfilter" mode="assign">
<const>lcddefault</const>
</edit>
</match>
<!-- FiraCode Nerd Font Mono as default monospace font -->
<match target="pattern">
<test name="family">
<string>monospace</string>
</test>
<edit name="family" mode="assign">
<string>FiraMono Nerd Font</string>
</edit>
</match>
</fontconfig>
+84
View File
@@ -0,0 +1,84 @@
# vim:ft=kitty
## name: Catppuccin-Macchiato
## author: Pocco81 (https://github.com/Pocco81)
## license: MIT
## upstream: https://github.com/catppuccin/kitty/blob/main/macchiato.conf
## blurb: Soothing pastel theme for the high-spirited!
# The basic colors
foreground #CAD3F5
background #24273A
selection_foreground #24273A
selection_background #F4DBD6
# Cursor colors
cursor #F4DBD6
cursor_text_color #24273A
# URL underline color when hovering with mouse
url_color #F4DBD6
# Kitty window border colors
active_border_color #B7BDF8
inactive_border_color #6E738D
bell_border_color #EED49F
# OS Window titlebar colors
wayland_titlebar_color system
macos_titlebar_color system
# Tab bar colors
active_tab_foreground #181926
active_tab_background #C6A0F6
inactive_tab_foreground #CAD3F5
inactive_tab_background #1E2030
tab_bar_background #181926
# Colors for marks (marked text in the terminal)
mark1_foreground #24273A
mark1_background #B7BDF8
mark2_foreground #24273A
mark2_background #C6A0F6
mark3_foreground #24273A
mark3_background #7DC4E4
# The 16 terminal colors
# black
color0 #494D64
color8 #5B6078
# red
color1 #ED8796
color9 #ED8796
# green
color2 #A6DA95
color10 #A6DA95
# yellow
color3 #EED49F
color11 #EED49F
# blue
color4 #8AADF4
color12 #8AADF4
# magenta
color5 #F5BDE6
color13 #F5BDE6
# cyan
color6 #8BD5CA
color14 #8BD5CA
# white
color7 #B8C0E0
color15 #A5ADCB
# Make kitty transparent
background_opacity 0.7
File diff suppressed because it is too large Load Diff
@@ -0,0 +1 @@
smb://10.10.10.5/ HOMESERVER
@@ -0,0 +1,18 @@
[Settings]
gtk-theme-name=Colloid-Dark-Catppuccin
gtk-icon-theme-name=Papirus-Dark
gtk-font-name=Inter 11
gtk-toolbar-style=GTK_TOOLBAR_BOTH
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-button-images=1
gtk-menu-images=1
gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=1
gtk-cursor-theme-name=Breeze_Light
gtk-cursor-theme-size=24
gtk-application-prefer-dark-theme=1
gtk-xft-antialias=1
gtk-xft-hinting=1
gtk-xft-hintstyle="hintslight"
gtk-xft-rgba="rgb"
+39
View File
@@ -0,0 +1,39 @@
[Default Applications]
x-scheme-handler/mailto=userapp-Thunderbird-3QI0S3.desktop
x-scheme-handler/mid=userapp-Thunderbird-3QI0S3.desktop
message/rfc822=userapp-Thunderbird-3QI0S3.desktop
x-scheme-handler/news=userapp-Thunderbird-AH40S3.desktop
x-scheme-handler/snews=userapp-Thunderbird-AH40S3.desktop
x-scheme-handler/nntp=userapp-Thunderbird-AH40S3.desktop
x-scheme-handler/feed=userapp-Thunderbird-WTV1S3.desktop
application/rss+xml=userapp-Thunderbird-WTV1S3.desktop
application/x-extension-rss=userapp-Thunderbird-WTV1S3.desktop
x-scheme-handler/webcal=userapp-Thunderbird-X7G9S3.desktop
x-scheme-handler/webcals=userapp-Thunderbird-X7G9S3.desktop
text/calendar=userapp-Thunderbird-X7G9S3.desktop
application/x-extension-ics=userapp-Thunderbird-X7G9S3.desktop
x-scheme-handler/net.thunderbird=userapp-Thunderbird-U229S3.desktop
x-scheme-handler/http=librewolf.desktop
x-scheme-handler/https=librewolf.desktop
text/html=librewolf.desktop
x-scheme-handler/about=librewolf.desktop
x-scheme-handler/unknown=librewolf.desktop
inode/directory=nemo.desktop
x-directory/normal=nemo.desktop
text/plain=nvim.desktop
[Added Associations]
x-scheme-handler/mailto=userapp-Thunderbird-3QI0S3.desktop;
x-scheme-handler/mid=userapp-Thunderbird-3QI0S3.desktop;
message/rfc822=userapp-Thunderbird-3QI0S3.desktop;
x-scheme-handler/news=userapp-Thunderbird-AH40S3.desktop;
x-scheme-handler/snews=userapp-Thunderbird-AH40S3.desktop;
x-scheme-handler/nntp=userapp-Thunderbird-AH40S3.desktop;
x-scheme-handler/feed=userapp-Thunderbird-WTV1S3.desktop;
application/rss+xml=userapp-Thunderbird-WTV1S3.desktop;
application/x-extension-rss=userapp-Thunderbird-WTV1S3.desktop;
x-scheme-handler/webcal=userapp-Thunderbird-X7G9S3.desktop;
x-scheme-handler/webcals=userapp-Thunderbird-X7G9S3.desktop;
text/calendar=userapp-Thunderbird-X7G9S3.desktop;
application/x-extension-ics=userapp-Thunderbird-X7G9S3.desktop;
x-scheme-handler/net.thunderbird=userapp-Thunderbird-U229S3.desktop;
+16
View File
@@ -0,0 +1,16 @@
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Templates"
XDG_PUBLICSHARE_DIR="$HOME/Public"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"
XDG_PROJECTS_DIR="$HOME/Projects"
+142
View File
@@ -0,0 +1,142 @@
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
# Which is equivalent to
format = """
{{ if eq .chezmoi.os "windows" }}|{{ else }}┏{{ end }} $status\
$fill\
$cmd_duration\
$line_break\
{{ if eq .chezmoi.os "windows"}}|{{ else }}┃{{ end }} $username\
$hostname\
$time\
$directory\
$git_branch\
$git_commit\
$git_state\
$git_status\
$fill\
$java\
$rust\
$lua\
$line_break\
{{ if eq .chezmoi.os "windows"}}|{{ else }}┗{{ end }} \
$jobs\
$shlvl$character\
$line_break"""
continuation_prompt = "[󱞩 ](white dimmed)"
[cmd_duration]
min_time = 1
show_milliseconds = true
format = "took [$duration]($style)"
style = "yellow"
[status]
format = "[$symbol exited with code $status (\\(SIG$signal_name\\))]($style)"
style = "yellow"
symbol = "[](bold red)"
not_executable_symbol = "[](bold red)"
not_found_symbol = "[󰍉](purple)"
success_symbol = "[󰄬](bold green)"
sigint_symbol = "[](bold yellow)"
signal_symbol = "[󱐋](bold purple)"
recognize_signal_code = true
map_symbol = true
pipestatus = true
disabled = false
[username]
show_always = true
style_root = "red inverted"
style_user = "cyan"
format = "[$user]($style)"
[hostname]
ssh_only = false
style = "green"
ssh_symbol = "󰖟"
format = "@[$ssh_symbol$hostname]($style) "
[directory]
truncation_length = 4
truncate_to_repo = true
format = "[$path]($style)[ $read_only]($read_only_style)"
style = "yellow"
read_only = "󰌾"
truncation_symbol = ".../"
use_logical_path = true
[git_branch]
always_show_remote = false
symbol = "󰘬"
style = "green bold"
format = "[$symbol $branch(:$remote_branch)]($style) "
[git_state]
style = "red bold"
[git_commit]
style = "blue"
only_detached = false
tag_disabled = false
tag_symbol = " 󰌕 "
format = "[($hash$tag)]($style) "
[git_status]
format = "([$all_status$ahead_behind]($style) )"
conflicted = " $count "
ahead = " $count "
behind = " $count "
diverged = " $behind_count behind, $ahead_count ahead "
renamed = " $count "
deleted = "󰧧 $count "
modified = " $count "
staged = " $count "
style = "red"
[java]
format = "[Java (${version} )]($style)"
style = "purple"
[rust]
format = "[Rust (${version} )]($style)"
style = "purple"
[lua]
format = "[Lua (${version} )]($style)"
style = "purple"
[fill]
symbol = " "
[jobs]
symbol = "+"
style = "blue"
format = "[$symbol$number]($style) "
[time]
disabled = false
style = "yellow dimmed"
[shlvl]
threshold = 0
format = '[$symbol]($style) '
symbol = '}'
repeat = true
repeat_offset = 1
style = "white"
disabled = false
[character]
{{ if eq .chezmoi.os "windows" -}}
success_symbol = "[>](green)"
error_symbol = "[>](purple)"
{{ else -}}
success_symbol = "[󰅂](green)"
error_symbol = "[󰅂](purple)"
{{ end -}}
+1
View File
@@ -0,0 +1 @@
en_GB
@@ -0,0 +1,14 @@
Xft/DPI 96
Xft/Antialias 1
Xft/Hinting 1
Xft/HintStyle "hintslight"
Xft/RGBA "rgb"
Gtk/CursorThemeName "Breeze_Light"
Gtk/CursorThemeSize 24
Gtk/FontName "Inter 11"
Gtk/ThemeName "Colloid-Dark-Catppuccin"
Gtk/IconThemeName "Papirus-Dark"
Gtk/ApplicationPreferDarkTheme 1