aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-17Merge pull request #590 from mikkeloscar/i686-warningsDrew DeVault
Use correct format string for x86_64 and i686
2016-04-17Use correct format string for x86_64 and i686Mikkel Oscar Lyderik
Fix #587
2016-04-17Add support for pango markupDrew DeVault
2016-04-16Merge pull request #588 from mikkeloscar/clang-warningsDrew DeVault
Remove clang warnings (-Wsign-compare)
2016-04-16Remove clang warnings (-Wsign-compare)Mikkel Oscar Lyderik
2016-04-16Update link to arch linux packageDrew DeVault
2016-04-16Update to wlc 0.0.2Drew DeVault
2016-04-11Merge pull request #582 from cl91/fix-memory-leaksDrew DeVault
Plug two memory leaks
2016-04-12Plug two memory leaksChang Liu
Plug two memory leaks introduced in the border drawing code.
2016-04-09Merge pull request #580 from mikkeloscar/handle-realloc-failDrew DeVault
swaylock: Handle possible fail on password realloc
2016-04-10swaylock: Handle possible fail on password reallocMikkel Oscar Lyderik
2016-04-09Merge pull request #579 from mikkeloscar/new_view-geometryDrew DeVault
Don't init desired width/height on new_view
2016-04-09Don't init desired width/height on new_viewMikkel Oscar Lyderik
When creating a new view, wlc usually returns an initial geometry with size 1x1. Setting those values as desired width/height causes a problem for some windows (QT5) because they don't request a new geometry for instance when made floating, so the floating window becomes 1x1. To fix this problem we can just omit setting the desired width/height on new_view and instead let the clients request a certain size if they feel like it. e.i. gnome-calculator. Fix #578
2016-04-09Only update geometry of single floating viewMikkel Oscar Lyderik
2016-04-04Merge pull request #572 from fluxchief/swaylock-flushDrew DeVault
Improve swaylock event flushing
2016-04-03Merge pull request #574 from fluxchief/parse-border-colorDrew DeVault
Add border color commands
2016-04-03Add border color commandsKevin Hamacher
2016-04-03Merge pull request #575 from fluxchief/border-color-fixMikkel Oscar Lyderik
Use border background color as border background
2016-04-03Use border background color as border backgroundKevin Hamacher
2016-04-03Merge pull request #568 from crondog/fixbordersMikkel Oscar Lyderik
Fix window borders
2016-04-03Fix window borderscrondog
This fixes floating borders when moving outside of the output. Not sure what happens with dual screen as I only have 1 monitor
2016-04-03Improve swaylock event flushingKevin Hamacher
2016-04-02Merge pull request #562 from fluxchief/border-endianDrew DeVault
improve endianess handeling
2016-04-02improve endianess handelingKevin Hamacher
2016-04-02Merge pull request #569 from 1ace/masterMikkel Oscar Lyderik
Fix spelling mistakes
2016-04-02Fix spelling mistakesEric Engestrom
2016-03-31Merge pull request #565 from mikkeloscar/fix-pointer-crashDrew DeVault
Fix pointer related crash when stacked/tabbed
2016-03-31Fix pointer related crash when stacked/tabbedMikkel Oscar Lyderik
Fix #564
2016-03-31Merge pull request #563 from mikkeloscar/fix-border-resetDrew DeVault
Correctly reset border geometry
2016-03-31Merge pull request #561 from fluxchief/swaylockDrew DeVault
swaylock: improve graphical feedback
2016-03-31Correctly reset border geometryMikkel Oscar Lyderik
2016-03-31swaylock: improve graphical feedbackKevin Hamacher
2016-03-31Merge pull request #560 from mikkeloscar/add-new_window-new_floatDrew DeVault
Add cmds new_window and new_float
2016-03-31Add cmds new_window and new_floatMikkel Oscar Lyderik
Makes it possible to set default layout style for new windows and new floating windows. Close #556
2016-03-31Merge pull request #558 from crondog/swaybarexitMikkel Oscar Lyderik
Stop swaybar crashing without args
2016-03-31Stop swaybar crashing without argscrondog
2016-03-30Update default wallpapersDrew DeVault
New version from artist has a different background that will solve the banding issue some users have raised.
2016-03-30Merge pull request #557 from mikkeloscar/bar-font-pango-optionalDrew DeVault
Make pango: optional for bar font
2016-03-30Make pango: optional for bar fontMikkel Oscar Lyderik
2016-03-30Fix pointer scroll thingDrew DeVault
2016-03-30Fix crashes with bordersDrew DeVault
2016-03-30Remove leftover commentDrew DeVault
2016-03-30New feature: adjust gaps with floating_mod+scrollDrew DeVault
I made this configurable but I didn't make the command for it. That's left as an exercise to an eager contributor. mod_scroll_behavior [gaps inner|gaps outer] Would merge implementions of more behaviors for mod+scroll, if anyone has some neato ideas.
2016-03-30Update README screenshotDrew DeVault
2016-03-30Merge pull request #551 from mikkeloscar/window-bordersDrew DeVault
Implement Window borders
2016-03-30Merge pull request #555 from mikkeloscar/mode-name-spacesDrew DeVault
Allow surrounding spaces in mode name
2016-03-30Allow surrounding spaces in mode nameMikkel Oscar Lyderik
This makes it possible to define a mode name with surrounding spaces if so desired. e.g.: mode " hello " { }
2016-03-30Fix borders with floating windowsMikkel Oscar Lyderik
2016-03-30Update window title when it changesMikkel Oscar Lyderik
2016-03-30Mark focused view focus_inactive on unfocused outputMikkel Oscar Lyderik