diff options
author | B. Watson <yalhcru@gmail.com> | 2014-08-27 00:12:58 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-08-30 14:22:22 +0700 |
commit | a23409a7c22b45397ddf647bb373991e07395f03 (patch) | |
tree | d675254c7ab626aae4cb57bf8c903ef1c5ccc644 /system/tabbed/README.SBo | |
parent | db5cbf8c39d82816e8ba217d67046dd1f0d36866 (diff) | |
download | slackbuilds-a23409a7c22b45397ddf647bb373991e07395f03.tar.gz |
system/tabbed: Updated for version 0.6.
Support applying user patches
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'system/tabbed/README.SBo')
-rw-r--r-- | system/tabbed/README.SBo | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/system/tabbed/README.SBo b/system/tabbed/README.SBo new file mode 100644 index 0000000000..c1e7817e4f --- /dev/null +++ b/system/tabbed/README.SBo @@ -0,0 +1,35 @@ +CUSTOMIZATION +------------- +Place patches in patches/. Any files in this directory will be +applied before the build. If you wish to make changes to the default +keybindings or other settings, produce a patch against config.h. +config.h is a copy of config.def.h distributed with the source +tarball. + +Place any patches in the patches/ directory before starting the +SlackBuild script. + +Example: + +# tar xvf tabbed-0.6.tar.gz +# cd tabbed-0.6 +# cp config.def.h config.h +# vi config.h +[make customizations] +# diff -u config.def.h config.h > ../patches/config.patch +# cd .. +# sh tabbed.SlackBuild + +Also, there are various patches available on the suckless.org site that +have been contributed by tabbed users. These can be downloaded into +patches/ and will be applied in the same way. + +Contributed patches: http://tools.suckless.org/tabbed/patches/ + +Anything in patches/ must be usable with either the -p0 or -p1 option +to patch. They'll be applied in lexical order (same order as the ls +command lists them in), so you might have to do some renaming if one +patch depends on another. + +If all you want to customize is the default window width/height, no need +for a patch: just set WIDTH and HEIGHT in the script's environment. |