dotfiles: leviathan: arch-openbox-20231010

This commit is contained in:
2023-10-10 20:44:53 -05:00
commit 0792b14382
390 changed files with 48601 additions and 0 deletions

9
.config/sbp/colors.conf Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Color configuration for the segments.
# See src/colors/*.bash for the color values
# All segments colors have default values in src/config/colors.conf
# This is how you override them:
# SEGMENTS_TIMESTAMP_COLOR_PRIMARY=$color2
# SEGMENTS_TIMESTAMP_COLOR_SECONDARY=$color5

25
.config/sbp/hook.log Normal file
View File

@ -0,0 +1,25 @@
[23.09.10 03:52:16] [rescuetime.bash - segments::rescuetime_refresh]: No cache folder
[23.09.10 03:52:16] [rescuetime.bash - segments::rescuetime_refresh]: RESCUETIME_API_KEY not set
[23.09.10 03:52:16] [wttr.bash - segments::wttr_refresh]: No cache folder
[23.09.10 03:52:17] [wttr.bash - segments::wttr_fetch_changes]: wttr fetch return code 0
[23.09.10 03:52:17] [wttr.bash - segments::wttr_fetch_changes]: wttr fetch content 0.0mm;+55°F;↗11mph
[23.09.10 04:06:03] [rescuetime.bash - segments::rescuetime_refresh]: No cache folder
[23.09.10 04:06:03] [rescuetime.bash - segments::rescuetime_refresh]: RESCUETIME_API_KEY not set
[23.09.10 04:06:03] [wttr.bash - segments::wttr_fetch_changes]: wttr fetch return code 0
[23.09.10 04:06:03] [wttr.bash - segments::wttr_fetch_changes]: wttr fetch content 0.0mm;+55°F;↗11mph
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached
Error calling StartServiceByName for org.freedesktop.Notifications: Timeout was reached

36
.config/sbp/settings.conf Normal file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env bash
SBP_THEME_COLOR='default-256'
SBP_THEME_LAYOUT='lines'
# Hooks will run once before every prompt
# Run 'sbp list hooks' to list all available hooks
SBP_HOOKS=('alert')
# Segments are generated before each prompt and can
# be added, removed and reordered
# Run 'sbp list segments' to list all available segments
# Maybe you don't want to run all segments when in
# a small window?
#if [[ "$COLUMNS" -le 120 ]]; then
# Let's adjust to the smaller screen
SBP_THEME_LAYOUT='lines'
SBP_SEGMENTS_LEFT=('host' 'path' 'git' 'command')
# SBP_SEGMENTS_RIGHT=('timestamp')
#else
# SBP_SEGMENTS_LEFT=('host' 'path' 'python_env' 'k8s' 'git' 'nix')
# SBP_SEGMENTS_RIGHT=('command' 'timestamp')
# SBP_SEGMENTS_LINE_TWO=('prompt_ready')
#fi
# Segment specific settings
SEGMENTS_K8S_DEFAULT_USER="$USER"
SEGMENTS_K8S_HIDE_CLUSTER=0
SEGMENTS_LOAD_THRESHOLD=50
SEGMENTS_LOAD_THRESHOLD_HIGH=80
SEGMENTS_RESCUETIME_REFRESH_RATE=600
SEGMENTS_TIMESTAMP_FORMAT="%H:%M:%S"
SEGMENTS_WTTR_LOCATION='Fort Worth'
SEGMENTS_WTTR_FORMAT='%p;%t;%w'
# vim: set ft=bash: