Compare commits

...

2 Commits

Author SHA1 Message Date
d5dc5f651e merge 2025-10-24 20:54:54 +00:00
0a4c5c39f9 configs 2025-10-24 20:53:57 +00:00
3 changed files with 10 additions and 4 deletions

View File

@@ -6,11 +6,12 @@ PACKAGES=(
linux base linux-firmware lvm2 sudo polkit # base
pulseaudio pulseaudio-bluetooth bluez bluez-utils networkmanager udisks2 # device management
openssh strace sysstat htop screen man-db which rlwrap # system
openssh strace sysstat htop screen man-db which # system
nodejs dash jq # runtime
qemu-system-x86 # virt
rlwrap fzf # shell helpers
vifm vim less # nav & edit
vim-ale vim-fugitive # vim plugins

View File

@@ -62,4 +62,10 @@ c.url.default_page = 'file:///home/'+env['USER']+'/.local/share/qutebrowser/star
c.url.start_pages = ['file:///home/'+env['USER']+'/.local/share/qutebrowser/start.html']
########################################
# downloads
c.downloads.location.directory = "~/tmp/"
c.downloads.location.prompt = False
c.downloads.remove_finished = 10000
########################################
#print(f"Execution time {time.time() - start_ts}")

View File

@@ -48,7 +48,7 @@ mkdir -p "${USER_DIRS[@]}"
########## scripts #############
cp -rf bin/* ~/.local/bin
LN_EXCLUDE_DIRS=(i3blocks bemenu sway fzf)
LN_EXCLUDE_DIRS=(i3blocks bemenu sway)
ln_exclude_dirs_cmp=" ${LN_EXCLUDE_DIRS[*]} "
for sdir in bin/*; do
@@ -73,7 +73,6 @@ gomplate --input-dir config \
-c user="file:///$HOME/.config/workspace.conf?type=application/x-env" \
--exclude /workspace.conf \
--exclude /workspace-compat/* --exclude !/workspace-compat/env.sh
ln -sf ~/.config/bash/bashrc ~/.bashrc
ln -sf ~/.config/profile ~/.profile
ln -sf ~/.config/less/lesskey ~/.lesskey
@@ -82,7 +81,7 @@ mkdir -p ~/.gnupg && ln -sf ~/.config/gnupg/gpg-agent.conf ~/.gnupg
############# data ############
gomplate --input-dir data \
--output-map "$HOME/.config/{{ .in | strings.ReplaceAll \".tmpl\" \"\" }}" \
--output-map "$HOME/.local/share/{{ .in | strings.ReplaceAll \".tmpl\" \"\" }}" \
--exclude-processing "!*.tmpl" \
-c theme=config/theme.json
###############################