Giter Site home page Giter Site logo

Comments (5)

leukipp avatar leukipp commented on July 22, 2024

can cortile has feature that show all open windows(active and not active) as switcher app.

I do not fully understand the question, most switchers can be configured to also show inactive (minimized) windows.

...i want to have(tiling show) which show the minimize windows too as switcher mode like skippy-xd and xfcedashboard

Does anything speak against using the build in window switcher, or do you mean in cases where no window switcher is integrated in the system?

from cortile.

ahmeteid7 avatar ahmeteid7 commented on July 22, 2024

there is no conflict bw cortile and the switchers apps, it's good.
i mean i want not use them during using cortile, so i disabled them when cortile running. and i want to use cortile to show all opened apps: so i used that command to show all opened windows during cortile:
wmctrl -l | awk '{print $1}' | xargs -I {} wmctrl -ia {}
it's good, but cortile doesn't show all opend windows,because i think the default of it is 3 slaves and one master, so i can change that default to show all opened windows?
so the script that show all opened windows will be like that:

slaves and masters= the number of opened windows;
wmctrl -l | awk '{print $1}' | xargs -I {} wmctrl -ia {}

from cortile.

leukipp avatar leukipp commented on July 22, 2024

it's good, but cortile doesn't show all opend windows,because i think the default of it is 3 slaves and one master, so i can change that default to show all opened windows?

Since v.2.4.0 the last number of maximum windows is preserved, so you could theoretically set (e.g.),

# Maximum number of allowed master windows (0 - 5).
window_masters_max = 5

# Maximum number of allowed slave windows (1 - 5).
window_slaves_max = 5

then use socket communication to increase masters/slaves before calling wmctrl -l | awk '{print $1}' | xargs -I {} wmctrl -ia {}. Nevertheless, there is a limit to the number of windows displayed, and as the number get larger the arrangement will become quite lumpy.

In general, minimized windows are not known (tracked) by cortile at all. All other open windows are tracked, but may be invisible, because they are stacked behind other slaves. Raising them to front can be done by using:

  • build in taskbars/panels that show opened windows
  • build in or external window switcher applications
  • cortile next/previous window shortcuts:
Keys Description
Ctrl+Shift+KP_2 Focus next window
Ctrl+Shift+KP_8 Focus previous window

from cortile.

ahmeteid7 avatar ahmeteid7 commented on July 22, 2024
# Maximum number of allowed master windows (0 - 5).
window_masters_max = 5

# Maximum number of allowed slave windows (1 - 5).
window_slaves_max = 5

can set that with script?

from cortile.

leukipp avatar leukipp commented on July 22, 2024

Those values are the maximum values (upper bound)

# Maximum number of allowed master windows (0 - 5).
window_masters_max = 5

# Maximum number of allowed slave windows (1 - 5).
window_slaves_max = 5

in case you press

Keys Description
Ctrl+Shift+KP_Add Increase number of master windows
Ctrl+Shift+Plus Increase number of maximum slave windows

several times.

You can set that to any value you want (in this case maximal 10 windows will be visible, no matter what). The configuration is applied on app startup and you can`t change it afterwards.

When cortile is running you can still decrement/increment the current max window size via keyboard shortcuts/hot corner/tray icon/etc. When using socket communication this would be,

echo '{"Action":"master_increase"}' | nc -U /tmp/cortile.sock.in
echo '{"Action":"slave_increase"}' | nc -U /tmp/cortile.sock.in

but I'm still not sure if this is what you need.

from cortile.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.