https://github.com/etiennebacher/ambiance
Easily Change RStudio Theme
https://github.com/etiennebacher/ambiance
Last synced: 7 days ago
JSON representation
Easily Change RStudio Theme
- Host: GitHub
- URL: https://github.com/etiennebacher/ambiance
- Owner: etiennebacher
- License: other
- Created: 2021-01-11T18:16:11.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T16:19:47.000Z (about 4 years ago)
- Last Synced: 2025-02-06T21:12:12.099Z (15 days ago)
- Language: R
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - etiennebacher/ambiance - Easily Change RStudio Theme (R)
README
# ambiance
The goal of `{ambiance}` is to easily switch themes in RStudio. This is useful if you use different themes when you teach and when you work on personal projects for example.
## Installation
You can install the development version of `{ambiance}` with:
``` r
# install.packages("devtools")
devtools::install_github("etiennebacher/ambiance")
```## How to use
1. Define different ambiances by creating a vector with the name of the ambiance first and then the name of the RStudio theme:
```r
define_ambiances(
list(
c("class", "textmate (default)"),
c("perso", "cobalt")
)
)
```2. Apply a specific theme with the name of an ambiance you defined:
```r
ambiance("perso")
```