-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
35 lines (25 loc) · 999 Bytes
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# RStudio Adwaita Dark Theme <!-- <img src="figures/logo.png" align="right" width="120" /> -->
<!-- badges: start -->
<!-- badges: end -->
## Overview
Qt style sheet (Adwaita) for RStudio as well as custom editor theme (Darkula).
## Installation
The Qt style sheet can be installed by running the `INSTALL` script or by manually running
```bash
sudo cp rstudio-gnome-dark.qss /usr/lib/rstudio/resources/stylesheets/rstudio-gnome-dark.qss
```
To install the custom editor theme, go in RStudio Global Options > Appearance and click on <kbd>Add...</kbd> and add DarkulaAdwaita.rstheme.
Alternatively, run the snippet in the RStudio console to install and apply Darkula Adwaita:
```r
rstudioapi::addTheme("https://raw.githubusercontent.com/aldomann/rstudio-adwaita-dark-theme/master/DarkulaAdwaita.rstheme", apply=TRUE, force=TRUE)
```