Skip to content

Commit d9a748a

Browse files
committed
Update repo path.
1 parent ad88743 commit d9a748a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ $ wget https://git.io/jggg -O - | sh
3737
2. Create `~/.tmux.conf` with
3838

3939
```tmux
40-
# razor-x/tmuxrc
40+
# rxrc/tmuxrc
4141

4242
if-shell "test -f ~/.tmux/plugins/tmuxrc/plugins.conf" "source ~/.tmux/plugins/tmuxrc/plugins.conf"
43-
if-shell "test ! -f ~/.tmux/plugins/tmuxrc/plugins.conf" "set -g @tpm_plugins 'tmux-plugins/tpm razor-x/tmuxrc'"
43+
if-shell "test ! -f ~/.tmux/plugins/tmuxrc/plugins.conf" "set -g @tpm_plugins 'tmux-plugins/tpm rxrc/tmuxrc'"
4444
run-shell '~/.tmux/plugins/tpm/tpm'
4545
if-shell "test -f ~/.tmuxline.conf" "source ~/.tmuxline.conf"
4646
```
@@ -70,7 +70,7 @@ You can customize this configuration or manage your own in the same way.
7070
it has the same structure and development tools but with
7171
a very minimal configuration.
7272
Tagged releases are based on that branch.
73-
2. Replace any instance of `razor-x/tmuxrc`
73+
2. Replace any instance of `rxrc/tmuxrc`
7474
with the path to your repository's location.
7575
If you do not host this on GitHub,
7676
you may need to adjust the repository path appropriately.
@@ -81,7 +81,7 @@ You can customize this configuration or manage your own in the same way.
8181
Here is an example of a command you can use to make replacements:
8282

8383
```bash
84-
$ git ls-files -z | xargs -0 sed -i 's/razor-x\/tmuxrc/username\/tmuxrc/g'
84+
$ git ls-files -z | xargs -0 sed -i 's/rxrc\/tmuxrc/username\/tmuxrc/g'
8585
```
8686

8787
## Contributing
@@ -90,7 +90,7 @@ Please submit and comment on bug reports and feature requests.
9090

9191
To submit a patch:
9292

93-
1. Fork it (https://github.com/razor-x/tmuxrc/fork).
93+
1. Fork it (https://github.com/rxrc/tmuxrc/fork).
9494
2. Create your feature branch (`git checkout -b my-new-feature`).
9595
3. Make changes.
9696
4. Commit your changes (`git commit -am 'Add some feature'`).

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828

2929
if [ -f ~/.tmux.conf ] || [ -h ~/.tmux.conf ]; then
3030
TMUXRC_LINE=$(head -n 1 ~/.tmux.conf);
31-
if [ "$TMUXRC_LINE" != '# razor-x/tmuxrc' ]; then
31+
if [ "$TMUXRC_LINE" != '# rxrc/tmuxrc' ]; then
3232
echo -e " ➤ Exists ❰ ~/.tmux.conf ❱ \033[0m"
3333

3434
mv ~/.tmux.conf ~/.tmux.conf.preinstall
@@ -42,10 +42,10 @@ fi
4242
echo -e " ➤ Installing ❰ ~/.tmux.conf ❱ \033[0m"
4343

4444
tee ~/.tmux.conf >/dev/null <<EOF
45-
# razor-x/tmuxrc
45+
# rxrc/tmuxrc
4646
4747
if-shell "test -f ~/.tmux/plugins/tmuxrc/plugins.conf" "source ~/.tmux/plugins/tmuxrc/plugins.conf"
48-
if-shell "test ! -f ~/.tmux/plugins/tmuxrc/plugins.conf" "set -g @tpm_plugins 'tmux-plugins/tpm razor-x/tmuxrc'"
48+
if-shell "test ! -f ~/.tmux/plugins/tmuxrc/plugins.conf" "set -g @tpm_plugins 'tmux-plugins/tpm rxrc/tmuxrc'"
4949
run-shell '~/.tmux/plugins/tpm/tpm'
5050
if-shell "test -f ~/.tmuxline.conf" "source ~/.tmuxline.conf"
5151
EOF

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "tmux configuration.",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/razor-x/tmuxrc.git"
8+
"url": "https://github.com/rxrc/tmuxrc.git"
99
},
1010
"keywords": [
1111
"tmux",
@@ -15,7 +15,7 @@
1515
"author": "Evan Sosenko",
1616
"license": "MIT",
1717
"bugs": {
18-
"url": "https://github.com/razor-x/tmuxrc/issues"
18+
"url": "https://github.com/rxrc/tmuxrc/issues"
1919
},
20-
"homepage": "https://github.com/razor-x/tmuxrc"
20+
"homepage": "https://github.com/rxrc/tmuxrc"
2121
}

plugins.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
set -g @tpm_plugins ' \
22
tmux-plugins/tpm \
33
tmux-plugins/tmux-sensible \
4-
razor-x/tmuxrc \
4+
rxrc/tmuxrc \
55
'

0 commit comments

Comments
 (0)