├── README.md ├── gtk.css ├── install.sh └── screenshot.png /README.md: -------------------------------------------------------------------------------- 1 | # Adwaita Rounded 2 | 3 | Just a patch to make the bottom corners rounded. (and add some padding to the gnome-terminal too ;). 4 | 5 | ![screenshot](./screenshot.png) 6 | 7 | ### Some information 8 | 9 | - Make sure to use the default background colors for your gnome-terminal. 10 | - This 'patch' is a workaround, the corners must be fixed at the core of programs (as far as I know). 11 | - Since this is a workaround, I don't recommend it for everyone, just people who really dislikes the square corners and use the default Adwaita theme, without tweaks. 12 | 13 | ### How to install 14 | 15 | Just run the install.sh script 16 | 17 | ``` 18 | git clone https://github.com/owozsh/adwaita-rounded.git 19 | cd adwaita-rounded 20 | ./install.sh 21 | ``` 22 | 23 | To uninstall, just remove the gtk.css file from your ~/.config/gtk-3.0/. 24 | -------------------------------------------------------------------------------- /gtk.css: -------------------------------------------------------------------------------- 1 | /*** TERMINAL ***/ 2 | 3 | terminal-screen-container box { 4 | padding: 30px; 5 | } 6 | 7 | terminal-window { 8 | background-color: #1e1e1e; 9 | border-radius: 0 0 8px 8px; 10 | } 11 | 12 | terminal-window decoration { 13 | border-radius: 8px; 14 | } 15 | 16 | terminal-window stack { 17 | background: none; 18 | } 19 | 20 | /*** NAUTILUS ***/ 21 | 22 | window decoration { 23 | border-radius: 8px; 24 | } 25 | 26 | window { 27 | border-radius: 0 0 8px 8px; 28 | } 29 | 30 | window.nautilus-window grid paned box placessidebar viewport list { 31 | background-color: rgba(180, 180, 180, 0.05); 32 | border-radius: 0 0 8px 8px; 33 | } 34 | 35 | window.nautilus-window grid paned overlay notebook stack, window.nautilus-window grid paned overlay notebook, window.nautilus-window grid paned overlay scrolledwindow treeview { 36 | border-radius: 0 0 8px 8px; 37 | } 38 | 39 | window.nautilus-window grid paned box placessidebar { 40 | background-color: rgba(0,0,0,0); 41 | border-radius: 8px; 42 | } 43 | 44 | /*** SETTINGS ***/ 45 | 46 | leaflet box scrolledwindow, leaflet box scrolledwindow viewport stack list { 47 | border-radius: 0 0 0 8px; 48 | } 49 | 50 | leaflet box scrolledwindow viewport stack list { 51 | background-color: rgba(255, 255, 255, 0.0); 52 | } 53 | 54 | leaflet stack { 55 | border-radius: 0 0 8px 0; 56 | } 57 | 58 | /*** TWEAKS ***/ 59 | 60 | list.tweak-categories { 61 | border-radius: 0 0 0 8px; 62 | } 63 | 64 | /*** EVINCE ***/ 65 | 66 | evview, iconview { 67 | border-radius: 0 0 8px 8px; 68 | } 69 | 70 | /*** APOSTROPHE ***/ 71 | 72 | .apostrophe-window.focus { 73 | border-radius: 8px; 74 | } 75 | 76 | /*** SIDEBAR LIST ***/ 77 | 78 | list.sidebar { 79 | border-radius: 0 0 0 8px; 80 | } 81 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp -i ./gtk.css ~/.config/gtk-3.0/gtk.css 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/adwaita-rounded/ffb04b803f25de2894dad0d36a9912657df622c2/screenshot.png --------------------------------------------------------------------------------