├── .gitignore ├── LP_Pinner.cs ├── LP_Process.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── TrayIconBuster.cs ├── TrayIconBuster.csproj ├── TrayIconBuster.sln ├── Utilities.cs ├── app.config └── license.htm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/.gitignore -------------------------------------------------------------------------------- /LP_Pinner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/LP_Pinner.cs -------------------------------------------------------------------------------- /LP_Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/LP_Process.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/README.md -------------------------------------------------------------------------------- /TrayIconBuster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/TrayIconBuster.cs -------------------------------------------------------------------------------- /TrayIconBuster.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/TrayIconBuster.csproj -------------------------------------------------------------------------------- /TrayIconBuster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/TrayIconBuster.sln -------------------------------------------------------------------------------- /Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/Utilities.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/app.config -------------------------------------------------------------------------------- /license.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erik434/TrayIconBuster/HEAD/license.htm --------------------------------------------------------------------------------