-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
605db78
commit 110659e
Showing
11 changed files
with
774 additions
and
6 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 |
---|---|---|
|
@@ -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 | ||
======= | ||
|
@@ -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 | ||
|
||
|
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,6 @@ | ||
#!/bin/sh | ||
|
||
for l in `find usr -type l -xtype l`; do | ||
echo "$l -> `readlink -nq "$l"`" | ||
done | ||
|
Oops, something went wrong.