You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
/* Eterm background switching helper |
|
* by keebler 3/26/99 |
|
* |
|
* This program is original work by Brian McFee <keebler@themes.org>. |
|
* This program is distributed under the GNU Public License (GPL) as |
|
* outlined in the COPYING file. |
|
* |
|
* Copyright (C) 1997-2000, Brian McFee. |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU General Public License as published by |
|
* the Free Software Foundation; either version 2 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU General Public License |
|
* along with this program; if not, write to the Free Software |
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
* |
|
*/ |
|
|
|
#include <config.h> |
|
|
|
#include <stdio.h> |
|
#include <string.h> |
|
|
|
#ifndef FALSE |
|
# define FALSE (0) |
|
#endif |
|
#ifndef TRUE |
|
# define TRUE (1) |
|
#endif |
|
|
|
int |
|
main(int argc, char **argv) |
|
{ |
|
int scale = FALSE, trans = FALSE; |
|
unsigned int pic = 0; |
|
int i; |
|
|
|
for (i = 1; i < argc; i++) { |
|
if (strcasecmp(argv[i], "-scale") == 0) { |
|
scale = TRUE; |
|
} else if (strcasecmp(argv[i], "-trans") == 0) { |
|
trans = TRUE; |
|
} else if (strncasecmp(argv[i], "-h", 2) == 0) { |
|
printf("Usage: %s [[-scale] file] [-trans]\n", argv[0]); |
|
return 0; |
|
} else { |
|
pic = i; |
|
} |
|
} |
|
|
|
if (pic && argv[pic]) { |
|
printf("\033]6;0;0\a"); |
|
printf("\033]20;%s%s\a", argv[pic], scale ? "@100x100+50+50:scale" : "@0x0+0+0:tile"); |
|
} |
|
if (trans) { |
|
printf("\033]6;0;1\a"); |
|
} |
|
return 0; |
|
}
|
|
|