├── .github
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── ISSUE_TEMPLATE
│ ├── bug-report.md
│ ├── enhancement-request.md
│ └── hardcoded-app.md
└── PULL_REQUEST_TEMPLATE.md
├── fix.sh
├── license
├── readme.md
└── tofix.csv
/.github/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at joshua.h.fogg@gmail.com. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72 |
73 | [homepage]: https://www.contributor-covenant.org
74 |
75 | For answers to common questions about this code of conduct, see
76 | https://www.contributor-covenant.org/faq
77 |
--------------------------------------------------------------------------------
/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 | These guidelines are mostly for those submitting changes to the [fix.sh](https://github.com/Foggalong/hardcode-fixer/blob/master/fix.sh) script. If your change is just adding support for a new app or otherwise a minor change then you can skip it, and thanks for contributing to the project!
3 |
4 | ## Changing the Script
5 | This script is [made with the intent](https://github.com/Foggalong/hardcode-fixer/wiki/What,-Why-&-How) of being a standard tool that icon themes creators can reference to users as a fix for the problem of hardcoded icons. However, it is also a hobby project for me and one of the few I maintain written in bash. As such it's a bit of a learning exercise and there'll likely be parts which aren't well optimised or otherwise could be done better.
6 |
7 | What does that mean for contributors? Well if the changes you're proposing are trivial or otherwise easily understood then you're fine. Your contributions may still be fine otherwise, it'll just take a bit longer to read through them and wrap my head around what's going on. I won't merge anything into this repo which I don't first understand fully.
8 |
9 | However this does also mean that if your proposed changes are utilising some niche, obtuse feature of bash then it likely won't be accepted. Similarly if you're proposing a complete overhaul of the programs logic unprompted it won't be accepted because it leaves me with a codebase I didn't write and likely won't want to maintain.
10 |
11 | ## Bash
12 | Lots have people have suggested that I switch from bash to a language like Python. The latter is arguably much better suited to a task like this and would likely make for a prettier codebase. However, I wrote the script in bash and will not be rewriting it in another language. That's not necessarily because I think bash is the best tool for the job, but I already do a lot of coding in Python for work so it's nice to have something a bit different. It (in theory) keeps my bash skills sharp while also not being a ridiculous language to use for the task.
13 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug-report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug Report
3 | about: Reporting issues with the execution of the script
4 | title: ''
5 | labels: bug
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **Program Versions**
14 | List the following version information to aid debugging the problem:
15 | - Hardcode Fixer (format is `YYYYMMDDXX`)
16 | - Distribution and version (e.g. Ubuntu 19.04). Can be found using `lsb_release -d`.
17 | - Bash version (e.g. 4.4.19(1)-release), found using `bash --version`.
18 | - Version of any other relevant software
19 |
20 | **Expected Behaviour**
21 | A clear and concise description of what you expected to happen.
22 |
23 | **Screenshots**
24 | If applicable, add screenshots to help explain your problem.
25 |
26 | **Additional context**
27 | Add any other context about the problem here.
28 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/enhancement-request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Enhancement Request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: enhancement
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12 |
13 | **Describe the solution you'd like**
14 | A clear and concise description of what you want to happen.
15 |
16 | **Describe alternatives you've considered**
17 | A clear and concise description of any alternative solutions or features you've considered.
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the feature request here.
21 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/hardcoded-app.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Hardcoded App
3 | about: Reporting a hardcoded icon the script doesn't fix
4 | title: ''
5 | labels: hardcoded app
6 | assignees: ''
7 |
8 | ---
9 |
10 | | Application name | Icon name | Desktop file name |
11 | | --- | :-- | :-- |
12 | | Application name | `The Icon attribute in the desktop file` | `Desktop file name` |
13 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Thanks for submitting a pull request to Hard Code Fixer! If you're proposing changes to the `fix.sh` script please ensure you've read the [contribution guidelines](https://github.com/Foggalong/hardcode-fixer/blob/master/.github/CONTRIBUTING.md) before submitting.
2 |
3 | ## Purpose
4 | If your PR is adding support for a new hardcoded app please state its origin (*e.g.* packaging link, upstream source, etc). If your PR is fixing a bug in the code or adding a new feature please detail the problem and the fix, linking any relevant issues below.
5 |
6 | ## Related Issues
7 | Please list any relevant issues that this relates to. Use `fixes #XXX` if this full addresses an issue or `see #XXX` if partially or otherwise. This makes sure GitHub does its automatically closing/referring magic.
8 |
--------------------------------------------------------------------------------
/fix.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Script for fixing hardcoded icons. Written and maintained on GitHub
4 | # at https://github.com/Foggalong/hardcode-fixer - additions welcome!
5 |
6 | # Copyright (C) 2014
7 | # This program is free software: you can redistribute it and/or modify
8 | # it under the terms of the GNU General Public License (version 3+) as
9 | # published by the Free Software Foundation. You should have received
10 | # a copy of the GNU General Public License along with this program.
11 | # If not, see .
12 |
13 | # Version info
14 | date=202006261 # [year][month][date][extra]
15 |
16 | # Locations
17 | username=${SUDO_USER:-$USER}
18 | userhome="/home/$username"
19 | global_apps=("/usr/share/applications/"
20 | "/usr/share/applications/kde4/"
21 | "/usr/local/share/applications/"
22 | "/usr/local/share/applications/kde4/"
23 | "/var/lib/snapd/desktop/applications/")
24 | local_apps=("$userhome/.local/share/applications/"
25 | "$userhome/.local/share/applications/kde4/"
26 | "$(sudo -u $username xdg-user-dir DESKTOP)/")
27 | local_icon="$userhome/.local/share/icons/hicolor/48x48/apps/"
28 | global_icon="/usr/share/icons/hicolor/48x48/apps/"
29 | local_scalable_icon="$userhome/.local/share/icons/hicolor/scalable/apps/"
30 | global_scalable_icon="/usr/share/icons/hicolor/scalable/apps/"
31 | steam_icon="${global_icon}steam.png"
32 |
33 |
34 | # Allows timeout when launched via 'Run in Terminal'
35 | function gerror() { sleep 3; exit 1; }
36 |
37 | # Backup icons
38 | function backup() {
39 | current=$1
40 | new_icon=$2
41 | is_local=$3
42 | extension="${current##*.}"
43 | if [ -f "$current" ]; then # checks if icon exists to copy
44 | if [ "$extension" == "png" ] || [ "$extension" == "xpm" ];then
45 | if [ $is_local == "1" ]; then
46 | if [ ! -f "$local_icon$new_icon" ] ;then
47 | cp "$current" "$local_icon$new_icon"
48 | chown -R $username:$username "$local_icon$new_icon"
49 | fi
50 | else
51 | if [ ! -f "$global_icon$new_icon" ] ;then
52 | cp "$current" "$global_icon$new_icon"
53 | fi
54 | fi
55 | fi
56 | if [ "$extension" == "svg" ];then
57 | if [ $is_local == "1" ]; then
58 | if [ ! -f "$local_scalable_icon$new_icon" ] ;then
59 | cp "$current" "$local_scalable_icon$new_icon"
60 | chown -R $username:$username "$local_scalable_icon$new_icon"
61 | fi
62 | else
63 | if [ ! -f "$global_scalable_icon$new_icon" ] ;then
64 | cp "$current" "$global_scalable_icon$new_icon"
65 | fi
66 | fi
67 | fi
68 | fi
69 | }
70 |
71 | # Deals with the flags
72 | if [ -z "$1" ]; then
73 | mode="fix"
74 | else
75 | case $1 in
76 | -l|--local)
77 | mode="local";;
78 | -r|--revert)
79 | echo "This will undo all changes previously made."
80 | while true; do
81 | read -r -p "Are you sure you want to continue? " answer
82 | case $answer in
83 | [Yy]* ) mode="revert"; break;;
84 | [Nn]* ) exit;;
85 | * ) echo "Please answer [Y/y]es or [N/n]o.";;
86 | esac
87 | done;;
88 | -h|--help)
89 | echo -e \
90 | "Usage: ./$(basename -- $0) [OPTION]\n" \
91 | "\rFixes hardcoded icons of installed applications.\n\n" \
92 | "\rCurrently supported options:\n" \
93 | "\r -l, --local \t Only fixes local launchers.\n" \
94 | "\r -r, --revert \t Reverts any changes made.\n" \
95 | "\r -h, --help \t\t Displays this help menu.\n" \
96 | "\r -v, --version \t Displays program version.\n"
97 | exit 0 ;;
98 | -v|--version)
99 | echo -e "$(basename -- $0) $date\n"
100 | exit 0 ;;
101 | *)
102 | echo -e "$(basename -- $0): invalid option -- '$1'"
103 | echo -e "Try '$(basename -- $0) --help' for more information."
104 | gerror
105 | esac
106 | fi
107 | # Creates the missing folders
108 | if [ ! -d "$local_scalable_icon" ]; then
109 | su -c "mkdir '$local_scalable_icon' -p" "$username"
110 | fi
111 | if [ ! -d "$local_icon" ]; then
112 | su -c "mkdir '$local_icon' -p" "$username"
113 | fi
114 |
115 |
116 |
117 | # Verifies if 'curl' is installed
118 | if ! type "curl" >> /dev/null 2>&1; then
119 | echo -e \
120 | "$0: This script requires 'curl' to be installed\n" \
121 | "\rto fetch the required files and check for updates.\n" \
122 | "\rPlease install it and rerun this script."
123 | gerror
124 | fi
125 |
126 | # Choses online resource location from GitHub, Gitee, and jsDelivr
127 | git_locate="local"
128 | echo -n "Choosing host for updates... "
129 | if eval "curl -sk https://raw.githubusercontent.com" >> /dev/null 2>&1; then
130 | echo -e "connected to GitHub!"
131 | git_locate="https://raw.githubusercontent.com/Foggalong/hardcode-fixer/master"
132 | elif eval "curl -sk https://gitee.com" >> /dev/null 2>&1; then
133 | echo -e "Connected to Gitee!"
134 | git_locate="https://gitee.com/gh-mirror/hardcode-fixer/raw/master"
135 | elif eval "curl -sk https://cdn.jsdelivr.net" >> /dev/null 2>&1; then
136 | echo -e "Connected to jsDelivr!"
137 | git_locate="https://cdn.jsdelivr.net/gh/Foggalong/hardcode-fixer@master"
138 | else
139 | echo -e "failed!\n"
140 | echo -e \
141 | "No internet connection available. This script\n" \
142 | "\rrequires internet access to check for updates\n" \
143 | "\rand download the latest 'to-fix' info."
144 | gerror
145 | fi
146 |
147 | # Check for newer version of fix.sh
148 | new_date=$(curl -sk "${git_locate}"/fix.sh | grep "date=[0-9]\{9\}" | sed "s/[^0-9]//g")
149 | if [ -n "$new_date" ] && [ "$date" -lt "$new_date" ]; then
150 | echo -e \
151 | "You're running an out of date version of\n" \
152 | "\rthe script. Please download the latest\n" \
153 | "\rverison from the GitHub page or update\n" \
154 | "\rvia your package manager. If you continue\n" \
155 | "\rwithout updating you may run into problems."
156 | while true; do
157 | read -r -p "Would you like to [e]xit, or [c]ontinue?" answer
158 | case $answer in
159 | [Ee]* ) exit;;
160 | [Cc]* ) break;;
161 | * ) echo "Please answer [e]xit or [c]ontinue";;
162 | esac
163 | done
164 | fi
165 |
166 |
167 | # Downloads latest version of the list
168 | curl -sk -o "/tmp/tofix.csv" "${git_locate}/tofix.csv"
169 | sed -i -e "1d" "/tmp/tofix.csv" # crops header line
170 | chown "$username" "/tmp/tofix.csv"
171 |
172 | # Checks for root
173 | if [[ $UID -ne 0 ]] && [ $mode != "local" ]; then
174 | echo "The script must be run as root to (un)fix global launchers."
175 | while true; do
176 | read -r -p "Do you want to continue in local mode? " answer
177 | case $answer in
178 | [Yy]* )
179 | if [ "$mode" == "fix" ]; then
180 | mode="local"; break
181 | elif [ "$mode" == "revert" ]; then
182 | mode="l-revert"; break
183 | fi;;
184 | [Nn]* ) exit;;
185 | * ) echo "Please answer [Y/y]es or [N/n]o.";;
186 | esac
187 | done
188 | fi
189 |
190 |
191 | # Itterating over lines of tofix.csv, each split into an array
192 | IFS=","
193 | while read -r name launcher current new_icon; do
194 | # Basic corrections
195 | name=$(echo "$name" | sed -e "s/\r//g")
196 | launcher=$(echo "$launcher".desktop | sed -e "s/\r//g")
197 | current=$(echo "$current" | sed -e "s/\r//g")
198 | new_icon=$(echo "$new_icon" | sed -e "s/\r//g")
199 | filename=$(basename "$current")
200 | extension="${filename##*.}"
201 | # Escape non-standard and special characters in file names by creating a new variable
202 | old_icon="${current//\\/\\\\}" # escape backslashes
203 | old_icon="${old_icon//\//\\/}" # escape slashes
204 | # Fixing code
205 | if [ "$current" == "hardcoded" ]; then #checks if the icon path is hardcoded
206 | if [ "$mode" == "local" ]; then
207 | combined_apps=("${local_apps[@]}")
208 | else
209 | combined_apps=("${local_apps[@]}" "${global_apps[@]}")
210 | fi
211 |
212 | for app_location in "${combined_apps[@]}"
213 | do
214 | if [ -f "$new_current" ]; then
215 | break
216 | fi
217 | if [ -f "$app_location$launcher" ]; then
218 | new_current=$(grep -Gq "Icon=*$" "$app_location$launcher")
219 | fi
220 | done
221 | if [ -f "$new_current" ];then
222 | sed -i "s/$name,$launcher,$current,$new_icon/$name,$launcher,$new_current,$new_icon/" "tofix.csv"
223 | sed -i "s/$name,$launcher,$current,$new_icon/$name,$launcher,$new_current,$new_icon/" "/tmp/tofix.csv"
224 | fi
225 | fi
226 | if [ ! -d "$local_scalable_icon" ]; then
227 | su -c "mkdir '$local_scalable_icon' -p" "$username"
228 | fi
229 | if [ ! -d "$local_icon" ]; then
230 | su -c "mkdir '$local_icon' -p" "$username}"
231 | fi
232 | if [ "$mode" == "fix" ] || [ "$mode" == "local" ]; then
233 | # Local & Steam launchers
234 | for local_app in "${local_apps[@]}"
235 | do
236 | if [ -f "$local_app$launcher" ]; then
237 | if [ "$current" != "steam" ]; then
238 | if grep -Gq "Icon\s*=\s*$current$" "$local_app$launcher"; then
239 | # Local launchers
240 | echo "L: Fixing $name..."
241 | backup $current $new_icon "1"
242 | sed -i "s/Icon\s*=\s*${old_icon}.*/Icon=$new_icon/" "$local_app$launcher"
243 | fi
244 | else
245 | # Steam launchers
246 | if [ -f "$steam_icon" ]; then # checks if steam icon exists to copy
247 | if grep -Gq "Icon\s*=\s*$current$" "$local_app$launcher"; then
248 | echo "S: Fixing $name..."
249 | if [ ! -d "$local_icon" ]; then
250 | su -c "mkdir '$local_icon' -p" "$username"
251 | fi
252 | if [ ! -f "$local_icon${new_icon}.png" ];then
253 | cp "$steam_icon" "$local_icon${new_icon}.png"
254 | fi
255 | sed -i "s/Icon\s*=\s*steam.*/Icon=$new_icon/" "$local_app$launcher"
256 | fi
257 | fi
258 | fi
259 | fi
260 | done
261 | # Global launchers
262 | for global_app in "${global_apps[@]}"
263 | do
264 | if [ $mode != "local" ] && [ -f "$global_app$launcher" ]; then
265 | if grep -Gq "Icon\s*=\s*$current$" "$global_app$launcher"; then
266 | echo "G: Fixing $name..."
267 | backup $current $new_icon "0"
268 | sed -i "s/Icon\s*=\s*${old_icon}.*/Icon=$new_icon/g" "$global_app$launcher"
269 | fi
270 | fi
271 | done
272 | # Reversion code
273 | elif [ "$mode" == "revert" ] || [ "$mode" == "l-revert" ]; then
274 | # Local revert
275 | for local_app in "${local_apps[@]}"
276 | do
277 | if [ -f "$local_app$launcher" ]; then
278 | if grep -Gq "Icon\s*=\s*$new_icon$" "$local_app$launcher"; then
279 | echo "F: Reverting $name..."
280 | rm -f "$local_icon$new_icon"*
281 | rm -f "$local_scalable_icon$new_icon"*
282 | sed -i "s/Icon=${new_icon}.*/Icon=$old_icon/" "$local_app$launcher"
283 | fi
284 | fi
285 | # Steam revert
286 | if [ -f "$local_app$launcher" ] && [ -f "$steam_icon" ]; then
287 | if grep -Gq "Icon\s*=\s*$new_icon$" "$local_app$launcher"; then
288 | echo "S: Reverting $name..."
289 | rm -f "$local_icon$new_icon"*
290 | rm -f "$local_scalable_icon$new_icon"*
291 | sed -i "s/Icon\s*=\s*${new_icon}.*/Icon=$old_icon/" "$local_app$launcher"
292 | fi
293 | fi
294 | done
295 | # Global revert
296 | for global_app in "${global_apps[@]}"
297 | do
298 | if [ $mode != "l-revert" ] && [ -f "$global_app$launcher" ]; then
299 | if grep -Gq "Icon\s*=\s*$new_icon$" "$global_app$launcher"; then
300 | echo "G: Reverting $name..."
301 | rm -f "$global_icon$new_icon"*
302 | rm -f "$global_scalable_icon$new_icon"*
303 | sed -i "s/Icon\s*=\s*${new_icon}.*/Icon=$old_icon/" "$global_app$launcher"
304 | fi
305 | fi
306 | done
307 | fi
308 | done < "/tmp/tofix.csv"
309 |
--------------------------------------------------------------------------------
/license:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 | {one line to give the program's name and a brief idea of what it does.}
635 | Copyright (C) {year} {name of author}
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | {project} Copyright (C) {year} {fullname}
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Hardcoded Icon Fixer
2 |
3 | This program aims to be a safe, easy and standardised solution to the problem of hardcoded application icons in Linux. All it is is [this one bash script](https://github.com/Foggalong/hardcode-fixer/blob/master/fix.sh) - simply copy it to somewhere on your PC and run. If you're an Arch user it's also available in the [AUR](https://aur.archlinux.org/packages/hardcode-fixer-git/).
4 |
5 | The script requires `curl` to download the latest '[to-fix](https://github.com/Foggalong/hardcode-fixer/blob/master/tofix.csv)' list from GitHub (else Gitee or jsDelivr if that fails).
6 |
7 |
8 | ### More Info
9 | Use `./fix.sh -h` for help, or otherwise consult [the wiki](https://github.com/Foggalong/hardcode-fixer/wiki) for:
10 |
11 | + An indepth explanation of [what, why, & how](https://github.com/Foggalong/hardcode-fixer/wiki/What,-Why-&-How)
12 | + [Use instructions](https://github.com/Foggalong/hardcode-fixer/wiki/Instructions)
13 | + Supported [application list](https://github.com/Foggalong/hardcode-fixer/wiki/App-Support)
14 | + Information on [theme support](https://github.com/Foggalong/hardcode-fixer/wiki/Theme-Support)
15 |
--------------------------------------------------------------------------------
/tofix.csv:
--------------------------------------------------------------------------------
1 | Application,Launcher,Path,Icon Name
2 | 2048,2048,/usr/share/2048/meta/apple-touch-icon.png,2048
3 | 2048-Qt,2048-qt,/usr/share/pixmaps/2048-qt.xpm,2048-qt
4 | 4Pane,4Pane,/usr/share/4Pane/bitmaps/4PaneIcon48.png,4Pane
5 | 8BitMMO,8BitMMO,steam,steam_icon_250420
6 | Aard Dictionary,aarddict,aarddict.png,aarddict
7 | Alsa Mixer GUI,alsamixergui,/usr/share/pixmaps/alsamixergui.xpm,alsamixergui
8 | AltYo,altyo,altyo.png,altyo
9 | AltYo,altyo_standalone,altyo.png,altyo
10 | amSynth,amsynth,/usr/share/pixmaps/amsynth.png,amsynth
11 | amSynth,amsynth,/usr/share/pixmaps/amsynth.xpm,amsynth
12 | Android Studio,android-studio,/opt/android-studio/bin/studio.png,android-studio
13 | Android Studio,android-studio,/usr/share/icons/androidstudio.svg,android-studio
14 | Android Studio,android-studio,hardcoded,android-studio
15 | Android Studio,jetbrains-studio,/opt/android-studio/bin/studio.png,android-studio
16 | Anna - Extended Edition,Anna - Extended Edition,steam,steam_icon_217690
17 | Aptik,aptik,/usr/share/pixmaps/aptik.png,aptik
18 | APX,apx,/usr/share/apx/icons/apx.svg,apx
19 | Ardour 2,ardour2,/usr/share/ardour2/icons/ardour_icon_22px.png,ardour
20 | Ardour 3,ardour,/usr/share/ardour3/icons/ardour_icon_48px.png,ardour
21 | Ardour 3,ardour,/opt/ardour3/share/icons/ardour_icon_48px.png,ardour
22 | Ardour 3,ardour3,/usr/share/ardour3/icons/ardour_icon_48px.png,ardour
23 | Ardour 3,ardour3,/opt/ardour3/share/icons/ardour_icon_48px.png,ardour
24 | Ardour 4,ardour,/usr/share/ardour4/icons/ardour_icon_256px.png,ardour
25 | Arista,arista,/usr/share/arista/ui/icon.svg,arista
26 | Armagetron Advanced,armagetronad,/usr/share/pixmaps/armagetronad/icons/large/armagetronad.png,armagetronad
27 | Arronax,arronax,/usr/share/arronax/icons/arronax.png,arronax
28 | Ascii Design,ascii-design,ascii-design.png,ascii-design
29 | AstroMenace,astromenace,/usr/share/pixmaps/astromenace.png,astromenace
30 | Atom,Atom,/usr/share/atom/atom.png,atom
31 | Bastion,Bastion,steam,steam_icon_107100
32 | Beat Hazard,Beat Hazard,steam,steam_icon_49600
33 | Beat Hazard 2,Beat Hazard 2,steam,steam_icon_49610
34 | Bibfilex,bibfilex-qt,/opt/bibfilex/icon.png,bibfilex
35 | Bibfilex,bibfilex-gtk,/opt/bibfilex/icon.png,bibfilex
36 | BioShock Infinite,BioShock Infinite,steam,steam_icon_8870
37 | BitDefender,bitdefender,/opt/BitDefender-scanner/share/doc/examples/icons/hicolor/128x128/apps/bitdefender.png,bitdefender
38 | Bitmask,bitmask,/opt/bitmask/icon.png,bitmask
39 | Bitwig Studio,bitwig-studio,/usr/share/icons/hicolor/scalable/apps/bitwig-studio.svg,bitwig-studio
40 | Bitwig Studio,bitwig-studio,bitwig-studio.png,bitwig-studio
41 | Blam,blam,blam.png,blam
42 | BlueJ,bluej,/usr/share/java/bluej/images/bluej-icon-48.png,bluej
43 | Boot Repair,boot-repair,/usr/share/boot-sav/x-boot-repair.png,x-boot-repair
44 | Bygfoot Football Manager,bygfoot,bygfoot.xpm,bygfoot
45 | Calendar Indicator,calendar-indicator,/opt/extras.ubuntu.com/calendar-indicator/share/pixmaps/calendar-indicator.svg,office-calendar
46 | Cecilia,cecilia,/usr/share/pixmaps/cecilia.png,cecilia
47 | Cities in Motion 2,Cities in Motion 2,steam,steam_icon_225420
48 | Cisco AnyConnect,cisco-anyconnect,/opt/cisco/anyconnect/pixmaps/vpnui48.png,cisco-anyconnect
49 | Cisco Packet Tracer,Cisco-PacketTracer,/opt/pt/art/app.png,packettracer
50 | Clion IDE,clion,/opt/clion/bin/clion.svg,clion
51 | Clion IDE,jetbrains-clion,hardcoded,clion
52 | ClipGrab,clipgrab,/usr/share/pixmaps/clipgrab.png,clipgrab
53 | Codelite,codelite,/usr/share/codelite/images/cubes.png,codelite
54 | Conky Manager,conky-manager,/usr/share/pixmaps/conky-manager.png,conky-manager
55 | Copy,copy,/usr/share/icons/hicolor/scalable/apps/copyagent.svg,copy
56 | Copy,CopyAgent,/usr/share/icons/hicolor/scalable/apps/copyagent.svg,copy-agent
57 | Crashplan,crashplan,/usr/local/crashplan/skin/icon_app_128x128.png,crashplan
58 | Crashplan,crashplan,/opt/crashplan/skin/icon_app_64x64.png,crashplan
59 | Cura,cura,/usr/share/cura/resources/images/c.png,cura
60 | Cyclograph,cyclograph-gtk3,cyclograph.png,cyclograph
61 | Cyclograph,cyclograph-qt,cyclograph.png,cyclograph
62 | DataGrip,datagrip,/opt/datagrip/bin/product.png,datagrip
63 | Desura,desura,hardcoded,desura
64 | diffpdf,diffpdf,/usr/share/pixmaps/diffpdf.png,diffpdf
65 | Discord,Discord,/usr/share/pixmaps/discord.png,discord
66 | Discord,discord,/usr/lib64/discord/discord.png,discord
67 | Discord Canary,DiscordCanary,/usr/share/pixmaps/discord-canary.png,discord-canary
68 | Docear,docear,/usr/share/docear/docear.png,docear
69 | Dogecoin QT,dogecoin,/usr/share/pixmaps/dogecoin.png,dogecoin
70 | DopeWars,dopewars,dopewars-weed.png,dopewars
71 | DOS Box,dosbox,/usr/share/pixmaps/dosbox.png,dosbox
72 | Dota 2,Dota 2,steam,steam_icon_570
73 | Double Action: Boogaloo,Double Action Boogaloo,steam,steam_icon_317360
74 | dreamchess,dreamchess,/usr/share/dreamchess/icon.png,dreamchess
75 | Dr. Geo,drgeo2,drgeo2.png,drgeo
76 | Dr. Geo,drgeo,drgeo_32x32.xpm,drgeo
77 | Driver Manager,driver-manager,/usr/share/icons/hicolor/scalable/apps/driver-manager.svg,driver-manager
78 | DupeGuru,dupeguru,/usr/share/dupeguru/dgse_logo_128.png,dupeguru
79 | DupeGuru,dupeguru_se,/usr/share/dupeguru_se/dgse_logo_128.png,dupeguru
80 | Dwarfs!?,Dwarfs!,steam,steam_icon_35480
81 | Dwarfs?! - F2P,Dwarfs! - F2P,steam,steam_icon_213650
82 | easyLife,easylife,/usr/share/pixmaps/easylife.png,easylife
83 | eFax,efax-gtk,/usr/share/pixmaps/efax-gtk,efax-gtk
84 | Eintopf,eintopf,/opt/eintopf/icon.png,eintopf
85 | Electrum,electrum,/usr/share/app-install/icons/electrum.png,electrum
86 | Emacs 23,emacs23,/usr/share/icons/hicolor/scalable/apps/emacs23.svg,emacs
87 | Emacs 24,emacs24,/usr/share/icons/hicolor/scalable/apps/emacs24.svg,emacs
88 | Encrytr,encryptr,/usr/share/pixmaps/Encryptr.png,Encryptr
89 | Engauge Digitizer,engauge-digitizer,/usr/share/pixmpas/engauge-digitizer.xpm,engauge-digitizer
90 | Enpass,enpass,enpass.png,enpass
91 | Enpass,Enpass,/opt/Enpass/enpass.png,enpass
92 | Etcher,Etcher,/usr/share/etcher/etcher.png,etcher
93 | Etcher,Etcher,/usr/share/etcher/etcher.png,etcher-electron
94 | Etherwall,etherwall,etherwall.png,etherwall
95 | FadeIn,fadein,/usr/share/fadein/icon_app/fadein_icon_128x128.png,fadein
96 | FCEUX,fceux,/usr/share/pixmaps/fceux.png,fceux
97 | Fistful of Frags,Fistful of Frags,steam,steam_icon_265630
98 | FileBot,FileBot,/usr/share/filebot/icon.svg,filebot
99 | FlameRobin,flamerobin,/usr/share/pixmaps/flamerobin.png,flamerobin
100 | FlightGear Launcher,fgrun,/usr/share/pixmaps/flightgear.ico,flightgear
101 | FMIT,fmit,/usr/share/icons/hicolor/scalable/apps/fmit.svg,fmit
102 | Format Junkie,formatjunkie,/opt/extras.ubuntu.com/formatjunkie/pixmap/fjt.png,fjt
103 | Fotoxx,fotoxx,/usr/share/fotoxx/icons/fotoxx.png,fotoxx
104 | FoxitReader,FoxitReader,/home/root/.local/share/icons/hicolor/64x64/apps/FoxitReader.png,foxit-reader
105 | FoxitReader,FoxitReader,FoxitReader.png,foxit-reader
106 | FoxitReader,FoxitReader,hardcoded,foxit-reader
107 | Franz,franz,/opt/franz/franz-icon.png,franz
108 | FreeCAD,freecad,/opt/freecad/data/freecad.xpm,freecad
109 | FreeCAD,freecad,/usr/share/freecad/freecad.xpm,freecad
110 | Free Chart Geany,freechartgeany,/usr/share/pixmaps/freechartgeany.png,freechartgeany
111 | FreeCol,freecol,/usr/share/pixmaps/freecol.xpm,freecol
112 | Freedroid RPG,freedroidrpg,/usr/share/icons/freedroidrpg.jpg,freedroid
113 | Fritzing,fritzing,/usr/share/pixmaps/fritzing_icon.png,fritzing_icon
114 | Gambas 3,gambas3,gambas3.png,gambas3
115 | Gambit Chess,gambitchess,/usr/share/pixmaps/gambitchess.svg,gambitchess
116 | GanttProject,ganttproject,/opt/ganttproject/plugins/net.sourceforge.ganttproject/data/resources/logos/icon64.png,ganttproject
117 | Garry's Mod,Garry's Mod,steam,steam_icon_4000
118 | gCAD3D,gCAD3D,/usr/share/gcad3d/icons/gCAD3D.xpm,gcad3d
119 | Gcolor2,gcolor2,/usr/share/pixmaps/gcolor2/gcolor2.xpm,gcolor2
120 | Gcolor2,gcolor2,/usr/share/pixmaps/gcolor2/icon.png,gcolor2
121 | GDebi,gdebi,gnome-mime-application-x-deb,gdebi
122 | Gdiskdump,gdiskdump,/usr/share/gdiskdump/data/media/gdiskdump.svg,gdiskdump
123 | GdMap,gdmap,gdmap_icon.png,gdmap_icon
124 | Gens GS,gens,/usr/share/gens/gensgs_48x48.png,gensgs
125 | Gens GS,gens,/usr/share/gens/gensgs_32x32.png,gensgs
126 | Gens GS,gens,/usr/share/gens/gens_small.png,gensgs
127 | Genymotion,genymobile-genymotion,/opt/genymotion/genymotion/icons/icon.png,genymotion
128 | Genymotion,genymotion,/opt/genymotion/icons/icon.png,genymotion
129 | GeSpeaker,gespeaker,/usr/share/gespeaker/data/icons/gespeaker.svg,gespeaker
130 | gFTP,gftp,gftp.png,gftp
131 | Gigolo,gigolo,gtk-network,gigolo
132 | git-cola,git-cola,/usr/share/git-cola/icons/git.svg,git-cola
133 | Gitkraken,gitkraken,app,gitkraken
134 | Gitkraken (snap),gitkraken_gitkraken,/snap/gitkraken/.*/usr/share/pixmaps/app.png,gitkraken
135 | Gitter,gitter,/opt/Gitter/linux64/logo.png,Gitter
136 | Gmsh,gmsh,/usr/share/pixmaps/gmsh_32x32.xpm,gmsh
137 | GNOME ALSA Mixer,gnome-alsamixer,/usr/share/pixmaps/gnome-alsamixer/gnome-alsamixer-icon.png,gnome-alsamixer-icon
138 | GNOME Characters,gnome-characters_gnome-characters,/snap/gnome-characters/.*/meta/gui/gnome-characters.png,gnome-characters
139 | GNOME Logs,gnome-logs_gnome-logs,/snap/gnome-logs/.*/meta/gui/gnome-logs.png,gnome-logs
140 | GNOME Schedule,gnome-schedule,/usr/share/pixmaps/gnome-schedule/gnome-schedule.svg,gnome-schedule
141 | GNOME Split,gnome-split,/usr/share/pixmaps/gnome-split.png,gnome-split
142 | GNOME Wave Cleaner,gwc,gwc.xpm,gwc
143 | GNOME Weather,gnome-shell-extension-weather,org.gnome.Weather.Application,gnome-weather
144 | GNOME Weather (Arch),org.gnome.Weather.Application,org.gnome.Weather.Application,gnome-weather
145 | GNS3,gns3,/usr/share/pixmaps/gns3.xpm,gns3
146 | GNUbik,gnubik,gnubik.png,gnubik
147 | GNU Octave,www.octave.org-octave,/usr/share/octave/3.6.4/imagelib/octave-logo.svg,octave
148 | GNU Octave,www.octave.org-octave,/usr/share/octave/3.8.1/imagelib/octave-logo.svg,octave
149 | GNU Octave,www.octave.org-octave,/usr/share/octave/4.0.0/imagelib/octave-logo.svg,octave
150 | GNU Octave,www.octave.org-octave,/usr/share/octave/4.0.1/imagelib/octave-logo.svg,octave
151 | GNU Octave,www.octave.org-octave,/usr/share/octave/4.0.2/imagelib/octave-logo.svg,octave
152 | GNU Octave,www.octave.org-octave,/usr/share/octave/4.0.3/imagelib/octave-logo.svg,octave
153 | GNU Octave,www.octave.org-octave,/usr/share/octave/4.2.2/imagelib/octave-logo.svg,octave
154 | Gogland,jetbrains-gogland,/opt/gogland/bin/gogland.png,gogland
155 | Google Drive,grive-setup,/opt/thefanclub/grive-tools/GoogleDrive.png,google-drive
156 | Google Drive Indicator,grive-indicator,/opt/thefanclub/grive-tools/GoogleDrive.png,google-drive
157 | GoldenDict,goldendict,/usr/share/pixmaps/goldendict.png,goldendict
158 | Gone Home,Gone Home,steam,steam_icon_232430
159 | GPixPod,GPixPod,/usr/share/gpixpod/GPixPod_icon.png,GPixPod_icon
160 | GPRename,gprename,/usr/share/pixmaps/gprename/gprename.png,gprename
161 | GpsPrune,gpsprune,/usr/share/pixmaps/gpsprune.xpm,gpsprune
162 | Grace GTK,gracegtk,/usr/share/pixmaps/gracegtk.png,grace
163 | GRASS GIS,grass,/usr/share/icons/grass-64x64.png,grass
164 | Greenfoot,greenfoot,/usr/share/java/greenfoot/images/greenfoot-icon-48.png,greenfoot
165 | Grisbi,grisbi,/usr/share/pixmaps/grisbi/grisbi.svg,grisbi
166 | Grisbi,grisbi,/usr/share/pixmaps/grisbi/grisbi.xpm,grisbi
167 | Grive Setup,grive,/opt/thefanclub/grive-tools/grive.png,google-drive
168 | Grsync,grsync,grsync.png,grsync
169 | Gsopcast,gsopcast,gsopcast.png,gsopcast
170 | GTick,gtick,/usr/share/icons/hicolor/64x64/apps/gtick.xpm,gtick
171 | GTimeLog,gtimelog,/usr/share/pyshared/gtimelog/gtimelog.png,gtimelog
172 | gtk-recordMyDesktop,gtk-recordmydesktop.desktop,gtk-recordmydesktop.png,gtk-recordmydesktop
173 | Guake,guake,/usr/share/pixmaps/guake/guake.png,guake
174 | GUVC View,guvcview,/usr/share/pixmaps/guvcview/guvcview.png,guvcview
175 | gv,gv,/usr/share/pixmaps/gv_icon.xpm,gv
176 | Hardinfo,hardinfo,/usr/share/hardinfo/pixmaps/logo.png,hardinfo
177 | Hipchat,atlassian-hipchat,hipchat.png,hipchat
178 | Hotline Miami,Hotline Miami,steam,steam_icon_219150
179 | HotShots,hotshots,/usr/share/pixmaps/hotshots.png,hotshots
180 | HP Fax address book,hp-fab,/usr/share/hplip/data/images/128x128/hp_logo.png,hp_logo
181 | HP Lip,hplip,/usr/share/hplip/data/images/128x128/hp_logo.png,hp_logo
182 | HP Printer,hplj1020,/usr/share/pixmaps/hplj1020_icon.png,printer
183 | HP UIScan,hp-uiscan,/usr/share/icons/Humanity/devices/48/printer.svg,printer
184 | HPLIP Fax Utility,hp-sendfax,/usr/share/hplip/data/images/128x128/hp_logo.png,hp_logo
185 | HPLIP Toolbox,hplip-kubuntu,/usr/share/hplip/data/images/128x128/hp_logo.png,hp_logo
186 | HTTraQt,httraqt,httraqt.xpm,httraqt
187 | IBus Typing Booster Setup,ibus-setup-typing-booster,/usr/share/ibus-typing-booster/icons/ibus-hunspell-table.svg,ibus-keyboard
188 | IBus LibZhuyin Setup,ibus-setup-libzhuyin,/usr/share/ibus-libzhuyin/icons/ibus-zhuyin.svg,ibus-setup
189 | IBus LibPinyin Setup,ibus-setup-libpinyin,/usr/share/ibus-libpinyin/icons/ibus-pinyin.svg,ibus-pinyin
190 | IBus LibBopomofo Preferences,ibus-setup-libbopomofo,/usr/share/ibus-libpinyin/icons/ibus-bopomofo.svg,ibus-bopomofo
191 | Ice,ice,/usr/share/pixmaps/ice.png,ice
192 | I-Nex,i-nex,/usr/share/pixmaps/i-nex-128.png,i-nex-128
193 | I-Nex Library,i-nex-library,/usr/share/pixmaps/i-nex-128.png,i-nex-128
194 | IDLE,idle,/usr/share/pixmaps/idle.xpm,python-idle
195 | IDLE 3,idle3,/usr/share/pixmaps/idle3.xpm,python-idle
196 | IDLE (Python 2.7),idle-python2.7,/usr/share/pixmaps/python2.7.xpm,python-idle
197 | IDLE (Python 3.2),idle-python3.2,/usr/share/pixmaps/python3.2.xpm,python-idle
198 | IDLE (Python 3.3),idle-python3.3,/usr/share/pixmaps/python3.3.xpm,python-idle
199 | IDLE (Python 3.4),idle-python3.4,/usr/share/pixmaps/python3.4.xpm,python-idle
200 | IDLE (Python 3.5),idle-python3.5,/usr/share/pixmaps/python3.5.xpm,python-idle
201 | Image Magick,display.im6,display.im6,imagemagick
202 | Intel Graphics Installer,intel-linux-graphics-installer,/usr/share/intel-linux-graphics-installer/images/logo.png,intel-installer
203 | Intel Graphics Installer,intel-graphics-update-tool,/usr/share/intel-linux-graphics-installer/images/logo.png,intel-installer
204 | Intellij IDE,idea,/opt/idea/bin/idea.png,idea
205 | Intellij IDE,intellij-idea,hardcoded,idea
206 | Intellij IDE,jetbrains-idea,hardcoded,idea
207 | Intellij IDE,jetbrains-idea-ce,hardcoded,idea
208 | IPython/Jupyter QtConsole,ipython-qtconsole,gnome-netstatus-idle,ipython
209 | IPython/Jupyter QtConsole,jupyter-qtconsole,gnome-netstatus-idle,ipython
210 | IPYthon/Jupyter QtConsole,jupyter-qtconsole,/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg,ipython
211 | ISO Master,isomaster,/usr/share/isomaster/icons/isomaster.png,isomaster
212 | Itch.io,itch,itch.png,itch
213 | JetBrains Toolbox,jetbrains-toolbox,/opt/toolbox/toolbox.svg,jetbrains-toolbox
214 | Jitsi,jitsi,/usr/share/pixmaps/jitsi.svg,jitsi
215 | Jupyter Qt console,jupyter-qtconsole,/usr/lib/python3.6/site-packages/qtconsole/resources/icon/JupyterConsole.svg,JupyterConsole
216 | Kana Kanji Conversion Preferences,ibus-setup-kkc,/usr/share/ibus-kkc/icons/ibus-kkc.svg,ibus-setup
217 | Kerbal Space Program,Kerbal Space Program,steam,steam_icon_220200
218 | Klavaro,klavaro,/usr/share/icons/hicolor/24x24/apps/klavaro.png,klavaro
219 | Koala,koala,/usr/share/koala/koala.png,koala
220 | Komodo Edit,komodo-edit,/opt/komodo-edit/share/icons/komodo48.png,komodo
221 | LANShare,LANShare,/usr/share/pixmaps/lanshare-icon.png,lanshare
222 | LaTeXDraw,latexdraw,/usr/share/pixmaps/latexdraw32.xpm,latexdraw
223 | Layout Editor,layout,/usr/share/icons/hicolor/48x48/apps/layout.png,layout
224 | Layout Editor,layout,layout.png,layout
225 | Left 4 Dead 2,Left 4 Dead 2,steam,steam_icon_550
226 | Left 4 Dead 2 (beta),Left 4 Dead 2 Beta,steam,steam_icon_223530
227 | Lightworks,lightworks,/usr/share/lightworks/Icons/App.png,lightworks
228 | Lincity-NG,lincity-ng,lincity-ng.png,lincity-ng
229 | Lingot,lingot,/usr/share/pixmaps/lingot/lingot-icon.svg,lingot-icon
230 | Linphone,linphone,/usr/share/pixmaps/linphone/linphone.png,linphone
231 | LinSSID,linssid,/usr/share/pixmaps/linssid48.png,linssid
232 | Little Inferno,Little Inferno,steam,steam_icon_221260
233 | LSHW,gtk-lshw,/usr/share/lshw/artwork/logo.svg,lshw
234 | Ltris,ltris,/usr/share/icons/ltris48.gif,ltris
235 | Lucky Backup,luckybackup,/usr/share/pixmaps/luckybackup.png,luckybackup
236 | Lucky Backup (KDE),luckybackup-kde-su,/usr/share/pixmaps/luckybackup.png,luckybackup
237 | Lucky Backup (GNOME),luckybackup-gnome-su,/usr/share/pixmaps/luckybackup.png,luckybackup
238 | LuxRender,luxrender,/usr/share/pixmaps/luxrender.svg,luxrender
239 | MailNag,mailnag_config,/usr/share/mailnag/mailnag.svg,mailnag
240 | MakeHuman,makehuman,/usr/share/makehuman/icons/makehuman.svg,makehuman
241 | Mancy,mancy,/usr/share/mancy/icons/mancy.png,mancy
242 | Mandelbulber,mandelbulber,/usr/share/mandelbulber/icons/mandelbulber.png,mandelbulber
243 | Master PDF Editor,MasterPdfEditor,/opt/master-pdf-editor/master-pdf-editor.png,master-pdf-editor
244 | Master PDF Editor 3,masterpdfeditor3,masterpdfeditor3.png,master-pdf-editor
245 | Master PDF Editor 3,masterpdfeditor3,/opt/master-pdf-editor-3/masterpdfeditor3.png,master-pdf-editor
246 | Master PDF Editor 5,masterpdfeditor5,/opt/master-pdf-editor-5/masterpdfeditor5.png,master-pdf-editor
247 | Matlab,matlab,/usr/share/icons/hicolor/48x48/apps/matlab.png,matlab
248 | Maya 2017,maya,/usr/autodesk/maya2017/icons/mayaico.png,maya
249 | MediaElch,MediaElch,/usr/share/pixmaps/MediaElch.png,mediaelch
250 | MidiEditor,MidiEditor,midieditor.png,midieditor
251 | Mint Audio Tag,audio-tag-tool,/usr/lib/linuxmint/mintInstall/icon.svg,audio-tag-tool
252 | Mint Backup,mintbackup,/usr/lib/linuxmint/mintBackup/icon.png,mintbackup
253 | Mint Backup,mintbackup,/usr/lib/linuxmint/mintBackup/icon.svg,mintbackup
254 | Mint Backup,mintbackup,/usr/share/pixmaps/mintbackup/icon.svg,mintbackup
255 | Mint Backup,mintBackup,/usr/lib/linuxmint/mintBackup/icon.png,mintbackup
256 | Mint Backup,mintBackup,/usr/lib/linuxmint/mintBackup/icon.svg,mintbackup
257 | Mint Backup,mintBackup_mime,/usr/lib/linuxmint/mintBackup/icon.png,mintbackup
258 | Mint Backup,mintbackup_mime,/usr/share/pixmaps/mintbackup/icon.svg,mintbackup
259 | Mint Backup,mintbackup_mime,/usr/share/pixmaps/mintbackup/icon.png,mintbackup
260 | Mint Drivers,mintdrivers,/usr/share/pixmaps/mintdrivers.svg,driver-manager
261 | Mint Drivers,mintdrivers,/usr/share/icons/hicolor/scalable/apps/driver-manager.svg,driver-manager
262 | Mint Nanny,mintNanny,/usr/lib/linuxmint/mintNanny/icon.svg,mintNanny
263 | Mint Software Manager,software-manager,/usr/lib/linuxmint/mintInstall/icon.svg,software-manager
264 | Mint Software Manager,mintInstall,/usr/lib/linuxmint/mintInstall/icon.svg,software-manager
265 | Mint Software Manager,mintinstall,/usr/share/pixmaps/mintinstall.svg,software-manager
266 | Mint Software Sources,software-sources,/usr/share/icons/hicolor/scalable/apps/software-sources.svg,software-sources
267 | Mint Software Sources,mintsources,/usr/share/pixmaps/mintsources.svg,software-sources
268 | Mint Software Sources,mintsources,/usr/share/icons/hicolor/scalable/apps/software-sources.svg,software-sources
269 | Mint Update Manager,mintUpdate,/usr/lib/linuxmint/mintUpdate/icons/base.svg,mintUpdate
270 | Mint Upload Manager,mintupload,/usr/lib/linuxmint/mintUpload/icon.svg,mintUpload
271 | Mint Upload Manager,mintupload,/usr/share/pixmaps/mintupload/icon.svg,mintUpload
272 | MKV Extractor GUI,mkv-extractor-gui,/usr/share/icons/hicolor/256x256/apps/mkv-extractor-gui.png,mkv-extractor-gui
273 | Money Manager Ex,mmex,/usr/share/icons/hicolor/scalable/apps/mmex.svg,mmex
274 | Motix,motix,/usr/share/icons/motrix.png,motix
275 | MultiBootUSB,multibootusb,/usr/share/pixmaps/multibootusb.png,multibootusb
276 | MultiBootUSB,multibootusb,multibootusb.png,multibootusb
277 | Mundus,mundus,/usr/share/pixmaps/mundus.svg,mundus
278 | MyNotex,MyNotex,mynotex.png,mynotex
279 | MyNotex,MyNotex,/opt/mynotex/icon.png,mynotex
280 | MyTourbook,mytourbook,mytourbook.xpm,mytourbook
281 | My Weather Indicator,my-weather-indicator,/opt/extras.ubuntu.com/my-weather-indicator/share/pixmaps/my-weather-indicator.png,indicator-weather
282 | My Weather Indicator (extras),extras-my-weather-indicator,/opt/extras.ubuntu.com/my-weather-indicator/share/pixmaps/my-weather-indicator.png,indicator-weather
283 | Nagstamon,nagstamon,/usr/share/pixmaps/nagstamon.svg,nagstamon
284 | Nagstamon,nagstamon,/usr/share/nagstamon/Nagstamon/resources/nagstamon.svg,nagstamon
285 | Natural Selection 2,Natural Selection 2,steam,steam_icon_4920
286 | Netbeans IDE,netbeans,/usr/share/netbeans/7.0.1/nb/netbeans.png,netbeans
287 | Netbeans IDE,netbeans,/usr/share/netbeans/8.0/nb/netbeans.png,netbeans
288 | Netbeans IDE,netbeans-8.0.1,/usr/share/netbeans/8.0.1/nb/netbeans.png,netbeans
289 | Netbeans IDE,netbeans-8.2,/opt/netbeans-8.2/nb/netbeans.png,netbeans
290 | Netflix,netflix,/var/lib/wine-browser-installer/NetflixIcon.png,netflix-desktop
291 | Ninja IDE,ninja-ide,/usr/share/ninja-ide/img/icon.png,ninja-ide
292 | Nitro Tasks,nitrotasks,/usr/share/nitrotasks/media/nitrotasks.png,nitrotasks
293 | NotifyOSD,notifyosdconf,/usr/share/notifyosdconf/not.png,notifyconf
294 | NotifyOSD,notifyconf,/usr/share/notifyosdconf/not.png,notifyconf
295 | Nsight Eclipse Edition,nsight,/opt/cuda/libnsight/icon.xpm,nsight
296 | Nvidia Settings,nvidia-settings,/usr/share/pixmaps/nvidia-settings.png,nvidia-settings
297 | NVIDIA Visual Profiler,nvvp,/opt/cuda/libnvvp/icon.xpm,nvvp
298 | NVIDIA X Server Settings,nvidia-settings,/usr/share/doc/NVIDIA_GLX-1.0/nvidia-settings.png,nvidia-settings
299 | OCRFeeder,ocrfeeder,/usr/share/ocrfeeder/icons/ocrfeeder.svg,ocrfeeder
300 | openSCAD,openscad,/usr/share/pixmaps/openscad.png,openscad
301 | Opensong,opensong,/opt/OpenSong/opensong.xpm,opensong
302 | OmegaT,omegat,/usr/share/omegat/images/OmegaT.xpm,omegat
303 | oStorybook,oStorybook,/usr/share/oStorybook/oStorybook-icon.png,ostorybook
304 | PacmanXG,pacmanxg,/usr/share/pixmaps/pacmanxg.png,pacmanxg
305 | PainTown,paintown,paintown.png,paintown
306 | Pamac (Install),pamac-install,/usr/share/pamac/icons/32x32/apps/pamac.png,system-software-install
307 | Pamac (Update),pamac-update,/usr/share/pamac/icons/32x32/apps/pamac.png,system-software-update
308 | Parano,parano,parano-icon.png,parano
309 | Pasaffe,pasaffe,/usr/share/pasaffe/media/pasaffe.svg,pasaffe
310 | pdf2png,pdf2png,/usr/share/pixmaps/pdf2png.png,pdf2png
311 | PDFsam,pdfsam,/usr/share/pdfsam/pdf.png,pdfsam
312 | PDFsam Basic,pdfsam-basic,/opt/pdfsam-basic/icon.svg,pdfsam
313 | Pencil,pencil,/usr/share/pencil/skin/classic/icon.svg,pencil
314 | Pencil,pencil,/usr/share/pencil/icon.png,pencil
315 | Penumbra: Black Plague,Penumbra: Black Plague,steam,steam_icon_22120
316 | Penumbra: Overture,Penumbra: Overture,steam,steam_icon_22180
317 | Penumbra: Requiem,Penumbra: Requiem,steam,steam_icon_22140
318 | pgAdmin3,pgadmin3,/usr/share/pgadmin3/pgAdmin3.png,pgAdmin3
319 | pgModeler,pgmodeler,/etc/pgmodeler/pgmodeler_logo.png,pgmodeler
320 | Photoshop CS6,Photoshop CS6,hardcoded,AdobePhotoshop
321 | PHP Storm,jetbrains-phpstorm,/opt/PHPStorm/bin/phpstorm.png,phpstorm
322 | PHP Storm,phpstorm,/opt/phpstorm/bin/webide.png,phpstorm
323 | PHP Storm,phpstorm,hardcoded,phpstorm
324 | PHP Storm,jetbrains-phpstorm,hardcoded,phpstorm
325 | PHP Storm,jetbrains-phpstorm-ce,hardcoded,phpstorm
326 | Pingus,pingus,/usr/share/pingus/images/core/editor/actions.png,pingus
327 | Pixeluvo,pixeluvo,/opt/pixeluvo/pixeluvo.png,pixeluvo
328 | Pixeluvo,pixeluvo,/usr/share/pixeluvo/pixeluvo.png,pixeluvo
329 | Playbox,playbox,/opt/playbox/icon.xpm,playbox
330 | PlayOnLinux,playonlinux,/usr/share/playonlinux/etc/playonlinux.png,playonlinux
331 | Pomidor,pomidor,/usr/share/pomidor/media/pomidor.svg,pomidor
332 | Prison Architect,Prison Architect,steam,steam_icon_233450
333 | Privilege Granting,gksu-properties,gksu.png,gksu
334 | ProjectLibre,projectlibre,/usr/share/pixmaps/projectlibre.png,projectlibre
335 | Pumpa,pumpa,/usr/share/icons/hicolor/32x32/apps/pumpa.png,pumpa
336 | Pushbullet indicator,extras-pushbullet-indicator,/opt/extras.ubuntu.com/pushbullet-indicator/share/pushbullet-indicator/icons/pushbullet-indicator.svg,pushbullet-indicator
337 | Pycharm,pycharm,/opt/pycharm/bin/pycharm.png,pycharm
338 | Pycharm,pycharm,hardcoded,pycharm
339 | Pycharm,jetbrains-pycharm,hardcoded,pycharm
340 | Pycharm,jetbrains-pycharm-ce,hardcoded,pycharm
341 | Pypar 2,pypar2,pypar2.png,pypar2
342 | pyRenamer,pyrenamer,/usr/share/pyrenamer/pyrenamer.png,pyrenamer
343 | Python (v2.6),python2.6,/usr/share/pixmaps/python2.6.xpm,python
344 | Python (v2.7),python2.7,/usr/share/pixmaps/python2.7.xpm,python
345 | Python (v3.0),python3.0,/usr/share/pixmaps/python3.0.xpm,python
346 | Python (v3.1),python3.1,/usr/share/pixmaps/python3.1.xpm,python
347 | Python (v3.2),python3.2,/usr/share/pixmaps/python3.2.xpm,python
348 | Python (v3.3),python3.3,/usr/share/pixmaps/python3.3.xpm,python
349 | Python (v3.4),python3.4,/usr/share/pixmaps/python3.4.xpm,python
350 | Python (v3.5),python3.5,/usr/share/pixmaps/python3.5.xpm,python
351 | QCAD,QCad,/usr/share/pixmaps/qcad_icon.png,qcad_icon
352 | QGifer,qgifer,/usr/share//icons/qgifer.xpm,qgifer
353 | QLE,extras-qlequicklisteditor,/usr/share/pixmaps/qle_pix/logoqle2.svg,logoqle2
354 | QMC2 (SDLMAME),qmc2-sdlmame,/usr/share/qmc2/img/mame.png,mame
355 | qPDFview,qpdfview,/usr/share/qpdfview/qpdfview.svg,qpdfview
356 | Qucs,qucs,/usr/share/pixmaps/big.qucs.xpm,qucs
357 | R,r,/usr/share/pixmaps/r.png,rlogo_icon
358 | Raccoon,raccoon,/usr/share/pixmaps/raccoon.svg,raccoon
359 | Radiotray-NG,radiotray-ng,/usr/share/icons/hicolor/256x256/apps/radiotray-ng-notification.png,radiotray-ng
360 | R Commander,Rcmdr,/usr/lib/R/site-library/Rcmdr/etc/linux/Rcmdr.svg,rcmdr
361 | RedisDesktopManager,rdm,/usr/share/redis-desktop-manager/bin/rdm.png,rdm
362 | Reditr,reditr,/opt/reditr/128x128.png,reditr
363 | Remarkable,remarkable,/usr/share/remarkable/media/remarkable.svg,remarkable
364 | RemoteBox,remotebox,remotebox.png,remotebox
365 | Report Bug,reportbug,/usr/share/reportbug/debian-swirl.svg,debian-swirl
366 | Retroshare,retroshare,/usr/share/pixmaps/retroshare.xpm,retroshare
367 | Ring GNOME CLient,gnome-ring,/usr/share/icons/hicolor/scalable/apps/ring.svg,ring
368 | Risk of Rain,Risk of Rain,steam,steam_icon_248820
369 | RFB Receitanet,rfb-receitanet,/opt/Programas RFB/Receitanet/imagens/Receitanet.xpm,receitanet
370 | RFB Receitanet Ajuda,rfb-receitanet-ajuda,/opt/Programas RFB/Receitanet/imagens/Ajuda.xpm,receitanet-ajuda
371 | Rocket.Chat,rocketchat,/opt/rocketchat/icon.png,rocketchat
372 | Robomongo,robomongo,robomongo.png,robomongo
373 | RubyMine,rubymine,/opt/rubymine/bin/RMlogo.svg,rubymine
374 | RubyMine,jetbrains-rubymine,hardcoded,rubymine
375 | RubyMine,jetbrains-rubymine-ce,hardcoded,rubymine
376 | Sabnzbd,sabnzbd,/usr/share/SABnzbd/icons/nzb.ico,SABnzbd
377 | Scid,scid,/usr/share/pixmaps/scid.xpm,scid
378 | Scid,scid,/usr/share/pixmaps/scid.png,scid
379 | Scid vs. PC,skid_vs_pc,/usr/share/pixmaps/scid.png,scid
380 | Scilab,scilab,/usr/share/scilab/icons/scilab.xpm,scilab
381 | Scilab CLI,scilab-cli,/usr/share/scilab-cli/icons/scilab.xpm,scilab
382 | Scilab adv CLI,scilab-adv-cli,/usr/share/scilab-cli/icons/scilab.xpm,scilab
383 | ScreenRuler,gnome-screenruler,screenruler-icon-32x32.png,screenruler
384 | Scribus,scribus,/usr/share/scribus/icons/scribus.png,scribus
385 | ScudCloud,scudcloud,/opt/scudcloud/resources/scudcloud.png,scudcloud
386 | ScudCloud,scudcloud,/usr/share/pixmaps/scudcloud.png,scudcloud
387 | Sejda PDF,sejda-desktop,/opt/sejda-desktop/icon.svg,sejda
388 | SelekTOR,selekTOR,/usr/share/icons/selektoricon.png,selektoricon
389 | SelekTOR,selektor,/opt/selektor/resources/selektoricon.png,selektoricon
390 | SelekTOR,selektor,/usr/share/icons/selektor-app.png,selektoricon
391 | SelekTOR,selektor,/usr/share/icons/selektoricon.png,selektoricon
392 | SelekTOR Proxy Reset,selektor-proxy-reset,/opt/selektor/resources/selektoricon.png,selektoricon
393 | SelekTOR Proxy Reset,selektor-proxy-reset,/usr/share/icons/selektor-app.png,selektoricon
394 | Shank,Shank,steam,steam_icon_6120
395 | Shank 2,Shank 2,steam,steam_icon_6130
396 | Schematic Editor,schematic,layout.png,schematic
397 | Sid Meier's Civilization V,Sid Meier's Civilization V,steam,steam_icon_8930
398 | Sigram,telegram,/opt/sigram/icons/icon.png,sigram
399 | Skype,skype,skype.png,skype
400 | Slack,slack,/usr/share/pixmaps/slack.png,slack
401 | Slideshow,slideshow,/usr/share/racket/slideshow-exe-icon.png,slideshow
402 | Slingscold,slingscold,/usr/share/icons/slingscold.png,slingscold
403 | SmartGitHG,syntevo-smartgithg-5,/usr/share/smartgithg-5/bin/smartgithg-128.png,smartgithg
404 | SmartGit,smartgit.sh,/usr/share/smartgit/bin/smartgit-128.png,smartgithg
405 | SmartGitHG,smartgithg,/opt/smartgithg/bin/smartgithg-256.png,smartgithg
406 | SmartGit,syntevo-smartgit,syntevo-smartgit.png,smartgithg
407 | SmartGit,syntevo-smartgit,/usr/share/smartgit/bin/smartgit-128.png,smartgithg
408 | Snapshot,Snapshot,steam,steam_icon_204220
409 | Soap UI 5.1.3,SoapUI-5.1.3,/opt/SmartBear/SoapUI-5.1.3/.install4j/SoapUI-5.1.3.png,soapui
410 | SportsTracker,SportsTracker,/opt/SportsTracker/SportsTracker.png,sportstracker
411 | Springseed,springseed,/usr/share/pixmaps/springseed/springseed.svg,springseed
412 | SQLiteBrowser,sqlitebrowser,/usr/share/pixmaps/sqlitebrowser.svg,sqlitebrowser
413 | SQuirrel SQL,squirrel-sql,/usr/share/pixmaps/acorn.ico,squirrel-sql
414 | SSH Tunnel Manager,gstm,gSTM.png,gSTM
415 | Starbound,Starbound,steam,steam_icon_211820
416 | Steam Skin Manager,???,/usr/share/pixmaps/steamskinmanager.svg,steamskinmanager
417 | Streamtuner2,streamtuner2,streamtuner2.png,streamtuner2
418 | Sublime Text,sublime-text_subl,/snap/sublime-text/.*/opt/sublime_text/Icon/256x256/sublime-text.png, sublime_text
419 | SuperTuxKart,supertuxkart,/usr/share/pixmaps/supertuxkart_128.png,supertuxkart
420 | SVG Cleaner,svgcleaner,/usr/share/icons/hicolor/scalable/apps/svgcleaner.svg,svgcleaner
421 | Syncthing-GTK,syncthing-gtk,/usr/share/syncthing-gtk/icons/st-logo-128.png,syncthing-gtk
422 | Synergy,synergy,/usr/share/icons/synergy.ico,synergy
423 | Synology Cloud Station Drive,synology-cloud-station-drive,/opt/Synology/CloudStation/images/ico_72_cloud_station.png,synology-cloud-station
424 | Teamspeak 3,TeamSpeak3,/opt/TeamSpeak3-Client-linux_amd64/styles/default/logo-128x128.png,teamspeak3
425 | Teamspeak 3,teamspeak3,teamspeak3.xpm,teamspeak3
426 | TeamViewer,Teamviewer-teamviewer9,/opt/teamviewer9/tv_bin/desktop/teamviewer.png,teamviewer
427 | TeamViewer,teamviewer-teamviewer9,/opt/teamviewer9/tv_bin/desktop/teamviewer.png,teamviewer
428 | TeamViewer,teamviewer-teamviewer10,/opt/teamviewer/tv_bin/desktop/teamviewer.png,teamviewer
429 | TeamViewer,teamviewer-teamviewer10,/opt/teamviewer10/tv_bin/desktop/teamviewer.png,teamviewer
430 | TeamViewer,teamviewer-teamviewer11,/opt/teamviewer/tv_bin/desktop/teamviewer.png,teamviewer
431 | TeamViewer,teamviewer,/opt/teamviewer/tv_bin/desktop/teamviewer.png,teamviewer
432 | Telegram,telegram,/usr/share/pixmaps/telegram.png,telegram
433 | Telegram,telegram,/opt/telegram/telegram.svg,telegram
434 | Terra Terminal Emulator,terra,/usr/share/terra/image/terra.svg,terra
435 | TimeShift,TimeShift,/usr/share/pixmaps/timeshift.png,timeshift
436 | Tixati,tixati,/usr/share/icons/hicolor/48x48/apps/tixati.png,tixati
437 | Tkabber,tkabber,/usr/share/pixmaps/tkabber.xpm,tkabber
438 | tkPacman,tkpacman,Icon=/usr/share/tkpacman/icons/tkpacman-icon.png,tkpacman
439 | Tomate,tomate,/usr/share/tomate/media/tomate.png,tomate
440 | Tor Browser,tor-browser-en,/usr/share/pixmaps/tor-browser-en.png,tor-browser-en
441 | Tor Browser,tor-browser,/usr/share/pixmaps/tor-browser.png,tor-browser
442 | Touchpad Indicator,touchpad-indicator,/usr/share/pixmaps/touchpad-indicator,touchpad-indicator
443 | Trelby,trelby,/opt/trelby/resources/icon256.png,trelby
444 | Trine,Trine,steam,steam_icon_35700
445 | TuxGuitar,tuxguitar,/opt/tuxguitar/share/skins/Oxygen/icon-96x96.png,tuxguitar
446 | TV-MAXE,tvmaxe,/usr/share/tv-maxe/tvmaxe.png,tvmaxe
447 | Typhoon,typhoon,/usr/share/typhoon/media/typhoon.svg,typhoon
448 | UberWriter,uberwriter,/usr/share/uberwriter/media/uberwriter.svg,uberwriter
449 | UberWriter,uberwriter,/opt/extras.ubuntu.com/uberwriter/share/uberwriter/media/uberwriter.svg,uberwriter
450 | Ubuntu IBus Table Setup,ibus-setup-table,/usr/share/ibus-table/icons/chinese.svg,ibus-setup
451 | Ubuntu Scopes,unity8-dash,/usr/share/unity8/Dash/unity8-dash.png,unity8-dash
452 | Ubuntu System Settings,ubuntu-system-settings,/usr/share/ubuntu/settings/system/system-settings.png,system-settings
453 | Ubuntu Terminal,com.ubuntu.terminal,/usr/share/terminal/terminal64.png,terminal
454 | Ubuntu Web Browser,webbrowser-app,/usr/share/webbrowser-app/webbrowser-app.png,webbrowser-app
455 | UFW GTK,ufw-gtk,/usr/share/ufw-frontends/icon.png,firewall
456 | Unison,unison,unison.png,unison
457 | Unison-GTK,unison-gtk,/usr/share/pixmaps/unison-gtk.svg,unison-gtk
458 | Upwork,upwork,upwork.png,upwork
459 | Valentina Studio,VStudio,/opt/VStudio/Resources/vstudio.png,vstudio
460 | Variety,variety,/usr/share/variety/media/variety.svg,variety
461 | Variety,variety,/opt/extras.ubuntu.com/variety/share/variety/media/variety.svg,variety
462 | Variety,extras-variety,/opt/extras.ubuntu.com/variety/share/variety/media/variety.svg,variety
463 | Viber,viber,/usr/share/pixmaps/viber.png,viber
464 | Visual Studio,visual-studio-code,hardcoded,visual-studio-code
465 | Viva,viva,viva.png,viva
466 | VPaint,vpaint,/usr/share/pixmaps/vpaint.png,vpaint
467 | Warmux,warmux,warmux_128x128.png,warmux
468 | Web Storm,webstorm,/opt/webstorm/bin/webstorm.svg,webide
469 | Web Storm,jetbrains-webstorm,hardcoded,webide
470 | Web Storm,jetbrains-webstorm-ce,hardcoded,webide
471 | Widelands,widelands,/usr/share/games/widelands/pics/wl-ico-64.png,widelands
472 | Wings3D,wings3d,/usr/share/icons/wings3d.xpm,wings3d
473 | WinUSB,winusbgui,winusbgui-icon.png,winusb
474 | Wireframe Sketcher,wireframesketcherstudio,/usr/share/icons/hicolor/128x128/apps/WireframeSketcher.png,wireframe-sketcher
475 | Wolfenstein MP,wolfmp,/usr/share/pixmaps/WolfMP.xpm,wolfmp
476 | Wolfenstein SP,wolfsp,/usr/share/pixmaps/WolfSP.xpm,wolfsp
477 | Wordpress Desktop Client,wordpress-com,/usr/local/WordPress.com/WordPress.png,wordpress
478 | WPS Presentation,wps-office-wpp,/usr/share/icons/hicolor/48x48/apps/wps-office-wppmain.png,wps-office-wppmain
479 | WPS Spreadsheet,wps-office-et,/usr/share/icons/hicolor/48x48/apps/wps-office-etmain.png,wps-office-etmain
480 | WPS Writer,wps-office-wps,/usr/share/icons/hicolor/48x48/apps/wps-office-wpsmain.png,wps-office-wpsmain
481 | wxFormBuilder,wxformbuilder,wxformbuilder.png,wxformbuilder
482 | wxMaxima,wxmaxima,/usr/share/wxMaxima/wxmaxima.png,wxmaxima
483 | wxMEdit,wxmedit,/usr/share/pixmaps/wxmedit.png,wxmedit
484 | X-Diagnose,xdiagnose,/usr/share/xdiagnose/icons/microscope.svg,xdiagnose
485 | Xjump,xjump,xjump-icon.xpm,xjump-icon
486 | Xmind,xmind,/usr/local/xmind/xmind-logo-36.png,xmind
487 | XnViewMP,XnView,/opt/XnView/xnview.png,xnview
488 | XnViewMP,xnviewmp,/opt/xnviewmp/xnview.png,xnview
489 | Xonotic,xonotic,/usr/share/pixmaps/xonotic.png,xonotic
490 | YATE,yate-qt4,/usr/share/pixmaps/null_team-48.png,yate
491 | YATE,yate-qt4,null_team-48.png,yate
492 | YouTubeDL GUI,youtube-dlg,/usr/share/pixmaps/youtube-dlg.png,youtube-dlg
493 | Zenmap,zenmap,/usr/share/zenmap/pixmaps/zenmap.png,zenmap
494 | Zenmap (root),zenmap-root,/usr/share/zenmap/pixmaps/zenmap.png,zenmap
495 | Zoom,Zoom,Zoom.png,Zoom
496 | Zoom,Zoom,zoom,Zoom
497 | Zotero,zotero,/usr/lib/zotero/chrome/icons/default/default256.png,zotero
498 | ZuluCrypt,zuluCrypt,zuluCrypt.png,zulucrypt
499 | ZuluCrypt Key Server,zuluCryptKeyServer,zuluCrypt.png,zulucrypt
500 | ZuluMount,zuluMount,zuluMount.png,zulumount
501 |
--------------------------------------------------------------------------------