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 "#######################################" | |
| 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 |