Skip to content

Commit

Permalink
merged head
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Feb 5, 2016
2 parents f02b5af + 12c57fa commit da4efb4
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 220 deletions.
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -6,5 +6,8 @@ Uberwriter is a GTK+ based distraction free Markdown editor, mainly developed by
To use uberwriter, please make sure you have some dependencies installed:

- Pandoc, the program used to convert Markdown to basically anything else (the package name should be pandoc in most distributions)
- Use pip to install python dependencies: `sudo pip3 install -r requirements`
- Use pip to install python dependencies: `sudo pip3 install -r requirements.txt`
- Of course, gtk3 etc. needs to be installed as well since this is a gtk application
- Please find these packages on your distribution: `python3 python3-regex python3-distutils-extra python3-levenshtein python3-enchant python3-gi python3-cairo`

It should be possible to install UberWriter with `sudo python3 setup.py install --root=/`
21 changes: 14 additions & 7 deletions data/media/style.css
Expand Up @@ -39,11 +39,19 @@
.uberwriter_window {
gtk-key-bindings: window-bindings;
/*border-radius: 7px 7px 3px 3px;*/
background: @light_editor_bg;
}

.uberwriter_window.small .uberwriter-editor {
font: Inconsolata 12;
}
.uberwriter_window GtkGrid {
background-color: @light_editor_bg;
}

#UberwriterWindow.small .uberwriter-editor {
font: Fira Mono 10;
.uberwriter_window.dark_mode GtkGrid,
.uberwriter_window.dark_mode GtkScrolledWindow {
background-color: @dark_bg;
}

#UberwriterWindow.medium .uberwriter-editor {
Expand All @@ -65,25 +73,24 @@
padding: 0;
}

#UberwriterWindow.dark_mode {
.uberwriter_window.dark_mode {
background: #333;
}

#UberwriterWindow.dark_mode .uberwriter-editor {
.uberwriter_window.dark_mode .uberwriter-editor {
color: #CCC;
background: @dark_bg;
-GtkWidget-cursor-color: shade(#4D9FCE, 0.9);
}

.scrollbars-junction,
.scrollbar.trough {
background-color: transparent;
background: transparent;
}

.uberwriter-editor {
border: none;
background: @light_editor_bg;
/*background: und-color: transparent;*/
background-color: transparent;
color: #222;
-GtkWidget-cursor-color: shade(#4D9FCE, 0.9);
-GtkWidget-cursor-aspect-ratio: 0.1;
Expand Down
5 changes: 5 additions & 0 deletions debian/changelog
@@ -1,3 +1,8 @@
uberwriter (15.05.01-publicubuntu3) vivid; urgency=medium

* some fixes for ubuntu gtk :)

-- Wolf Vollprecht <w.vollprecht@gmail.com> Wed, 20 May 2015 00:03:00 +0200
uberwriter (14.09.08-publicubuntu3) trusty; urgency=medium

* added missing dependency
Expand Down

0 comments on commit da4efb4

Please sign in to comment.