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 | |
| set -o errexit | |
| export LXQT_PREFIX=/usr | |
| export LXQT_JOB_NUM=2 | |
| sudo date | |
| cd lxqt | |
| time nice ionice -c2 git pull | |
| time nice ionice -c2 git submodule init |
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
| #! /usr/bin/bash | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NC='\033[0m' # No Color | |
| LOG=/var/log/lxqt-compile.log | |
| date > $LOG | |
| cd ~/../lxqt | |
| for i in \ | |
| libqtxdg \ | |
| lxqt-build-tools \ |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> | |
| <!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/bugzilla-howto.xml,v 1.17 2010/02/28 06:14:00 nightmorph Exp $ --> | |
| <guide lang="ja"> | |
| <title>Gentooバグ報告ガイド</title> | |
| <author title="Author"> | |
| <mail link="chriswhite@gentoo.org">Chris White</mail> | |
| </author> |
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
| - ー | |
| ~ ~ | |
| , 、 | |
| . 。 | |
| / ・ | |
| : ー | |
| ; っ | |
| [ 「 | |
| ] 」 | |
| a あ |
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
| name: gtk3-demo | |
| version: '0.1' | |
| summary: A demonstration application for features of GTK | |
| description: | | |
| This snap contains the gtk3-demo application, using theme data | |
| provided by one or more external snaps. | |
| grade: devel # must be 'stable' to release into candidate/stable channels | |
| confinement: strict |
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 | |
| # | |
| # ダーティーの表示 | |
| # | |
| echo Time nr_dirty nr_writeback nr_dirty_threshold nr_dirty_background_threshold | |
| while true; do | |
| cat /proc/vmstat | grep -E "^nr_(dirty|writeback )" | awk 'BEGIN{ print strftime("%H:%M:%S") }{ print "\t" $2 }' | tr -d "\n" | |
| # cat /proc/{vmstat,meminfo} | egrep "^nr_dirty|^nr_writeback" | awk 'BEGIN{ print strftime("%H:%M:%S") }{ print "\t" $2 }' | tr -d "\n" |
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 | |
| # | |
| # Swap out をテストするための設定 | |
| sudo sysctl vm.swappiness=99 # Default: 60 | |
| # 1: メモリをアプリケーション優先で使用する | |
| # 99: メモリをキャッシュ優先で使用する | |
| sudo sysctl vm.vfs_cache_pressure=1 # Default: 100 | |
| # 1: メモリをVFSバッファ(inode/directory)優先で使用する |
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 | |
| echo "#######################################" | |
| echo "Welcome to the desktop entry generator!" | |
| echo "#######################################" | |
| read -p 'App Name: ' name | |
| read -p 'Desktop Entry filename :' entry | |
| read -p 'Absolute path to exec file: ' exe | |
| read -p 'Absolute path to icon file : ' icon | |
| read -p 'Comment : ' comment |
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
| Name[ja]=Compton (X コンポジター) | |
| GenericName[ja]=X コンポジター | |
| Comment[ja]=コンポジット機能(ウィンドウに特殊効果)をつけます |
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 | |
| # | |
| # デスクトプエントリのファイルを 更新します | |
| # コピー後に、再起動すると日本語の表示が変わります | |
| # | |
| echo "デスクトップエントリの ファイルを更新します" | |
| # スクリプトの概要 | |
| # 私は、スクリプトを書き始めて間もないので、変な処理をしているかもしれません!? |