├── .babelrc ├── .gitignore ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── dev ├── SettingsView │ └── index.html └── TrayView │ └── index.html ├── electron_src ├── images │ ├── appIcon │ │ └── icon.png │ └── trayIcon │ │ ├── trayicon.png │ │ └── trayicon@2x.png ├── ipcMethods.js ├── main.js └── scripts │ ├── createFiles.sh │ ├── executeLinux.sh │ ├── executeMac.sh │ ├── getCommand.sh │ ├── getDir.sh │ ├── getMostUsed.sh │ └── getTime.sh ├── package.json ├── react_src ├── Components │ └── Card │ │ ├── index.css │ │ └── index.js ├── Views │ ├── SettingsView │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── TrayView │ │ ├── MostUsed │ │ └── index.js │ │ ├── RecentlyUsed │ │ └── index.js │ │ ├── Saved │ │ └── index.js │ │ ├── index.css │ │ ├── index.html │ │ └── index.js └── images │ └── logo.svg └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | react_bin 3 | electron_src/env.json 4 | dist 5 | .DS_Store -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/README.md -------------------------------------------------------------------------------- /dev/SettingsView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/dev/SettingsView/index.html -------------------------------------------------------------------------------- /dev/TrayView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/dev/TrayView/index.html -------------------------------------------------------------------------------- /electron_src/images/appIcon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/images/appIcon/icon.png -------------------------------------------------------------------------------- /electron_src/images/trayIcon/trayicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/images/trayIcon/trayicon.png -------------------------------------------------------------------------------- /electron_src/images/trayIcon/trayicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/images/trayIcon/trayicon@2x.png -------------------------------------------------------------------------------- /electron_src/ipcMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/ipcMethods.js -------------------------------------------------------------------------------- /electron_src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/main.js -------------------------------------------------------------------------------- /electron_src/scripts/createFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/scripts/createFiles.sh -------------------------------------------------------------------------------- /electron_src/scripts/executeLinux.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | x-terminal-emulator -e "bash -c 'cd $1;$2;$SHELL'" -------------------------------------------------------------------------------- /electron_src/scripts/executeMac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/scripts/executeMac.sh -------------------------------------------------------------------------------- /electron_src/scripts/getCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/scripts/getCommand.sh -------------------------------------------------------------------------------- /electron_src/scripts/getDir.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cat ~/.command_cache/bash_history_dir -------------------------------------------------------------------------------- /electron_src/scripts/getMostUsed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/electron_src/scripts/getMostUsed.sh -------------------------------------------------------------------------------- /electron_src/scripts/getTime.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cat ~/.command_cache/bash_history_time -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/package.json -------------------------------------------------------------------------------- /react_src/Components/Card/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Components/Card/index.css -------------------------------------------------------------------------------- /react_src/Components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Components/Card/index.js -------------------------------------------------------------------------------- /react_src/Views/SettingsView/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/SettingsView/index.css -------------------------------------------------------------------------------- /react_src/Views/SettingsView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/SettingsView/index.html -------------------------------------------------------------------------------- /react_src/Views/SettingsView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/SettingsView/index.js -------------------------------------------------------------------------------- /react_src/Views/TrayView/MostUsed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/MostUsed/index.js -------------------------------------------------------------------------------- /react_src/Views/TrayView/RecentlyUsed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/RecentlyUsed/index.js -------------------------------------------------------------------------------- /react_src/Views/TrayView/Saved/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/Saved/index.js -------------------------------------------------------------------------------- /react_src/Views/TrayView/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/index.css -------------------------------------------------------------------------------- /react_src/Views/TrayView/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/index.html -------------------------------------------------------------------------------- /react_src/Views/TrayView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/Views/TrayView/index.js -------------------------------------------------------------------------------- /react_src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/react_src/images/logo.svg -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SkrewEverything/Command-Cache/HEAD/webpack.config.js --------------------------------------------------------------------------------