If this codebase is production, handles money, or touches sensitive data: treat this audit loop as a high-risk operation. Run with least privilege, avoid exporting long-lived credentials in your shell, and keep the agent in read-only mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ################################################################################ | |
| # 카카오톡 자동 설치 스크립트 | |
| # WineHQ Wine을 사용하여 카카오톡 PC 버전을 자동 설치합니다. | |
| ################################################################################ | |
| set -e # 오류 발생 시 스크립트 중단 | |
| # 색상 출력 정의 | |
| RED='\033[0;31m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ubuntu (>=20.04) | |
| # hoffice_11.20.0.1520_amd64.deb | |
| https://mega.nz/file/71UFmBCI#-aVOcQcZOCp4GIxp6kL7HGjA7NdpDW8PFWkjT5ax3aY | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| conky.config = { | |
| use_xft= true, | |
| xftfont = 'Pretendard:size=20', | |
| xftalpha = 0.1, | |
| update_interval = 1, | |
| total_run_times = 0, | |
| short_units = true, | |
| own_window = true, | |
| own_window_type = 'desktop', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: MIT | |
| # Program Information | |
| # Program Name: League of Legends Installer | |
| # Description: This script installs League of Legends on a Linux system using Lutris. | |
| # Version: 1.0 | |
| # Author: Kevin Kim | |
| # Date: 2023.10.23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Whole message to syslog | |
| # exec 1> >(logger -s -t $(basename $0)) 2>&1 | |
| # only some message to syslog | |
| readonly SCRIPT_NAME=$(basename $0) | |
| log() { | |
| echo "$@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -----BEGIN PGP PRIVATE KEY BLOCK----- | |
| lQdGBF+FK9MBEADF4B/AOq7OSIxKu3bqVaYSH+VsLo5slCaujfgSiha9kERgs+Wj | |
| k99CKB5q+VQrcAtNgTaYWv0RcwOXt74MdVgoMpjOht0UtuganmuwEaPbZQFgf7a2 | |
| pX6i4sD/r5NKTpSdvO5SnLdnoqbBaJgFm4UJLokqRopBG2CCA3mlibcFE4HfAgSH | |
| Vw4es6gY35PB90zeAWNGMPTTKxuqmUDtsyp2ZO5xCwcbb202rZCCn32PrYroX/Ph | |
| Eb43D/Zrcrz9RTarLsRW0yc9ocyGjdJ8ltc6F6Q72HwolAQ23yMGfS3rJ4oOTAQ5 | |
| DkSOKD4XfxoEXUTl5YJiKVfbVYn83gK7M/JKVg+zasjGTp7KBI+XGY5P6MCs60X2 | |
| V1lOjOLcFAo8V9zFRstCoX7VRiIE1iTNz/U+Gck7QJNDngl1Xd8SM7nP8wqwYHNE | |
| IOpWVWGa8EzgAJiHcM+/ZG4Hic2XtpfCrIxPRQNkA01h56Xq3l66+ZROwqSvyWgY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -urN a/bin/ubiquity-dm b/bin/ubiquity-dm | |
| --- a/bin/ubiquity-dm 2022-06-28 00:53:37.000000000 +0900 | |
| +++ b/bin/ubiquity-dm 2023-10-04 19:33:57.350212498 +0900 | |
| @@ -429,7 +429,7 @@ | |
| visual_a11y = 'access=v' in proc_cmdline | |
| background_image = None | |
| - for background in ('/usr/share/backgrounds/linuxmint/default_background.jpg'): | |
| + for background in ('/usr/share/backgrounds/hamonikr/default_background.jpg'): | |
| exists = os.access(background, os.R_OK) |
NewerOlder