Configure task switcher in KDE

Task switcher in KDE is used to configure the behavior for navigating through windows. It has two modes, main and alternative. By default, the task switcher in main mode uses Alt+Tab to switch between different windows (from left to right) and uses Alt+Shift+Backtab to switch in a reverse order. And the default effect for this mode is “Layout based switcher”, which is similar to the window navigating behavior on Microsoft Windows.

User can further select one from several existing layouts like the following. It can be seen that compared to both Windows and Macintosh operating systems, Linux provides more freedom and flexibility to suit various users with diversified tastes.

Besides the familiar Altl+Tab window navigating operation, user can specify another one in the alternative mode. Here, the Win+Tab behavior on Windows 7 can be simulated, which is called “Flip Switch” in KDE task switcher (Note: the Win key is called Meta in KDE). In addition, there are more choices for the user. For example, the one I‘m using is “Cover Switch”. It has the following appearance:

Similar to the “Layout based switch”, windows can also be switched in reversed order in “Cover Switch” mode. However, when I try to assign Meta+Shift+Backtab shortcut to this operation, only the key combination, Meta+Shift+Tab, can be captured, and there is no way to find the Backtab key on the keyboard. The Meta+Shift+Tab can only call out the cover interface and switch to the next window in reverse order, and it cannot be used to continuously cycle through each window. The only way to assign the key combination Meta+Shift+Backtab to reverse cover switch is:

first, log off the current session;

second, manually edit the corresponding line in the file ~/.kde/share/config/kglobalshortcutsrc;

finally, go back to X environment and login again.

Configure task switcher in KDE,布布扣,bubuko.com

时间: 2024-11-05 18:37:41

Configure task switcher in KDE的相关文章

自己总结的 iOS ,Mac 开源项目以及库,知识点------持续更新

自己在 git  上看到一个非常好的总结的东西,但是呢, fork  了几次,就是 fork  不到我的 git 上,干脆复制进去,但是,也是认真去每一个每一个去认真看了,并且也是补充了一些,感觉非常棒,所以好东西要分享,为啥用 CN 博客,有个好处,可以随时修改,可以持续更新,不用每次都要再发表,感觉这样棒棒的 我们 自己总结的iOS.mac开源项目及库,持续更新.... github排名 https://github.com/trending,github搜索:https://github.

[Visual Studio Code] 执行python

Visual Studio Code 作为一种IDE,实时执行python程序,对调试或理解执行步骤起到了很大的作用!因此,以下对此作一简单接受,希望广大园友提出宝贵意见! 1. 官方说明 http://code.visualstudio.com/docs/editor/tasks 2. 配置执行环境 Note: Please note that task support is only available when working on a workspace folder. It is no

iOS开发 非常全的三方库、插件、大牛博客等等

UI 下拉刷新 EGOTableViewPullRefresh- 最早的下拉刷新控件. SVPullToRefresh- 下拉刷新控件. MJRefresh- 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者上拉刷新功能.可以自定义上下拉刷新的文字说明.具体使用看"使用方法". (国人写) XHRefreshControl- XHRefreshControl 是一款高扩展性.低耦合度的下拉刷新.上提加载更多的组件.(国人写) CBStoreHo

Spring 被初始化两次(Spring-Task定时任务执行两次)分析和解决方法

初始问题: 采用Spring-Task配置定时任务,任务执行两次,该问题在Eclipse调试环境上不出现 分析问题: 第一步:开始怀疑业务逻辑,通过排查和定位排除业务原因(通过日志可以查看多次执行) 1 @Component("collection.car") 2 public class CollectionCarsJob { 3 private static Logger logger = LoggerFactory.getLogger(CollectionCarsJob.clas

iOS开发之资料收集

github排名:https://github.com/trending, github搜索:https://github.com/search. 此文章转自github:https://github.com/Tim9Liu9/TimLiu-iOS UI 下拉刷新 EGOTableViewPullRefresh- 最早的下拉刷新控件. SVPullToRefresh- 下拉刷新控件. MJRefresh- 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者

Github上关于iOS的各种开源项目集合(强烈建议大家收藏,查看,总有一款你需要)

下拉刷新 EGOTableViewPullRefresh - 最早的下拉刷新控件. SVPullToRefresh - 下拉刷新控件. MJRefresh - 仅需一行代码就可以为UITableView或者CollectionView加上下拉刷新或者上拉刷新功能.可以自定义上下拉刷新的文字说明.具体使用看“使用方法”. (国人写) XHRefreshControl - XHRefreshControl 是一款高扩展性.低耦合度的下拉刷新.上提加载更多的组件.(国人写) CBStoreHouseR

How to debug .NET Core RC2 app with Visual Studio Code on Windows?

Simone Chiaretta (http://codeclimber.net.nz/archive/2016/05/20/How-to-debug-NET-Core-RC2-app-with-Visual-Studio.aspx) So, you installed .NET Core RC2 , you followed the getting started tutorial and you got your “Hello World!” printed on your command

剖析并利用Visual Studio Code在Mac上编译、调试c#程序

0x00 前言 一周多以前的微软的Build大会上,微软发布了一个让很多人眼前一亮的工具,也是本文的主角——Visual Studio Code.很多使用Windows的朋友都很高兴,认为又多了一个很不错的文档编辑器.不过匹夫更关心的是它的跨平台能力,这不,匹夫偷得半日闲,写篇小文来聊聊在Mac上如何使用Visual Studio Code编译和调试C#代码,最后匹夫也会尝试把Visual Studio Code嵌入Unity3D中,作为一个准“IDE”使用. 0x01 Visual Studi

VSCode配置TypeScript

网上教程一堆,记录下我认为的关键点: 1.创建tsconfig.json,使用命令行在项目文件夹下输入“tsc --init”即可: 2.创建tasks.json,在VSCode中,使用ctrl+shift+p打开命令板,然后输入configure task Runner,按回车选择typescript-tsconfig.json即可: 3.执行tasks.json的命令,即把.ts编译为.js文件,按ctrl+shift+b可以执行该命令,如果报错,可以重启VSCode试试: