aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-01-27 22:12:05 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-01-27 22:12:05 -0500
commita6e57dd7ac77a7d0417e9635451afd8bcb913ab4 (patch)
tree9d16008b138e8e826f2f1e9e6886d9914dffcaea
parentMerge pull request #479 from crondog/font (diff)
parentswaylock: Allow for transparent color values (diff)
downloadsway-a6e57dd7ac77a7d0417e9635451afd8bcb913ab4.tar.gz
sway-a6e57dd7ac77a7d0417e9635451afd8bcb913ab4.tar.zst
sway-a6e57dd7ac77a7d0417e9635451afd8bcb913ab4.zip
Merge pull request #480 from crondog/swaylocktrans2
swaylock: Allow for transparent color values
-rw-r--r--swaylock/main.c28
1 files changed, 17 insertions, 11 deletions
diff --git a/swaylock/main.c b/swaylock/main.c
index 020ff036..9b14086d 100644
--- a/swaylock/main.c
+++ b/swaylock/main.c
@@ -211,12 +211,12 @@ int main(int argc, char **argv) {
211 const char *usage = 211 const char *usage =
212 "Usage: swaylock [options...]\n" 212 "Usage: swaylock [options...]\n"
213 "\n" 213 "\n"
214 " -h, --help Show help message and quit.\n" 214 " -h, --help Show help message and quit.\n"
215 " -c, --color <rrggbb> Turn the screen into the given color instead of white.\n" 215 " -c, --color <rrggbb[aa]> Turn the screen into the given color instead of white.\n"
216 " -s, --scaling Scaling mode: stretch, fill, fit, center, tile.\n" 216 " -s, --scaling Scaling mode: stretch, fill, fit, center, tile.\n"
217 " -t, --tiling Same as --scaling=tile.\n" 217 " -t, --tiling Same as --scaling=tile.\n"
218 " -v, --version Show the version number and quit.\n" 218 " -v, --version Show the version number and quit.\n"
219 " -i, --image <path> Display the given image.\n"; 219 " -i, --image <path> Display the given image.\n";
220 220
221 int c; 221 int c;
222 while (1) { 222 while (1) {
@@ -226,16 +226,22 @@ int main(int argc, char **argv) {
226 break; 226 break;
227 } 227 }
228 switch (c) { 228 switch (c) {
229 case 'c': 229 case 'c':
230 if (strlen(optarg) < 6) { 230 {
231 fprintf(stderr, "color must be specified in 3 byte format, e.g. ff0000\n"); 231 int colorlen = strlen(optarg);
232 if (colorlen < 6 || colorlen == 7 || colorlen > 8) {
233 fprintf(stderr, "color must be specified in 3 or 4 byte format, e.g. ff0000 or ff0000ff\n");
232 exit(EXIT_FAILURE); 234 exit(EXIT_FAILURE);
233 } 235 }
234 color = strtol(optarg, NULL, 16); 236 color = strtol(optarg, NULL, 16);
235 color <<= 8; 237
236 color |= 0xFF; 238 if (colorlen == 6) {
239 color <<= 8;
240 color |= 0xFF;
241 }
237 sway_log(L_DEBUG, "color: 0x%x", color); 242 sway_log(L_DEBUG, "color: 0x%x", color);
238 break; 243 break;
244 }
239 case 'i': 245 case 'i':
240 image_path = optarg; 246 image_path = optarg;
241 break; 247 break;