How to Stop Application Switcher ?
1. Create Rest_controller.php inside controllers and paste code: <?php defined('BASEPATH') OR exit('No direct script access allowed'); require APPPATH . '/libraries/API_Controller.php'; class Rest_controller extends API_Controller { public function __construct() { parent::__construct(); } public function index() { $this->api_return( [ 'status' => true, 'result' => "Welcome to Testservices." ], 200); } } ?> 2. Create api.php inside config and paste code : <?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * API Key Header Name */ $config['api_key_header_name'] = 'X-API-KEY'; /** * API Key GET Request Parameter Name */ $config['api_key_get_name'] = 'key'; /** * API Key POST Request Parameter Name ...
ReplyDeleteIt's due to Unity and Compiz's application switchers both being enabled with the same keybinding (alt+tab).
You can disable the Compiz Application Switcher by:
sudo apt install compizconfig-settings-manager
Open the CompizConfig Settings Manager by launching "ccsm"
Select "Window Management"
Uncheck "Application Switcher"