Sundry editing.

This commit is contained in:
cyteen 2024-05-12 07:37:15 +01:00
parent 0b39f3804c
commit 74e6942caf
1 changed files with 47 additions and 44 deletions

View File

@ -61,6 +61,7 @@ arm64)
;;
armhf)
EXTENSION="Debian12.armhf.deb"
;;
*)
echo "Unable to determine system architecture."
exit 1
@ -80,7 +81,8 @@ if [ $? -eq 0 ]; then
else
echo "Checksums do not match. Skipping installation."
fi
"Checksums do not match. Skipping installation."# conf_print_${PROJECT}() {
# conf_print_${PROJECT}() {
# cat <<'EOF'
# name: debian12
#
@ -345,48 +347,49 @@ fi
# EOF
# }
# # conf_print_wezterm_deploy
#
# conf_print_wezterm_theme_minimal() {
# cat <<-EOF
# local wezterm = require("wezterm")
# return {
# -- color_scheme = 'termnial.sexy',
# color_scheme = "Catppuccin Mocha",
# enable_tab_bar = false,
# font_size = 11.0,
# -- macos_window_background_blur = 40,
# macos_window_background_blur = 30,
#
# -- window_background_image = '/Users/omerhamerman/Downloads/3840x1080-Wallpaper-041.jpg',
# -- window_background_image_hsb = {
# -- brightness = 0.01,
# -- hue = 1.0,
# -- saturation = 0.5,
# -- },
# -- window_background_opacity = 0.92,
# window_background_opacity = 1.0,
# -- window_background_opacity = 0.78,
# -- window_background_opacity = 0.20,
# window_decorations = "RESIZE",
# keys = {
# {
# key = "f",
# mods = "CTRL",
# action = wezterm.action.ToggleFullScreen,
# },
# },
# mouse_bindings = {
# -- Ctrl-click will open the link under the mouse cursor
# {
# event = { Up = { streak = 1, button = "Left" } },
# mods = "CTRL",
# action = wezterm.action.OpenLinkAtMouseCursor,
# },
# },
# }
# EOF
# }
# conf_print_wezterm_theme_minimal | tee ${DEST}/.config/wezterm/wezterm.lua
WALLPAPER='${DEST}/Pictures/Wallpapers/1920x1200-Wallpaper-041.jpg'
conf_print_wezterm_theme_minimal() {
cat <<-EOF
local wezterm = require("wezterm")
return {
-- color_scheme = 'termnial.sexy',
color_scheme = "Catppuccin Mocha",
enable_tab_bar = false,
font_size = 11.0,
-- macos_window_background_blur = 40,
macos_window_background_blur = 30,
-- window_background_image = ${WALLPAPER}',
-- window_background_image_hsb = {
-- brightness = 0.01,
-- hue = 1.0,
-- saturation = 0.5,
-- },
-- window_background_opacity = 0.92,
window_background_opacity = 1.0,
-- window_background_opacity = 0.78,
-- window_background_opacity = 0.20,
window_decorations = "RESIZE",
keys = {
{
key = "f",
mods = "CTRL",
action = wezterm.action.ToggleFullScreen,
},
},
mouse_bindings = {
-- Ctrl-click will open the link under the mouse cursor
{
event = { Up = { streak = 1, button = "Left" } },
mods = "CTRL",
action = wezterm.action.OpenLinkAtMouseCursor,
},
},
}
EOF
}
conf_print_wezterm_theme_minimal | tee ${DEST}/.config/wezterm/wezterm.lua
# An extensive wezterm config, maybe too extensive, using tmux as default.
# and a complete set of aditional keymaps to learn.