Skip to content

Commit

Permalink
Add Timeshift (#41)
Browse files Browse the repository at this point in the history
* Add deadlinks bash script from Mint-X icon theme

Update README

* Add timeshift

Add src directory for svg icons and add timeshift.svg

Timeshift SVG icon based on https://github.com/snwh/moka-icon-theme/blob/master/src/K/kile.svg

Compiled with render-bitmaps.py script from Moka Icons Theme to get nice and beatiful png icons
  • Loading branch information
NikoKrause authored and clefebvre committed Nov 20, 2017
1 parent 605db78 commit 110659e
Show file tree
Hide file tree
Showing 11 changed files with 774 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Credits
=======

The application and category icons originate from the Moka icon theme:
Link: https://github.com/moka-project/moka-icon-theme
Author: Sam Hewitt <[email protected]>
License: Creative Commons Attribution-ShareAlike 4.0 (https://creativecommons.org/licenses/by-sa/4.0)
* Link: https://github.com/moka-project/moka-icon-theme
* Author: Sam Hewitt <[email protected]>
* License: Creative Commons Attribution-ShareAlike 4.0 (https://creativecommons.org/licenses/by-sa/4.0)

The folder icons originate from the Arc icon theme:
Link: https://github.com/horst3180/arc-icon-theme
Author: horst3180 http://horst3180.deviantart.com
* Link: https://github.com/horst3180/arc-icon-theme
* Author: horst3180 http://horst3180.deviantart.com

License
=======
Expand All @@ -25,7 +25,7 @@ To find circular symbolic links:

find . -follow -printf ""

To find broken links:
To find broken links use `./deadlinks` or:

find -L usr/ -type l

Expand Down
6 changes: 6 additions & 0 deletions deadlinks
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

for l in `find usr -type l -xtype l`; do
echo "$l -> `readlink -nq "$l"`"
done

Loading

0 comments on commit 110659e

Please sign in to comment.