├── .gitattributes ├── Dark └── dock.theme ├── Light └── dock.theme ├── readme.md └── showcase.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /Dark/dock.theme: -------------------------------------------------------------------------------- 1 | # Plank dark theme 2 | # Denis Jakoša 3 | 4 | [PlankDrawingTheme] 5 | #The roundness of the top corners. 6 | TopRoundness=6 7 | #The roundness of the bottom corners. 8 | BottomRoundness=0 9 | #The thickness (in pixels) of lines drawn. 10 | LineWidth=0 11 | #The color (RGBA) of the outer stroke. 12 | OuterStrokeColor=255;;255;;255;;125 13 | #The starting color (RGBA) of the fill gradient. 14 | FillStartColor=115;;111;;110;;200 15 | #The ending color (RGBA) of the fill gradient. 16 | FillEndColor=115;;111;;110;;230 17 | #The color (RGBA) of the inner stroke. 18 | InnerStrokeColor=255;;255;;255;;120 19 | 20 | [PlankDrawingDockTheme] 21 | #The padding on the left/right dock edges, in tenths of a percent of IconSize. 22 | HorizPadding=2.67 23 | #The padding on the top dock edge, in tenths of a percent of IconSize. 24 | TopPadding=1.67 25 | #The padding on the bottom dock edge, in tenths of a percent of IconSize. 26 | BottomPadding=2 27 | #The padding between items on the dock, in tenths of a percent of IconSize. 28 | ItemPadding=2 29 | #The size of item indicators, in tenths of a percent of IconSize. 30 | IndicatorSize=20 31 | #The size of the icon-shadow behind every item, in tenths of a percent of IconSize. 32 | IconShadowSize=0.2 33 | #The height (in percent of IconSize) to bounce an icon when the application sets urgent. 34 | UrgentBounceHeight=1.5 35 | #The height (in percent of IconSize) to bounce an icon when launching an application. 36 | LaunchBounceHeight=0.5 37 | #The opacity value (0 to 1) to fade the dock to when hiding it. 38 | FadeOpacity=1 39 | #The amount of time (in ms) for click animations. 40 | ClickTime=300 41 | #The amount of time (in ms) to bounce an urgent icon. 42 | UrgentBounceTime=600 43 | #The amount of time (in ms) to bounce an icon when launching an application. 44 | LaunchBounceTime=600 45 | #The amount of time (in ms) for active window indicator animations. 46 | ActiveTime=300 47 | #The amount of time (in ms) to slide icons into/out of the dock. 48 | SlideTime=300 49 | #The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). 50 | FadeTime=250 51 | #The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). 52 | HideTime=150 53 | #The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. 54 | GlowSize=20 55 | #The total time (in ms) to show the hidden-dock urgent glow. 56 | GlowTime=10000 57 | #The time (in ms) of each pulse of the hidden-dock urgent glow. 58 | GlowPulseTime=2000 59 | #The hue-shift (-180 to 180) of the urgent indicator color. 60 | UrgentHueShift=150 61 | #The time (in ms) to move an item to its new position. 62 | ItemMoveTime=400 63 | -------------------------------------------------------------------------------- /Light/dock.theme: -------------------------------------------------------------------------------- 1 | # Plank light theme 2 | # Denis Jakoša 3 | 4 | [PlankDrawingTheme] 5 | #The roundness of the top corners. 6 | TopRoundness=6 7 | #The roundness of the bottom corners. 8 | BottomRoundness=0 9 | #The thickness (in pixels) of lines drawn. 10 | LineWidth=0 11 | #The color (RGBA) of the outer stroke. 12 | OuterStrokeColor=255;;255;;255;;125 13 | #The starting color (RGBA) of the fill gradient. 14 | FillStartColor=255;;255;;255;;200 15 | #The ending color (RGBA) of the fill gradient. 16 | FillEndColor=150;;160;;190;;220 17 | #The color (RGBA) of the inner stroke. 18 | InnerStrokeColor=255;;255;;255;;120 19 | 20 | [PlankDrawingDockTheme] 21 | #The padding on the left/right dock edges, in tenths of a percent of IconSize. 22 | HorizPadding=2.67 23 | #The padding on the top dock edge, in tenths of a percent of IconSize. 24 | TopPadding=1.67 25 | #The padding on the bottom dock edge, in tenths of a percent of IconSize. 26 | BottomPadding=2 27 | #The padding between items on the dock, in tenths of a percent of IconSize. 28 | ItemPadding=2 29 | #The size of item indicators, in tenths of a percent of IconSize. 30 | IndicatorSize=8 31 | #The size of the icon-shadow behind every item, in tenths of a percent of IconSize. 32 | IconShadowSize=0 33 | #The height (in percent of IconSize) to bounce an icon when the application sets urgent. 34 | UrgentBounceHeight=1.5 35 | #The height (in percent of IconSize) to bounce an icon when launching an application. 36 | LaunchBounceHeight=0.5 37 | #The opacity value (0 to 1) to fade the dock to when hiding it. 38 | FadeOpacity=1 39 | #The amount of time (in ms) for click animations. 40 | ClickTime=300 41 | #The amount of time (in ms) to bounce an urgent icon. 42 | UrgentBounceTime=600 43 | #The amount of time (in ms) to bounce an icon when launching an application. 44 | LaunchBounceTime=600 45 | #The amount of time (in ms) for active window indicator animations. 46 | ActiveTime=300 47 | #The amount of time (in ms) to slide icons into/out of the dock. 48 | SlideTime=300 49 | #The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). 50 | FadeTime=250 51 | #The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). 52 | HideTime=150 53 | #The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. 54 | GlowSize=20 55 | #The total time (in ms) to show the hidden-dock urgent glow. 56 | GlowTime=10000 57 | #The time (in ms) of each pulse of the hidden-dock urgent glow. 58 | GlowPulseTime=2000 59 | #The hue-shift (-180 to 180) of the urgent indicator color. 60 | UrgentHueShift=150 61 | #The time (in ms) to move an item to its new position. 62 | ItemMoveTime=400 63 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # elementary OS plank themes 2 | 3 | Flat plank themes for elementary OS freya. As they're derived from default theme they're the perfect replacement for stock theme. 4 | 5 | ![Showcase](https://raw.githubusercontent.com/DJakosa/plank-light/master/showcase.png) 6 | 7 | *Download elementary OS freya from https://elementary.io/. Like right now. It's free, it's stable, it's fast, it's open source and it just works.* 8 | 9 | # Usage 10 | 11 | There is no installer yet. It will be. 12 | 13 | 1. Copy theme in /usr/share/plank/themes (e.g. sudo mv ~/path-to-theme/Light /usr/share/plank/themes/Light) 14 | 2. Set user rights (e.g. sudo chown -R root:root /usr/share/plank/themes/Light) 15 | 3. Apply theme with elementary tweaks. 16 | -------------------------------------------------------------------------------- /showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJakosa/plank-themes/793cf28812f5ad061c040baa5bd75d84b38746df/showcase.png --------------------------------------------------------------------------------