-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed txt_app_launcher -> sample_app_launcher
No longer text-based
- Loading branch information
Showing
9 changed files
with
55 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A simple app launcher sample widget |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
6 changes: 3 additions & 3 deletions
6
...ts/txt_app_launcher/txt_app_launcher.json → ...ple_app_launcher/sample_app_launcher.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.