aboutsummaryrefslogtreecommitdiffstats
path: root/config.in
Commit message (Collapse)AuthorAge
* rephrase swayidle-timout example to improve readabilityLibravatar Jonas Große Sundrup2020-07-12
|
* Make the default workspace commands compatible with i3Libravatar Wai Hon Law2020-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | **Problem** When I rename the workspace to something like "1:web", `$mod+1` does not move to the "1:web" with the default config. This breaks the expectation of i3 users. **Cause** The default Sway binding for `$mod+1` does not have the number keyword: ``` bindsym $mod+1 workspace 1 ``` Instead, the default Sway binding for `$mod+1` is ``` bindsym Mod1+1 workspace number $ws1 ``` https://github.com/i3/i3/commit/e6662df114329ba45bd1d117c731b3dc8bdd13fb is the corresponding commit from i3.
* Docs: explain why menu command should be passed to swayLibravatar Jason2020-01-13
| | | | It was not obvious to me why until I saw a comment from @RyanDwyer on Reddit, so I think it's better to add an explanation.
* config.in: set default term to alacrittyLibravatar Drew DeVault2019-09-25
|
* Make comment casing consistient Libravatar Nick Paladino2019-05-21
| | | Makes the first letter of all the comments uppercase. THus making the config file more consistient
* config.in: allow launch apps with args via dmenuLibravatar 3ap2019-03-12
| | | Without this change you can't execute apps with command line arguments (e.g. firefox -P profile) because -P will be parsed as argument for "swaymsg exec".
* config.in: update swayidle/swaylock exampleLibravatar Ian Fan2019-01-14
|
* fix typo in config.inLibravatar camoz2018-11-19
|
* fix typo in config.inLibravatar camoz2018-11-19
|
* Add example status_command to default configLibravatar Ryan Dwyer2018-10-08
|
* config.in: nag user on exitLibravatar Ian Fan2018-08-02
|
* Implement pid->workspace trackingLibravatar Drew DeVault2018-07-01
| | | | | | | | | When you spawn a process with the exec command, sway now notes the workspace you had focused and the pid of the child process, then assigns that workspace to the child when its window appears. Some of this is carried over from sway 0.15, but with some major refactoring and centralization of state.
* Idle handling for dpms/lockscreen et alLibravatar Mattias Eriksson2018-05-13
| | | | | | | | | Swayidle handles idle events and allows for dpms and lockscreen handling. It also handles systemd sleep events, and can raise a lockscreen on sleep Fixes #541
* Implement resize commandLibravatar Drew DeVault2018-04-05
|
* add meson install filesLibravatar Tony Crisci2017-11-30
|
* Install wallpapers in DATADIR/backgrounds/swayLibravatar Andrew Conrad2017-06-14
|
* Update config.inLibravatar Drew DeVault2017-04-30
| | | | | swaymsg -t get_inputs now pretty prints its output, so this warning is obsolete
* Use CMAKE_INSTALL_FULL_DATA{,ROOT}DIRLibravatar Wouter van Kesteren2016-12-17
| | | | | | | | Exherbo installs architecture dependent data in a different place than architecture independent data. More concretely: binaries go in /usr/$chost/{bin,lib}, data goes in /usr/share and configs in /etc, /etc is already configurable through CMAKE_INSTALL_FULL_SYSCONFDIR but the datadir was not. This patch fixes it so that things can be pushed in the right places.
* Run config files through sed and install to /etcLibravatar Drew DeVault2016-12-02
|
* Implement permit and reject commandsLibravatar Drew DeVault2016-12-01