mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-12-17 12:27:22 +00:00
Debian desktop environment updates
- Update qutebrowser config - Remove typescript linter 'typecheck' - Add debian preseed configuration - Change gtk theme - Change vagrant source - Refactor sync script
This commit is contained in:
parent
a523e0d122
commit
e3f1d1e1b5
6 changed files with 469 additions and 28 deletions
13
sync
13
sync
|
|
@ -12,7 +12,7 @@ function main
|
|||
|
||||
sync_terminal_env
|
||||
|
||||
sync_desktop_env
|
||||
set_fish_universal_vars
|
||||
|
||||
set_kitty_font_size $uname
|
||||
|
||||
|
|
@ -20,11 +20,11 @@ function main
|
|||
|
||||
install_nvim_plugins
|
||||
|
||||
set_color normal
|
||||
|
||||
set_git_user
|
||||
|
||||
set_fish_universal_vars
|
||||
sync_desktop_env
|
||||
|
||||
set_color normal
|
||||
|
||||
clean_up_tmp_space $cwd $start_dir
|
||||
|
||||
|
|
@ -54,9 +54,10 @@ end
|
|||
|
||||
function sync_desktop_env
|
||||
set prompt 'Would you like to sync the desktop environment?'
|
||||
read -p "set_color red; printf '\n$prompt (Y/n) '; set_color normal" sync_desktop_env
|
||||
read -p "set_color red; printf '\n$prompt (y/N) '; set_color normal" sync_desktop_env
|
||||
|
||||
if test -z "$sync_desktop_env"; or test "$sync_desktop_env" = 'y'; or test "$sync_desktop_env" = 'Y'
|
||||
if test "$sync_desktop_env" = 'y'; or test "$sync_desktop_env" = 'Y'
|
||||
set_color grey
|
||||
rsync -aP ./.config/kitty ~/.config/
|
||||
rsync -aP ./.config/bspwm ~/.config/
|
||||
rsync -aP ./.config/sxhkd ~/.config/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue