Quickly place a window to another screen using only the keyboard

http://askubuntu.com/questions/22207/quickly-place-a-window-to-another-screen-using-only-the-keyboard

  1. Install CompizConfig Settings Manager 

    sudo apt-get install compizconfig-settings-manager
    
  2. Run it → Go to bottom (Window Management) → Go to "Put."
  3. Enable the plugin.
  4. Configure shortcut for "Put to next Output."
  5. Log out and back in again.

If the plugin put doesn‘t appear in CCSM, install the compiz-plugins  package. (sudo apt-get update && sudo apt-get install compiz-plugins)

EDIT: The required plugin package is now called compiz-plugins on 12.10 and higher. compiz-plugins-extra  is still used for 12.04.

时间: 2024-07-31 14:32:49

Quickly place a window to another screen using only the keyboard的相关文章

Centering window on the screen

The following script shows how we can center a window on the desktop screen. #!/usr/bin/python # -*- coding: utf-8 -*- """ ZetCode PyQt4 tutorial This program centers a window on the screen. author: Jan Bodnar website: zetcode.com last edit

《JAVASCRIPT高级程序设计》window/location/navigator/screen/history对象

如果要在web中使用JAVASCRIPT,那么BOM(浏览器对象模型)毫无疑问是最重要的部分.BOM提供了很多对象,例如,window.location.navigator.screen.history对象,下面我们来一一介绍这些对象的相关功能.先从window对象开始,它表示浏览器的一个实例. window对象: 一.全局作用域 window对象在ECMAScript扮演者global对象的角色,因此在全局作用域中声明的变量和函数都会成为window对象的属性和方法:但是通过这两种方式定义的属

JavaScript之BOM五大对象(window;location;navigator;screen;history)

一.window 1.浏览器窗口与页面各部分尺寸 2.间歇调用与超时调用 setInterval(function,time(以毫秒计)) 返回:时间Id号(为clearInterval(timeId)方法提供标识记号) clearInterval(timeId); //取消间歇调用 setTimeout(function,time(以毫秒计)) 返回:时间Id号(为clearTimeout(timeId)方法提供标识记号) clearTimeout(timeId); //取消超时调用 3.导航

[borwser window窗口大小 算是screen补充吧]主要因为移动IE游览器 写了个兼容

先上图吧 来上代码 1 console.log(window.outerWidth + '--' + window.outerHeight);//只读的整数,声明了整个窗口的XY 2 3 var width = window.innerWidth; 4 var height = window.innerHeight; 5 console.log("window.inner--" + width+ '--' + height); 6 console.log('-------------'

Essential Windows Keyboard Shortcuts

Using keyboard shortcuts help you use your laptop without a mouse Keyboard shortcuts greatly enhance your productivity and save you a whole lot of time. Instead of pointing and clicking with the touchpad or external mouse, you can keep your hands on

JavaScript权威设计--Window对象(简要学习笔记十三)

1.Window对象是所有客户端JavaScript特性和API的主要接入点. Window对象中的一个重要属性是document,它引用Document对象. JavaScript程序可以通过Document对象和它包含的Element对象遍历和管理文档. 2.URL中的JavaScript 在URL后面跟一个JavaScript:协议限定符.里面的代码会作为JavaScript代码进行运行,需用分号分割. 如: <a href="javascript:alert('OK!')"

X Window 程式设计

X Window 程式设计 转   http://www.cppblog.com/zmj/archive/2007/05/18/24331.html X Window 程式设计 X Window 程式设计入门 http://cnpa.yzu.edu.tw/~thinker 作者:李圭烽 (Thinker; [email protected]) (2001-06-01 17:04:00) -------------------------------------------------------

Web开发技术&mdash;&mdash;Javascript Window BOM

JavaScript Window - 浏览器对象模型 浏览器对象模型 (BOM) 使 JavaScript 有能力与浏览器"对话". 浏览器对象模型 (BOM) 浏览器对象模型(Browser Object Model)尚无正式标准. 由于现代浏览器已经(几乎)实现了 JavaScript 交互性方面的相同方法和属性,因此常被认为是 BOM 的方法和属性. Window 对象 所有浏览器都支持 window 对象.它表示浏览器窗口. 所有 JavaScript 全局对象.函数以及变量

多个显示器, window.open的定位

// Pops a window relative to the current window position function popup(url, winName, xOffset, yOffset) { var x = (window.screenX || window.screenLeft || 0) + (xOffset || 0); var y = (window.screenY || window.screenTop || 0) + (yOffset || 0); return