Skip to content

Commit

Permalink
Renamed txt_app_launcher -> sample_app_launcher
Browse files Browse the repository at this point in the history
No longer text-based
  • Loading branch information
r52 committed May 25, 2017
1 parent 83a7003 commit ec0a540
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 39 deletions.
1 change: 1 addition & 0 deletions widgets/sample_app_launcher/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A simple app launcher sample widget
1 change: 1 addition & 0 deletions widgets/sample_app_launcher/img/chrome.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions widgets/sample_app_launcher/img/spotify.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions widgets/sample_app_launcher/img/steam.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions widgets/sample_app_launcher/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>AppLauncher</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<style>
body {
user-select: none;
user-drag: none;
background-color: transparent;
overflow: hidden;
}

a {
display: block;
width: 50px;
height: 50px;
filter: drop-shadow( 1px 1px 0px #eee );
}

#chrome {
background: url(img/chrome.svg);
background-size: 50px 50px;
}

#steam {
background: url(img/steam.svg);
background-size: 50px 50px;
}

#spotify {
background: url(img/spotify.svg);
background-size: 50px 50px;
}
</style>
</head>

<body>
<div><a id="chrome" href="#chrome"></a></div>
<div><a id="steam" href="#steam"></a></div>
<div><a id="spotify" href="#spotify"></a></div>
<script src="js/script.js"></script>
</body>

</html>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "txt_app_launcher",
"width": 150,
"height": 150,
"name": "sample_app_launcher",
"width": 60,
"height": 200,
"startFile": "index.html",
"transparentBg": true,
"clickable": true
Expand Down
1 change: 0 additions & 1 deletion widgets/txt_app_launcher/README.txt

This file was deleted.

35 changes: 0 additions & 35 deletions widgets/txt_app_launcher/index.html

This file was deleted.

0 comments on commit ec0a540

Please sign in to comment.