The Window Manager Construction Toolkit Kwin Goes Scripting

Total Page:16

File Type:pdf, Size:1020Kb

The Window Manager Construction Toolkit Kwin Goes Scripting The Window Manager Construction Toolkit KWin goes Scripting Martin Gr¨aßlin [email protected] Akademy 2012 01.07.2012 Agenda 1 History of KWin Scripting 2 Scriptable Types of KWin 3 Influence on Codebase 4 Example of 3rd Party Usage 5 Development of Scripts 6 What's Next? Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 2/43 Agenda 1 History of KWin Scripting 2 Scriptable Types of KWin 3 Influence on Codebase 4 Example of 3rd Party Usage 5 Development of Scripts 6 What's Next? Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 3/43 Tokamak IV Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 4/43 Akademy 2010 Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 5/43 GSoC as Prototype Google Summer of Code 2010 Implemented Scripting Support API hand-crafted API Documentation hand-written Strong interweaving of core and scripting Scripts invoked at wrong places Scripting module undocumented Prototype This prototype should never have been merged! Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 6/43 GSoC as Prototype Google Summer of Code 2010 Implemented Scripting Support API hand-crafted API Documentation hand-written Strong interweaving of core and scripting Scripts invoked at wrong places Scripting module undocumented Prototype This prototype should never have been merged! Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 6/43 Going Generic: Animation Effect Issues with Effects Many Effects to animate window state changes Code got copied over and adjusted Changes to Effect System difficult to implement Same errors present in many Effects AnimationEffect Base implementation handling animation Effects only react on state changes Better suited for 3rd Party usage Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 7/43 Going Generic: Animation Effect Issues with Effects Many Effects to animate window state changes Code got copied over and adjusted Changes to Effect System difficult to implement Same errors present in many Effects AnimationEffect Base implementation handling animation Effects only react on state changes Better suited for 3rd Party usage Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 7/43 Plasma Active Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 8/43 Agenda 1 History of KWin Scripting 2 Scriptable Types of KWin 3 Influence on Codebase 4 Example of 3rd Party Usage 5 Development of Scripts 6 What's Next? Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 9/43 Window Switcher Window Switcher Problematic Not one size fits all possible Caption length very different Thumbnails only useful if large Icons partially useful Effects do not use a toolkit Solution since 4.8 Windows are provided in a Model QML for GUI DeclarativeItem to render a thumbnail Documentation on Techbase http://ur1.ca/9jzyw Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 10/43 Window Switcher Window Switcher Problematic Not one size fits all possible Caption length very different Thumbnails only useful if large Icons partially useful Effects do not use a toolkit Solution since 4.8 Windows are provided in a Model QML for GUI DeclarativeItem to render a thumbnail Documentation on Techbase http://ur1.ca/9jzyw Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 10/43 Desktop Switcher Window Switcher's Little Brother Shares Framework with Window Switcher QML Support since 4.9 Only one available layout DeclarativeItem for Desktop Preview missing Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 11/43 QtScript Primary Scripting Functionality function synchronizeSwitcher(c) { Clients exported to Script c.skipSwitcher= c.skipTaskbar; Wrapper around Workspace } Full access to KWin's function setup(c) { synchronizeSwitcher(c); Options c.skipTaskbarChanged.connect(c, Everything QProperty based synchronizeSwitcher); } Script (un)loading at workspace.clientAdded.connect(setup); Runtime through D-Bus // connect all existing clients Global Shortcut Support var clients= workspace.clientList(); for(vari=0; i<clients.length; i++){ Screen Edge Support setup(clients[i]); } Configuration Support Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 12/43 Declarative Scripts GUI for QtScript Same API exported as for import QtQuick 1.0 import org.kde.kwin 0.1 as KWin QtScripts ListView { objectName: "listView" Support Plasma model: clientModel Components delegate: KWin.ThumbnailItem { wId: windowId Support Window Switcher's width: 200 Thumbnail Item height: 200 } Limited Usage: no \real" } windows Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 13/43 Effect Scripts Generic++ var fadeInTime, fadeOutTime, fade; function loadConfig() { Based on AnimationEffect fadeInTime= animationTime( effect.readConfig("FadeInTime", 150)); QtScript based fadeOutTime= animationTime( No Script execution in effect.readConfig("FadeOutTime", 150)); fade= effect.readConfig( rendering phase "FadeWindows", true); } API close to KWin Scripts loadConfig(); No access to Workspace effect.configChanged.connect( function() {loadConfig();}); Access to Windows instead effects.windowAdded.connect(function(w) { if (fade&& isFadeWindow(w)) { of Clients effect.animate(w, Not as elaborated as KWin Effect.Opacity, fadeInTime, 1.0, 0.0); } Scripts }); Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 14/43 Window Decorations Aurorae 3 Rewritten in QML Decoration Bindings a side-product Theme Preview is interactive More To Come QML theme support under development Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 15/43 Agenda 1 History of KWin Scripting 2 Scriptable Types of KWin 3 Influence on Codebase 4 Example of 3rd Party Usage 5 Development of Scripts 6 What's Next? Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 16/43 Dogfoding License: CC BY 3.0, by Wikimedia Commons Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 17/43 Options Historic Artifacts Fixed with Scripts Options a singleton to all Member variables are private Config values Access only through Implemented access to Getters&Setters public member variables Dependency between Dependencies between options ensured through options not ensured setters Design present in first QProperties added commit Documentation added setAutoRaise(config.readEntry("AutoRaise", Options::defaultAutoRaise())); setAutoRaiseInterval(config.readEntry("AutoRaiseInterval", Options::defaultAutoRaiseInterval())); setDelayFocusInterval(config.readEntry("DelayFocusInterval", Options::defaultDelayFocusInterval())); setShadeHover(config.readEntry("ShadeHover", Options::defaultShadeHover())); setShadeHoverInterval(config.readEntry("ShadeHoverInterval", Options::defaultShadeHoverInterval())); Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 18/43 Desktop Change OSD Improvements through Script Dropped a Build Option Workspace had code to create OSD Fixed several bugs Removed 700 lines C++ code Just 280 lines of QML Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 19/43 Simple Effect Ported Effects Fade Fade Desktop Prototype for Sheet More? Waiting for you! Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 20/43 Simple Effect Ported Effects Fade Fade Desktop Prototype for Sheet More? Waiting for you! Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 20/43 Window Switcher Grid Present Windows Mode Window Switching in Present Windows was a Hack Did not work well with Multiple Screens Best overview for many windows Requires Desktop Effects Grid Window Switcher Layout Does not require Desktop Effects Proper Multi-Screen support Dropped special handling in effect (180 SLOC) Martin Gr¨aßlin| The Window Manager Construction Toolkit | Akademy | Tallinn | www.kde.org | 21/43 Introduction of QProperties Preparing for Wayland class Client : public Toplevel Describes Client's interface { Q_OBJECT /** Adds documentation * Whether this Client is active or not. Use Workspace::activateClient() to activate a Client. * @see Workspace::activateClient Used by Effect System **/ Q_PROPERTY(bool active READ isActive NOTIFY activeChanged) 40 properties on Toplevel /** * The Caption of the Client. Read from WM_NAME property together with a suffix for hostname and shortcut. * To read only the caption as provided by WM_NAME, use the getter with an additional @c false value. 37 properties on Client **/ Q_PROPERTY(QString caption READ caption NOTIFY captionChanged) 65 properties on Options /** * Whether the window can be closed by the user. The value is evaluated each time the getter is called. 14 properties on Workspace * Because of that no changed signal is provided. **/ Wrapper Q_PROPERTY(bool closeable READ isCloseable) /** * The desktop this Client is on. If the Client is on all desktops the property has value -1. Most of Extended Window **/ Manager Hints exported Q_PROPERTY(int
Recommended publications
  • KDE 2.0 Development, Which Is Directly Supported
    23 8911 CH18 10/16/00 1:44 PM Page 401 The KDevelop IDE: The CHAPTER Integrated Development Environment for KDE by Ralf Nolden 18 IN THIS CHAPTER • General Issues 402 • Creating KDE 2.0 Applications 409 • Getting Started with the KDE 2.0 API 413 • The Classbrowser and Your Project 416 • The File Viewers—The Windows to Your Project Files 419 • The KDevelop Debugger 421 • KDevelop 2.0—A Preview 425 23 8911 CH18 10/16/00 1:44 PM Page 402 Developer Tools and Support 402 PART IV Although developing applications under UNIX systems can be a lot of fun, until now the pro- grammer was lacking a comfortable environment that takes away the usual standard activities that have to be done over and over in the process of programming. The KDevelop IDE closes this gap and makes it a joy to work within a complete, integrated development environment, combining the use of the GNU standard development tools such as the g++ compiler and the gdb debugger with the advantages of a GUI-based environment that automates all standard actions and allows the developer to concentrate on the work of writing software instead of managing command-line tools. It also offers direct and quick access to source files and docu- mentation. KDevelop primarily aims to provide the best means to rapidly set up and write KDE software; it also supports extended features such as GUI designing and translation in con- junction with other tools available especially for KDE development. The KDevelop IDE itself is published under the GNU Public License (GPL), like KDE, and is therefore publicly avail- able at no cost—including its source code—and it may be used both for free and for commer- cial development.
    [Show full text]
  • Keyboard Shortcuts for Windows Computers
    AbilityNet Factsheet – May 2019 Keyboard Shortcuts for Windows computers This factsheet highlights some of the actions you can carry out quickly on your computer by using key combinations rather than using the mouse to navigate menus and options. These key combinations are referred to as shortcuts as they are often a much quicker way of carrying out tasks. They can also be particularly useful for repetitive actions. AbilityNet Factsheet: Keyboard Shortcuts Page 1 of 12 www.abilitynet.org.uk/factsheets May 2019 Contents 1. What are shortcuts ............................................................................................. 3 A note on Apple (Mac) computers ........................................................................... 3 Conventions ............................................................................................................. 3 Navigating Within Windows Using the Keyboard ..................................................... 4 Reference Chart ...................................................................................................... 7 Autocorrect as a shortcut ......................................................................................... 9 2. How can AbilityNet help? ................................................................................. 10 Free advice and home visits .................................................................................. 10 My Computer My Way ........................................................................................... 10 Workplace
    [Show full text]
  • The NTFS File System
    The NTFS File System OVERVIEW: This lab is part of a series of lab exercises intended to support courseware for Forensics training. The development of this document is funded by the Department of Labor (DOL) Trade Adjustment Assistance Community College and Career Training (TAACCCT) Grant No. TC-22525-11-60-A-48. In this lab, students will enumerate hosts on the network using various tools. This lab includes the following tasks: 1 – Examining the NTFS File System 2 – Using a HEX Editor to explore an NTFS Partition 3 – Verifying and viewing the image details 4 – Analyzing an NTFS Partition With Autopsy Key TermDescription The acronym NTFS stands for New Technology File System. The NTFS File System was originally introduced with the Windows NT. NTFS is a journaling file system which means it keeps a log of changes being written to the disk. If a computer is shutdown improperly, it will have a better NTFS chance of recovery if it has a journaling file system. Files and folder access can be restricted with the security feature of NTFS. Starting with Windows 2000, Microsoft included the Encrypted File System, or EFS, as an NTFS feature. EFS allows users to encrypt files to protect against unauthorized access. A Feature of the NTFS File system that allows you to encrypt files and folders. The feature EFS became available on the NTFS File system starting with Windows 2000, and is still available today on Windows 10 and Server 2016. An Alternate Data Stream, or ADS, is a feature of the NTFS file system that allowed compatibility ADS with older versions of the Mac OS.
    [Show full text]
  • Mac Keyboard Shortcuts Cut, Copy, Paste, and Other Common Shortcuts
    Mac keyboard shortcuts By pressing a combination of keys, you can do things that normally need a mouse, trackpad, or other input device. To use a keyboard shortcut, hold down one or more modifier keys while pressing the last key of the shortcut. For example, to use the shortcut Command-C (copy), hold down Command, press C, then release both keys. Mac menus and keyboards often use symbols for certain keys, including the modifier keys: Command ⌘ Option ⌥ Caps Lock ⇪ Shift ⇧ Control ⌃ Fn If you're using a keyboard made for Windows PCs, use the Alt key instead of Option, and the Windows logo key instead of Command. Some Mac keyboards and shortcuts use special keys in the top row, which include icons for volume, display brightness, and other functions. Press the icon key to perform that function, or combine it with the Fn key to use it as an F1, F2, F3, or other standard function key. To learn more shortcuts, check the menus of the app you're using. Every app can have its own shortcuts, and shortcuts that work in one app may not work in another. Cut, copy, paste, and other common shortcuts Shortcut Description Command-X Cut: Remove the selected item and copy it to the Clipboard. Command-C Copy the selected item to the Clipboard. This also works for files in the Finder. Command-V Paste the contents of the Clipboard into the current document or app. This also works for files in the Finder. Command-Z Undo the previous command. You can then press Command-Shift-Z to Redo, reversing the undo command.
    [Show full text]
  • MULTIPLE ACCUDRAW SHORTCUT FILES by Seth M
    MULTIPLE ACCUDRAW SHORTCUT FILES By Seth M. Cohen, ProSoft NET Is your MicroStation desktop cluttered with toolframes & toolbars? Are you sacrificing precious desktop real estate because “YOU GOTTA HAVE THAT ICON”? If so, then creating multiple AccuDraw key-in shortcuts will let you reclaim your desktop! What is AccuDraw? According to the MicroStation/J help, “AccuDraw is a drafting aid that evaluates such parameters as your current pointer location, the previously entered data point, the last coordinate directive, the current tool's needs, and any directive you have entered via either keyboard shortcuts or AccuDraw options. AccuDraw then generates the appropriate precision coordinates and applies them to the active tool”. The topic that we will be discussing is AccuDraw shortcuts. ACCUDRAW SHORTCUTS The functionality of AccuDraw shortcuts is to run MicroStation key-in commands. This is accomplished by the user creating a shortcut to a desired key-in by associating two alphanumeric characters to that key-in. Here is an example of how to create an AccuDraw shortcut, and how they can make drafting more efficient, and increase your MicroStation desktop. Wouldn’t it be nice if…….you could turn off the display of, let’s say, 150 reference files without having to: 1) Open the Reference File Dialog box 2) Select all the reference files 3) Click the display toggle on the Reference File Dialog to off 4) Click the Update All icon to refresh the view Well with AccuDraw, you could set two shortcuts to toggle all the reference files on and off. Here’s how: First, we will define two shortcuts that will act like switches.
    [Show full text]
  • KDE Free Qt Foundation Strengthens Qt
    How the KDE Free Qt Foundation strengthens Qt by Olaf Schmidt-Wischhöfer (board member of the foundation)1, December 2019 Executive summary The development framework Qt is available both as Open Source and under paid license terms. Two decades ago, when Qt 2.0 was first released as Open Source, this was excep- tional. Today, most popular developing frameworks are Free/Open Source Software2. Without the dual licensing approach, Qt would not exist today as a popular high-quality framework. There is another aspect of Qt licensing which is still very exceptional today, and which is not as well-known as it ought to be. The Open Source availability of Qt is legally protected through the by-laws and contracts of a foundation. 1 I thank Eike Hein, board member of KDE e.V., for contributing. 2 I use the terms “Open Source” and “Free Software” interchangeably here. Both have a long history, and the exact differences between them do not matter for the purposes of this text. How the KDE Free Qt Foundation strengthens Qt 2 / 19 The KDE Free Qt Foundation was created in 1998 and guarantees the continued availabil- ity of Qt as Free/Open Source Software3. When it was set up, Qt was developed by Troll- tech, its original company. The foundation supported Qt through the transitions first to Nokia and then to Digia and to The Qt Company. In case The Qt Company would ever attempt to close down Open Source Qt, the founda- tion is entitled to publish Qt under the BSD license. This notable legal guarantee strengthens Qt.
    [Show full text]
  • File Permissions Do Not Restrict Root
    Filesystem Security 1 General Principles • Files and folders are managed • A file handle provides an by the operating system opaque identifier for a • Applications, including shells, file/folder access files through an API • File operations • Access control entry (ACE) – Open file: returns file handle – Allow/deny a certain type of – Read/write/execute file access to a file/folder by – Close file: invalidates file user/group handle • Access control list (ACL) • Hierarchical file organization – Collection of ACEs for a – Tree (Windows) file/folder – DAG (Linux) 2 Discretionary Access Control (DAC) • Users can protect what they own – The owner may grant access to others – The owner may define the type of access (read/write/execute) given to others • DAC is the standard model used in operating systems • Mandatory Access Control (MAC) – Alternative model not covered in this lecture – Multiple levels of security for users and documents – Read down and write up principles 3 Closed vs. Open Policy Closed policy Open Policy – Also called “default secure” • Deny Tom read access to “foo” • Give Tom read access to “foo” • Deny Bob r/w access to “bar” • Give Bob r/w access to “bar • Tom: I would like to read “foo” • Tom: I would like to read “foo” – Access denied – Access allowed • Tom: I would like to read “bar” • Tom: I would like to read “bar” – Access allowed – Access denied 4 Closed Policy with Negative Authorizations and Deny Priority • Give Tom r/w access to “bar” • Deny Tom write access to “bar” • Tom: I would like to read “bar” – Access
    [Show full text]
  • The System Settings Handbook
    The System Settings Handbook Richard A. Johnson The System Settings Handbook 2 Contents 1 Introduction 5 2 Using System Settings6 2.1 Starting System Settings . .6 2.2 The System Settings Screen . .6 2.3 System Settings Categories and Modules . .7 2.4 Exiting the System Settings . .8 2.5 Configuring System Settings . .8 2.6 Running Individual System Settings Modules . .8 3 The System Settings Modules9 4 Credits and License 10 Abstract This documentation describes system configuration and administration center for your desktop. The System Settings Handbook Chapter 1 Introduction The System Settings provides the user with a centralized and convenient way to configure all of the settings for your desktop. System Settings is made up of multiple modules. Each module is a separate application, however the System Settings organizes all of these applications into a single location. TIP Each System Settings module can be executed individually See section entitled Running individual System Settings modules for more information. System Settings groups all of the configuration modules into several categories: • Appearance • Workspace • Personalization • Network • Hardware • System Administration The modules that make up System Settings fall under one of the above categories, making it easier to locate the correct configuration module. 5 The System Settings Handbook Chapter 2 Using System Settings This section details the use of System Settings itself. For information on each individual module, please see System Settings Modules. 2.1 Starting System Settings The System Settings can be started in one of three ways: 1. By selecting Settings ! System Settings from the Application Menu. 2. By pressing Alt-F2 or Alt-Space.
    [Show full text]
  • Rapid GUI Development with Qtruby
    Rapid GUI Development with QtRuby Caleb Tennis The Pragmatic Bookshelf Raleigh, North Carolina Dallas, Texas BOOKLEET © Many of the designations used by manufacturers and sellers to distin- guish their products are claimed as trademarks. Where those designations appear in this book, and The Pragmatic Programmers, LLC was aware of a trademark claim, the designations have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Pro- grammer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC. Qt® is a registered trademark of Trolltech in Norway, the United States and other countries. Useful Friday Links • Source code from this book and Every precaution was taken in the preparation of this book. However, the other resources. publisher assumes no responsibility for errors or omissions, or for dam- • Free updates to this PDF • Errata and suggestions. To report ages that may result from the use of information (including program list- an erratum on a page, click the ings) contained herein. link in the footer. To see what we’re up to, please visit us at http://www.pragmaticprogrammer.com Copyright © 2006 The Pragmatic Programmers LLC. All rights reserved. This PDF publication is intended for the personal use of the individual whose name appears at the bottom of each page. This publication may not be disseminated to others by any means without the prior consent of the publisher. In particular, the publication must not be made available on the Internet (via a web server, file sharing network, or any other means).
    [Show full text]
  • Startup Keyboard Shortcuts Press the Key Or Key Combination Until The
    Startup keyboard shortcuts Press the key or key combination until the expected function occurs/appears (for example, hold Option during startup until Startup Manager appears, or Shift until "Safe Boot" appears). Tip: If a startup function doesn't work and you use a third-party keyboard, connect an Apple keyboard and try again. Key or key combination What it does Option Display all bootable volumes (Startup Manager) Shift Perform Safe Boot (start up in Safe Mode) C Start from a bootable disc (DVD, CD) T Start in FireWire target disk mode N Start from NetBoot server X Force Mac OS X startup (if non-Mac OS X startup volumes are present) Command-V Start in Verbose Mode Command-S Start in Single User Mode To use a keyboard shortcut, or key combination, you press a modifier key with a character key. For example, pressing the Command key (the key with a symbol) and the "c" key at the same time copies whatever is currently selected (text, graphics, and so forth) into the Clipboard. This is also known as the Command-C key combination (or keyboard shortcut). A modifier key is a part of many key combinations. A modifier key alters the way other keystrokes or mouse clicks are interpreted by Mac OS X. Modifier keys include: Command, Control, Option, Shift, Caps Lock, and the fn key (if your keyboard has a fn key). Here are the modifier key symbols you can see in Mac OS X menus: (Command key) - On some Apple keyboards, this key also has an Apple logo ( ) (Control key) (Option key) - "Alt" may also appear on this key (Shift key) (Caps Lock) - Toggles Caps Lock on or off fn (Function key) Startup keyboard shortcuts Press the key or key combination until the expected function occurs/appears (for example, hold Option during startup until Startup Manager appears, or Shift until "Safe Boot" appears).
    [Show full text]
  • Linux Virtual Delivery Agent 7.15
    Linux Virtual Delivery Agent 7.15 Citrix Product Documentation | docs.citrix.com September 28, 2021 Linux Virtual Delivery Agent 7.15 Contents What’s new 3 Fixed issues 3 Known issues 5 Third party notices 6 System requirements 7 Installation overview 10 Easy install 11 Install Linux Virtual Delivery Agent for RHEL/CentOS 22 Install Linux Virtual Delivery Agent for SUSE 56 Install Linux Virtual Delivery Agent for Ubuntu 82 Configure the Linux VDA 110 Integrate NIS with Active Directory 111 Publish applications 117 Print 119 PDF printing 125 Configure graphics 125 Non‑GRID 3D graphics 131 Configure policies 133 Policy support list 135 Configure IPv6 141 Configure Citrix Customer Experience Improvement Program (CEIP) 142 Configure USB redirection 146 Client Input Method Editor (IME) 154 © 1999–2021 Citrix Systems, Inc. All rights reserved. 2 Linux Virtual Delivery Agent 7.15 HDX Insight 154 Tracing On 156 Configure unauthenticated sessions 159 Configure LDAPS 161 Configure Xauthority 165 © 1999–2021 Citrix Systems, Inc. All rights reserved. 3 Linux Virtual Delivery Agent 7.15 What’s new August 11, 2021 What’s new in 7.15 Available as of August 11, 2021, Cumulative Update 8 adds fix for one customer‑reported issue. PDF printing Previously available as an experimental feature, PDF Printing is a fully supported feature in this re‑ lease. It allows users of Citrix Receivers for Chrome and HTML5 to print PDFs converted from within their Linux VDA sessions. System behavior change As of this release, you do not have to run the ctxsetup.sh script after upgrading your Linux VDA.
    [Show full text]
  • Get Your Default KDE and GNOME Desktops in Line by David D
    Get Your Default KDE and GNOME Desktops in Line by David D. Scribner As mentioned in my last article, Get Your Default KDE and GNOME Menus in Line, the User Manuals for the KDE and GNOME GUI environments include instructions on modifying the user’s menus and desktop properties. Just as with the menus however, modifications to the desktop settings made by individual users are stored in the user’s home directory and have no affect on the “defaults” installed for new users. Being the system administrator, you may have custom desktop wallpaper, shortcut icons and panel (or Kicker, as KDE now calls it) icons that differ from those set up in the default configurations. If you wish to have the default desktops installed for new users tailored to include selected application icons in the panel or kicker (taskbar), or changes to the default desktop shortcuts, background, colors or style that GNOME and KDE normally set up for those new users, you will have to make a few modifications. This article is intended to cover the basic tasks of customizing such default installations. Since customizing the default desktops for your new users result in changes to the installed files, back up any of these files/directories before proceeding with any modifications! Desktop Configuration Skeletons Items pertaining to the desktop you want your new users to be greeted with are perhaps easiest to configure by placing the relevant KDE and GNOME desktop configuration files in the /etc/skel directory. You could modify the master files KDE and GNOME use to create new user setups, but they may be overwritten should you upgrade to a newer version of the environment.
    [Show full text]