From 66b454f880d0775929d52e1a94175c26365052db Mon Sep 17 00:00:00 2001 From: Atreya Bain Date: Tue, 4 Nov 2025 09:32:28 +0000 Subject: [PATCH] [init] --- README.md | 21 +++++++++++++++++++++ sync-to-desktop.sh | 0 sync-to-repo.sh | 4 ++++ 3 files changed, 25 insertions(+) create mode 100644 README.md create mode 100644 sync-to-desktop.sh create mode 100644 sync-to-repo.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..8dea713 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# dotfiles + +Simple collection of config files. + +## Usage + +Clone this repository and use the two scripts to manage the real desktop ones. + +Usually this is done by symlinking, but this works as these are usually one-time setups. + +- `sync-to-desktop.sh` -> Push configs into the desktop configs. +- `sync-to-repo.sh` -> Update configs into this repo. Use it to pull changes here after making config changes in-place (E.g. If `~/.config/zed/settings.json` was changed, pull it back here). + + +### What's in here? + +|Item|What I use| +|---|---| +|Desktop| sway| +|Editor|zed| +|Font|[Monocraft](https://github.com/IdreesInc/Monocraft)| diff --git a/sync-to-desktop.sh b/sync-to-desktop.sh new file mode 100644 index 0000000..e69de29 diff --git a/sync-to-repo.sh b/sync-to-repo.sh new file mode 100644 index 0000000..496d41c --- /dev/null +++ b/sync-to-repo.sh @@ -0,0 +1,4 @@ +#! /bin/bash + +rsync -avp ~/.config/zed ./zed +rsync -avp ~/.config/sway ./sway