Giter VIP home page Giter VIP logo

todolydo's Introduction

Todolydo - Open Source Todo App

A simple Todo application made with electron! But hey! Let's make this an awesome open source todo application for computers!

screenshot of todo application!

Adding themes

If you want to contribute to this project with a theme. Follow this guide.

Begin by creating a new folder with the name of your theme in the themes folder. After that add your css file with the same format as your folder. For example if we make a theme called awesomeTheme our path from the app folder would be. ./themes/awesomeTheme/awesomeTheme.css.

The HTML you can modify looks like this.

<div  class="container">
	<h1>TODOLYDO</h1>
	<input
	id="newTodo"
	type="text"
	placeholder="Write task, press ENTER"
	onkeypress="handleKeyPress(event)"
	/>
	<div  id="todos"  class="todos">
		<!--EXAMPLE TODO FOR THEME GUIDE -->
		<div id="todos" class="todos">
			<div class="todo" id="0">
				<div class="text">
					I'm a todo!
				</div>
				<div class="button" onclick="removeTodo(event)">
					<img src="./remove.svg" alt="trash icon">
				</div>
			</div>
		</div>
	</div>
</div>

When you've your dream theme and added your new folder with its css. You have to add your theme into an array in our main.js

// Array used to keep track of the themes. Used in menu.
const  themesAvailable = [
	...
	"awesomeTheme",
];

When you have completed all of the steps you should create a pull request!

More features?

I think we need some more features, if you have any ideas post an issue where you explain your feature.

todolydo's People

Contributors

pluppen avatar

Watchers

 avatar

todolydo's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.